diff --git a/.env b/.env new file mode 100644 index 0000000..2cbe76c --- /dev/null +++ b/.env @@ -0,0 +1,41 @@ +# Project namespace (defaults to the current folder name if not set) +#COMPOSE_PROJECT_NAME=myproject + + +# Password for the 'elastic' user (at least 6 characters) +ELASTIC_PASSWORD=changeme + + +# Password for the 'kibana_system' user (at least 6 characters) +KIBANA_PASSWORD=changeme + + +# Version of Elastic products +STACK_VERSION=8.7.1 + + +# Set the cluster name +CLUSTER_NAME=snort-cluster + + +# Set to 'basic' or 'trial' to automatically start the 30-day trial +LICENSE=basic +#LICENSE=trial + + +# Port to expose Elasticsearch HTTP API to the host +ES_PORT=9200 + + +# Port to expose Kibana to the host +KIBANA_PORT=5601 + + +# Increase or decrease based on the available host memory (in bytes) +ES_MEM_LIMIT=1073741824 +KB_MEM_LIMIT=1073741824 +LS_MEM_LIMIT=1073741824 + + +# SAMPLE Predefined Key only to be used in POC environments +ENCRYPTION_KEY=c34d38b3a14956121ff2170e5030b471551370178f43e5626eec58b04a30fae2 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b94194d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +./logs/*.txt +./logs/*.log \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 7eef1c5..ea15b13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,10 +39,10 @@ RUN mkdir ${PREFIX_DIR}/etc/rules && \ touch ${PREFIX_DIR}/etc/rules/local.rules && \ touch ${PREFIX_DIR}/etc/lists/default.blocklist && \ mkdir /var/log/snort -COPY snort3-community-rules.tar.gz ${HOME}/snort3-community-rules.tar.gz -COPY feodotracker.tar.gz ${HOME}/feodotracker.tar.gz -COPY appid-rules.tar.gz ${HOME}/appid-rules.tar.gz -COPY emerging-rules.tar.gz ${HOME}/emerging-rules.tar.gz +COPY ./tars/snort3-community-rules.tar.gz ${HOME}/snort3-community-rules.tar.gz +COPY ./tars/feodotracker.tar.gz ${HOME}/feodotracker.tar.gz +COPY ./tars/appid-rules.tar.gz ${HOME}/appid-rules.tar.gz +COPY ./tars/emerging-rules.tar.gz ${HOME}/emerging-rules.tar.gz RUN tar -xvzf snort3-community-rules.tar.gz && cd snort3-community-rules && mkdir ${PREFIX_DIR}/etc/rules/snort3-community-rules/ && cp * ${PREFIX_DIR}/etc/rules/snort3-community-rules/ WORKDIR $HOME @@ -58,15 +58,15 @@ RUN snort --version # Install OpenAppID WORKDIR $HOME -COPY snort-openappid.tar.gz ${HOME}/OpenAppId-23020.tar.gz +COPY ./tars/snort-openappid.tar.gz ${HOME}/OpenAppId-23020.tar.gz RUN tar -xzvf OpenAppId-23020.tar.gz && mkdir -p /usr/local/lib/openappid && cp -r odp /usr/local/lib/openappid WORKDIR $HOME -COPY healthcheck.sh ${HOME}/healthcheck.sh +COPY ./scripts/healthcheck.sh ${HOME}/healthcheck.sh RUN chmod +x ${HOME}/healthcheck.sh HEALTHCHECK --interval=30s CMD ${HOME}/healthcheck.sh -COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf -COPY entrypoint.sh ${HOME}/entrypoint.sh +COPY ./configs/supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY ./scripts/entrypoint.sh ${HOME}/entrypoint.sh ENTRYPOINT ["/bin/bash", "/root/entrypoint.sh"] \ No newline at end of file diff --git a/configs/filebeat.yml b/configs/filebeat.yml new file mode 100644 index 0000000..18b6b35 --- /dev/null +++ b/configs/filebeat.yml @@ -0,0 +1,26 @@ +filebeat.inputs: + - type: filestream + id: default-filestream + paths: + - ingest_data/*.txt + - ingest_data/*.log + +filebeat.autodiscover: + providers: + - type: docker + hints.enabled: true + +processors: + - add_docker_metadata: ~ + +setup.kibana: + host: ${KIBANA_HOSTS} + username: ${ELASTIC_USER} + password: ${ELASTIC_PASSWORD} + +output.elasticsearch: + hosts: ${ELASTIC_HOSTS} + username: ${ELASTIC_USER} + password: ${ELASTIC_PASSWORD} + ssl.enabled: true + ssl.certificate_authorities: "certs/ca/ca.crt" diff --git a/configs/logstash.conf b/configs/logstash.conf new file mode 100644 index 0000000..46a4089 --- /dev/null +++ b/configs/logstash.conf @@ -0,0 +1,39 @@ +input { + file { + mode => "tail" + type => "snort-json" + path => "/usr/share/logstash/ingest_data/alert_json.txt" + } + file { + mode => "tail" + type => "snort-appid" + path => "/usr/share/logstash/ingest_data/appid_stats.log" + } +} + + +filter { +} + + +output { + if [type] == "snort-json" { + elasticsearch { + index => "snort-json-%{+YYYY.MM.dd}" + hosts=> "${ELASTIC_HOSTS}" + user=> "${ELASTIC_USER}" + password=> "${ELASTIC_PASSWORD}" + cacert=> "certs/ca/ca.crt" + } + } + if [type] == "snort-appid" { + elasticsearch { + index => "snort-appid-%{+YYYY.MM.dd}" + hosts=> "${ELASTIC_HOSTS}" + user=> "${ELASTIC_USER}" + password=> "${ELASTIC_PASSWORD}" + cacert=> "certs/ca/ca.crt" + } + } + +} \ No newline at end of file diff --git a/promtail/docker.yml b/configs/promtail.yml similarity index 100% rename from promtail/docker.yml rename to configs/promtail.yml diff --git a/snort-conf/balanced.lua b/configs/snort-conf/balanced.lua similarity index 100% rename from snort-conf/balanced.lua rename to configs/snort-conf/balanced.lua diff --git a/snort-conf/connectivity.lua b/configs/snort-conf/connectivity.lua similarity index 100% rename from snort-conf/connectivity.lua rename to configs/snort-conf/connectivity.lua diff --git a/snort-conf/file_magic.rules b/configs/snort-conf/file_magic.rules similarity index 100% rename from snort-conf/file_magic.rules rename to configs/snort-conf/file_magic.rules diff --git a/snort-conf/inline.lua b/configs/snort-conf/inline.lua similarity index 100% rename from snort-conf/inline.lua rename to configs/snort-conf/inline.lua diff --git a/snort-conf/max_detect.lua b/configs/snort-conf/max_detect.lua similarity index 100% rename from snort-conf/max_detect.lua rename to configs/snort-conf/max_detect.lua diff --git a/snort-conf/security.lua b/configs/snort-conf/security.lua similarity index 100% rename from snort-conf/security.lua rename to configs/snort-conf/security.lua diff --git a/snort-conf/sensitive_data.rules b/configs/snort-conf/sensitive_data.rules similarity index 100% rename from snort-conf/sensitive_data.rules rename to configs/snort-conf/sensitive_data.rules diff --git a/snort-conf/snort.lua b/configs/snort-conf/snort.lua similarity index 100% rename from snort-conf/snort.lua rename to configs/snort-conf/snort.lua diff --git a/snort-conf/snort_defaults.lua b/configs/snort-conf/snort_defaults.lua similarity index 100% rename from snort-conf/snort_defaults.lua rename to configs/snort-conf/snort_defaults.lua diff --git a/snort-conf/talos.lua b/configs/snort-conf/talos.lua similarity index 100% rename from snort-conf/talos.lua rename to configs/snort-conf/talos.lua diff --git a/configs/snort.rules b/configs/snort.rules new file mode 100644 index 0000000..9de75b0 --- /dev/null +++ b/configs/snort.rules @@ -0,0 +1 @@ +#alert icmp any any -> $HOME_NET any (msg:"ICMP connection test"; sid:1000001; rev:1;) \ No newline at end of file diff --git a/supervisord.conf b/configs/supervisord.conf similarity index 100% rename from supervisord.conf rename to configs/supervisord.conf diff --git a/docker-compose.yml b/docker-compose.yml index 0008fd9..db96be1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,60 +1,245 @@ name: snort services: - snort: - restart: always - cap_add: - - NET_ADMIN - build: - dockerfile: Dockerfile - context: ./ - volumes: - - ./snort-conf:/usr/local/etc/snort - - ./snort.rules:/usr/local/etc/rules/local.rules - - ./logs:/var/log/snort - network_mode: host - promtail: - image: grafana/promtail:1.4.1 - restart: always - volumes: - - promtail-data:/var/lib/promtail/positions - - ./promtail/docker.yml:/etc/promtail/promtail.yml - - ./logs:/var/log/snort - command: - - '-config.file=/etc/promtail/promtail.yml' - networks: - snort_lan: - loki: - hostname: loki - image: grafana/loki:latest - restart: always - environment: - TZ: Europe/Moscow - ports: - - "3100:3100" - command: -config.file=/etc/loki/local-config.yaml - networks: - snort_lan: - grafana: - image: grafana/grafana-enterprise - container_name: grafana - hostname: grafana - environment: - - GF_PATHS_PROVISIONING=/etc/grafana/provisioning - - GF_AUTH_ANONYMOUS_ENABLED=true - - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin - - TZ=Europe/Moscow - restart: always - ports: - - '3000:3000' - networks: - snort_lan: - volumes: - - grafana-storage:/var/lib/grafana - - ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources + snort: + restart: always + cap_add: + - NET_ADMIN + build: + dockerfile: Dockerfile + context: ./ + volumes: + - ./configs/snort-conf:/usr/local/etc/snort + - ./configs/snort.rules:/usr/local/etc/rules/local.rules + - ./logs:/var/log/snort + network_mode: host + promtail: + image: grafana/promtail:1.4.1 + restart: always + volumes: + - ./grafana/promtail-data:/var/lib/promtail/positions + - ./configs/promtail.yml:/etc/promtail/promtail.yml + - ./logs:/var/log/snort + command: + - "-config.file=/etc/promtail/promtail.yml" + networks: + snort_lan: + loki: + hostname: loki + image: grafana/loki:latest + restart: always + environment: + TZ: Europe/Moscow + ports: + - "3100:3100" + command: -config.file=/etc/loki/local-config.yaml + networks: + snort_lan: + grafana: + image: grafana/grafana-enterprise + hostname: grafana + environment: + - GF_PATHS_PROVISIONING=/etc/grafana/provisioning + - GF_AUTH_ANONYMOUS_ENABLED=true + - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin + - TZ=Europe/Moscow + restart: always + ports: + - "3000:3000" + networks: + snort_lan: + volumes: + - grafana-storage:/var/lib/grafana + - ./grafana/provisioning/datasources:/etc/grafana/provisioning/datasources + + setup: + image: elasticsearch:${STACK_VERSION} + volumes: + - certs:/usr/share/elasticsearch/config/certs + user: "0" + command: > + bash -c ' + if [ x${ELASTIC_PASSWORD} == x ]; then + echo "Set the ELASTIC_PASSWORD environment variable in the .env file"; + exit 1; + elif [ x${KIBANA_PASSWORD} == x ]; then + echo "Set the KIBANA_PASSWORD environment variable in the .env file"; + exit 1; + fi; + if [ ! -f config/certs/ca.zip ]; then + echo "Creating CA"; + bin/elasticsearch-certutil ca --silent --pem -out config/certs/ca.zip; + unzip config/certs/ca.zip -d config/certs; + fi; + if [ ! -f config/certs/certs.zip ]; then + echo "Creating certs"; + echo -ne \ + "instances:\n"\ + " - name: es01\n"\ + " dns:\n"\ + " - es01\n"\ + " - localhost\n"\ + " ip:\n"\ + " - 127.0.0.1\n"\ + " - name: kibana\n"\ + " dns:\n"\ + " - kibana\n"\ + " - localhost\n"\ + " ip:\n"\ + " - 127.0.0.1\n"\ + > config/certs/instances.yml; + bin/elasticsearch-certutil cert --silent --pem -out config/certs/certs.zip --in config/certs/instances.yml --ca-cert config/certs/ca/ca.crt --ca-key config/certs/ca/ca.key; + unzip config/certs/certs.zip -d config/certs; + fi; + echo "Setting file permissions" + chown -R root:root config/certs; + find . -type d -exec chmod 750 \{\} \;; + find . -type f -exec chmod 640 \{\} \;; + echo "Waiting for Elasticsearch availability"; + until curl -s --cacert config/certs/ca/ca.crt https://es01:9200 | grep -q "missing authentication credentials"; do sleep 30; done; + echo "Setting kibana_system password"; + until curl -s -X POST --cacert config/certs/ca/ca.crt -u "elastic:${ELASTIC_PASSWORD}" -H "Content-Type: application/json" https://es01:9200/_security/user/kibana_system/_password -d "{\"password\":\"${KIBANA_PASSWORD}\"}" | grep -q "^{}"; do sleep 10; done; + echo "All done!"; + ' + healthcheck: + test: ["CMD-SHELL", "[ -f config/certs/es01/es01.crt ]"] + interval: 1s + timeout: 5s + retries: 120 + networks: + snort_lan: + + es01: + depends_on: + setup: + condition: service_healthy + image: elasticsearch:${STACK_VERSION} + labels: + co.elastic.logs/module: elasticsearch + volumes: + - certs:/usr/share/elasticsearch/config/certs + - esdata01:/usr/share/elasticsearch/data + ports: + - ${ES_PORT}:9200 + environment: + - node.name=es01 + - cluster.name=${CLUSTER_NAME} + - discovery.type=single-node + - ELASTIC_PASSWORD=${ELASTIC_PASSWORD} + - bootstrap.memory_lock=true + - xpack.security.enabled=true + - xpack.security.http.ssl.enabled=true + - xpack.security.http.ssl.key=certs/es01/es01.key + - xpack.security.http.ssl.certificate=certs/es01/es01.crt + - xpack.security.http.ssl.certificate_authorities=certs/ca/ca.crt + - xpack.security.transport.ssl.enabled=true + - xpack.security.transport.ssl.key=certs/es01/es01.key + - xpack.security.transport.ssl.certificate=certs/es01/es01.crt + - xpack.security.transport.ssl.certificate_authorities=certs/ca/ca.crt + - xpack.security.transport.ssl.verification_mode=certificate + - xpack.license.self_generated.type=${LICENSE} + mem_limit: ${ES_MEM_LIMIT} + ulimits: + memlock: + soft: -1 + hard: -1 + healthcheck: + test: + [ + "CMD-SHELL", + "curl -s --cacert config/certs/ca/ca.crt https://localhost:9200 | grep -q 'missing authentication credentials'", + ] + interval: 10s + timeout: 10s + retries: 120 + networks: + snort_lan: + + kibana: + depends_on: + es01: + condition: service_healthy + image: kibana:${STACK_VERSION} + labels: + co.elastic.logs/module: kibana + volumes: + - certs:/usr/share/kibana/config/certs + - kibanadata:/usr/share/kibana/data + ports: + - 22:22 + - ${KIBANA_PORT}:5601 + environment: + - SERVERNAME=kibana + - ELASTICSEARCH_HOSTS=https://es01:9200 + - ELASTICSEARCH_USERNAME=kibana_system + - ELASTICSEARCH_PASSWORD=${KIBANA_PASSWORD} + - ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES=config/certs/ca/ca.crt + - XPACK_SECURITY_ENCRYPTIONKEY=${ENCRYPTION_KEY} + - XPACK_ENCRYPTEDSAVEDOBJECTS_ENCRYPTIONKEY=${ENCRYPTION_KEY} + - XPACK_REPORTING_ENCRYPTIONKEY=${ENCRYPTION_KEY} + mem_limit: ${KB_MEM_LIMIT} + healthcheck: + test: ["CMD-SHELL", "curl -s -I http://localhost:5601 | grep -q 'HTTP/1.1 302 Found'"] + interval: 10s + timeout: 10s + retries: 120 + networks: + snort_lan: + + filebeat01: + depends_on: + es01: + condition: service_healthy + image: elastic/filebeat:${STACK_VERSION} + user: root + command: filebeat -e -strict.perms=false + volumes: + - certs:/usr/share/filebeat/certs + - filebeatdata01:/usr/share/filebeat/data + - "/var/lib/docker/containers:/var/lib/docker/containers:ro" + - "/var/run/docker.sock:/var/run/docker.sock:ro" + - "./configs/filebeat.yml:/usr/share/filebeat/filebeat.yml:ro" + - "./logs:/usr/share/filebeat/ingest_data/" + environment: + - ELASTIC_USER=elastic + - ELASTIC_PASSWORD=${ELASTIC_PASSWORD} + - ELASTIC_HOSTS=https://es01:9200 + - KIBANA_HOSTS=http://kibana:5601 + - LOGSTASH_HOSTS=http://logstash01:9600 + networks: + snort_lan: + + logstash01: + depends_on: + es01: + condition: service_healthy + kibana: + condition: service_healthy + image: logstash:${STACK_VERSION} + labels: + co.elastic.logs/module: logstash + user: root + volumes: + - certs:/usr/share/logstash/certs + - logstashdata01:/usr/share/logstash/data + - "./configs/logstash.conf:/usr/share/logstash/pipeline/logstash.conf:ro" + - "./logs:/usr/share/logstash/ingest_data/" + environment: + - xpack.monitoring.enabled=false + - ELASTIC_USER=elastic + - ELASTIC_PASSWORD=${ELASTIC_PASSWORD} + - ELASTIC_HOSTS=https://es01:9200 + networks: + snort_lan: networks: - snort_lan: - driver: bridge + snort_lan: + driver: bridge volumes: - grafana-storage: {} - promtail-data: {} \ No newline at end of file + grafana-storage: {} + promtail-data: {} + certs: {} + esdata01: {} + kibanadata: {} + logstashdata01: {} + filebeatdata01: {} + metricbeatdata01: {} diff --git a/grafana/promtail-data/.gitkeep b/grafana/promtail-data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/logs/.gitkeep b/logs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/logs/alert_csv.txt b/logs/alert_csv.txt new file mode 100644 index 0000000..9889270 --- /dev/null +++ b/logs/alert_csv.txt @@ -0,0 +1,6144 @@ +08/20-14:36:58.690508, 19720, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-14:37:01.892076, 22017, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-14:37:47.866887, 82099, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:41:24.883688, 355328, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:41:41.402712, 370619, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:43:28.272545, 482470, ICMP, raw, 62, C2S, 10.255.255.5:0, 94.20.141.223:0, 1:449:9, allow +08/20-14:45:51.377380, 652654, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:45:58.106794, 658536, ICMP, raw, 72, C2S, 10.255.255.5:0, 193.1.33.5:0, 1:449:9, allow +08/20-14:46:03.168656, 661342, ICMP, raw, 72, C2S, 10.255.255.5:0, 193.1.33.5:0, 1:449:9, allow +08/20-14:46:08.252375, 666594, ICMP, raw, 72, C2S, 10.255.255.5:0, 193.1.33.5:0, 1:449:9, allow +08/20-14:47:43.562720, 787519, ICMP, raw, 62, C2S, 10.255.255.5:0, 20.57.167.96:0, 1:449:9, allow +08/20-14:47:46.175057, 789088, ICMP, raw, 62, C2S, 10.255.255.5:0, 20.57.167.96:0, 1:449:9, allow +08/20-14:47:46.424144, 789421, ICMP, raw, 62, C2S, 10.255.255.5:0, 20.57.167.96:0, 1:449:9, allow +08/20-14:47:46.434337, 789428, ICMP, raw, 62, C2S, 10.255.255.5:0, 20.57.167.96:0, 1:449:9, allow +08/20-14:48:25.087201, 859907, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.087201, 859908, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.292151, 860124, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.497218, 860337, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.497218, 860338, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.907018, 860849, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:25.907018, 860850, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:26.349429, 861781, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:26.349429, 861782, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:27.444599, 863657, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:27.444640, 863658, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:29.417451, 867939, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:29.417451, 867940, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:33.489551, 871599, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:33.489552, 871600, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:38.818987, 876262, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:47.014237, 882507, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:48:47.014238, 882508, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/20-14:50:42.884467, 1134940, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:53:19.368884, 1365062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:54:36.620514, 1460003, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-14:54:39.011727, 1465669, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:55:19.007757, 1526221, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-14:55:25.222215, 1533257, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/20-14:56:11.261414, 1606956, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-14:57:13.875142, 1713356, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/20-14:58:09.895435, 1792620, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:59:04.334925, 1931729, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-14:59:10.558352, 1937395, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:00:27.071363, 1996724, ICMP, raw, 62, C2S, 10.255.255.5:0, 74.3.163.37:0, 1:449:9, allow +08/20-15:00:27.071363, 1996725, ICMP, raw, 62, C2S, 10.255.255.5:0, 74.3.163.37:0, 1:449:9, allow +08/20-15:00:27.293283, 1996848, ICMP, raw, 62, C2S, 10.255.255.5:0, 74.3.163.37:0, 1:449:9, allow +08/20-15:00:27.320483, 1996859, ICMP, raw, 62, C2S, 10.255.255.5:0, 74.3.163.37:0, 1:449:9, allow +08/20-15:01:19.317625, 2063670, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:02:24.462613, 2165378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:02:54.108464, 2216562, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:03:21.020954, 2253898, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:21.035345, 2253904, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:21.841251, 2254421, ICMP, raw, 64, C2S, 10.255.255.5:0, 123.162.190.194:0, 1:449:9, allow +08/20-15:03:21.850301, 2254427, ICMP, raw, 64, C2S, 10.255.255.5:0, 123.162.190.194:0, 1:449:9, allow +08/20-15:03:24.276732, 2256559, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:24.276733, 2256560, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:25.846509, 2257677, ICMP, raw, 64, C2S, 10.255.255.5:0, 123.162.190.194:0, 1:449:9, allow +08/20-15:03:25.853462, 2257681, ICMP, raw, 64, C2S, 10.255.255.5:0, 123.162.190.194:0, 1:449:9, allow +08/20-15:03:29.077633, 2260026, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:29.077633, 2260028, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:34.200567, 2270724, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/20-15:03:48.566349, 2287828, ICMP, raw, 93, C2S, 185.93.41.55:0, 172.64.148.154:0, 1:399:9, allow +08/20-15:04:01.233554, 2303119, ICMP, raw, 93, C2S, 185.93.41.55:0, 172.64.148.154:0, 1:399:9, allow +08/20-15:04:03.856191, 2305712, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:04:04.255025, 2306487, ICMP, raw, 170, C2S, 185.93.41.55:0, 172.64.148.154:0, 1:399:9, allow +08/20-15:05:46.521473, 2429503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:05:51.233952, 2433857, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:05:59.030162, 2445823, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:05:59.030162, 2445824, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:05:59.030162, 2445825, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:05:59.030162, 2445826, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:06:02.131594, 2449706, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:06:02.131594, 2449707, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:06:05.303546, 2458348, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:06:09.553812, 2472883, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-15:06:14.718836, 2477695, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-15:06:29.864797, 2501092, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:06:40.820767, 2524885, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:09:38.295779, 2780569, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-15:10:24.591592, 2834199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:11:19.040499, 2912394, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:13:54.674470, 3175163, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:14:22.899818, 3210925, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:21:30.972647, 3961202, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-15:21:30.973950, 3961207, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-15:22:35.341750, 4172889, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-15:23:27.774665, 4281011, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:25:01.618389, 5026558, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.241.129.61:0, 1:399:9, allow +08/20-15:27:49.668199, 5455563, ICMP, raw, 64, C2S, 10.255.255.5:0, 197.84.133.3:0, 1:449:9, allow +08/20-15:27:49.668199, 5455564, ICMP, raw, 64, C2S, 10.255.255.5:0, 197.84.133.3:0, 1:449:9, allow +08/20-15:27:53.670185, 5463157, ICMP, raw, 64, C2S, 10.255.255.5:0, 197.84.133.3:0, 1:449:9, allow +08/20-15:27:53.671157, 5463159, ICMP, raw, 64, C2S, 10.255.255.5:0, 197.84.133.3:0, 1:449:9, allow +08/20-15:27:55.565282, 5467262, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:01.845281, 5479355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:20.838268, 5529645, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:20.838268, 5529646, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:20.838268, 5529647, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:20.838268, 5529648, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:20.838268, 5529649, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:23.326522, 5534099, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:28:31.046433, 5551920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:34.456570, 5569416, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:41.906876, 5581684, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:43.456954, 5584555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:44.429289, 5589756, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:44.429289, 5589757, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:44.429289, 5589758, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:44.429327, 5589759, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:44.429369, 5589760, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-15:28:45.267030, 5591920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:46.667098, 5603287, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:28:54.097465, 5623053, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:29:06.227788, 5666934, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:29:15.578262, 5683912, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:29:26.668734, 5703197, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:29:41.839206, 5733270, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.230:0, 1:399:9, allow +08/20-15:30:16.550603, 5804834, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:31:34.727825, 5987976, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.13:0, 1:402:16, allow +08/20-15:31:51.993014, 6015809, ICMP, raw, 118, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/20-15:32:15.005267, 6070036, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:34:15.203148, 6331016, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.126.237.183:0, 1:449:9, allow +08/20-15:34:20.203092, 6342017, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.126.237.183:0, 1:449:9, allow +08/20-15:34:25.232478, 6349087, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.126.237.183:0, 1:449:9, allow +08/20-15:34:39.825314, 6384854, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.153.254.103:0, 1:449:9, allow +08/20-15:34:39.878184, 6384953, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.153.254.103:0, 1:449:9, allow +08/20-15:34:39.878890, 6384954, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.153.254.103:0, 1:449:9, allow +08/20-15:34:39.913273, 6385022, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.153.254.103:0, 1:449:9, allow +08/20-15:41:13.666220, 7242801, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:43:05.950645, 7499026, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:43:08.762224, 7504252, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:09.763220, 7506270, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:10.815808, 7508319, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:10.815808, 7508320, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:13.785574, 7512993, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:13.785574, 7512994, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:18.803549, 7520122, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:18.803549, 7520123, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:23.764813, 7532913, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/20-15:43:29.881675, 7545617, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:44:18.183393, 7634349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:46:18.448216, 7889707, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:47:03.739918, 7979184, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:48:18.013397, 8120010, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.9.77.120:0, 1:449:9, allow +08/20-15:48:20.096626, 8123281, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.9.77.120:0, 1:449:9, allow +08/20-15:48:24.923739, 8132381, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.9.77.120:0, 1:449:9, allow +08/20-15:48:25.282702, 8132856, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.9.77.120:0, 1:449:9, allow +08/20-15:50:02.766952, 8344470, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:50:15.510176, 8369199, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.153.224:0, 1:449:9, allow +08/20-15:50:21.115401, 8381949, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.153.224:0, 1:449:9, allow +08/20-15:50:26.384334, 8387629, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.153.224:0, 1:449:9, allow +08/20-15:54:56.508444, 8845774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-15:56:30.291664, 9075763, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:30.291664, 9075764, ICMP, raw, 88, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:30.291665, 9075765, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:30.291665, 9075766, ICMP, raw, 486, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:30.291665, 9075767, ICMP, raw, 487, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:30.291705, 9075771, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:30.291705, 9075772, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:30.291705, 9075773, ICMP, raw, 88, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:34.601726, 9079090, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:34.601726, 9079091, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:34.601726, 9079092, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:34.601726, 9079093, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:39.641902, 9082068, ICMP, raw, 486, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:39.641903, 9082069, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:39.641903, 9082070, ICMP, raw, 487, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:39.641903, 9082071, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:56:43.082344, 9085079, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/20-15:56:43.082344, 9085080, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:399:9, allow +08/20-15:57:00.933195, 9094165, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:57:13.793853, 9106098, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-15:57:46.046256, 9122548, ICMP, raw, 62, C2S, 10.255.255.5:0, 157.148.98.30:0, 1:449:9, allow +08/20-15:57:46.303374, 9122857, ICMP, raw, 62, C2S, 10.255.255.5:0, 157.148.98.30:0, 1:449:9, allow +08/20-15:57:46.356532, 9122909, ICMP, raw, 62, C2S, 10.255.255.5:0, 157.148.98.30:0, 1:449:9, allow +08/20-15:57:46.550268, 9123093, ICMP, raw, 62, C2S, 10.255.255.5:0, 157.148.98.30:0, 1:449:9, allow +08/20-15:58:41.397298, 9170087, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:00:34.636553, 9265225, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:34.636553, 9265226, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:34.636553, 9265227, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:34.636553, 9265228, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:34.636553, 9265229, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:38.496532, 9266909, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:42.307105, 9269603, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:00:49.987559, 9276993, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-16:01:28.136230, 9307347, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.64.41.4:0, 1:399:9, allow +08/20-16:01:28.136231, 9307348, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.4:0, 1:399:9, allow +08/20-16:01:28.136231, 9307349, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.4:0, 1:399:9, allow +08/20-16:01:28.136231, 9307350, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.64.41.4:0, 1:399:9, allow +08/20-16:01:28.136231, 9307351, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.64.41.4:0, 1:399:9, allow +08/20-16:02:08.475357, 9328810, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:02:31.729406, 9348922, ICMP, raw, 36, C2S, 172.104.100.28:0, 185.93.41.55:0, 1:29456:3, allow +08/20-16:04:27.291949, 9440243, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-16:05:31.823598, 9493607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:05:41.543621, 9498894, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:06:34.655912, 9525199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:07:13.847310, 9549377, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:10:53.206123, 9694140, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-16:11:28.428369, 9709272, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:11:29.424524, 9709418, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:11:29.425402, 9709419, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:11:32.422704, 9710995, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:11:32.422705, 9710996, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:11:42.427753, 9716179, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-16:12:41.420267, 9762346, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:13:20.601752, 9783327, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:13:38.282381, 9793315, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:16:26.468959, 9961583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:16:55.850188, 10000982, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:56.060122, 10001045, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:56.610347, 10001161, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:57.090226, 10001297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:57.160312, 10001312, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:57.450226, 10001378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:58.650340, 10002199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:16:58.750314, 10002369, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:59.380222, 10004121, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:16:59.990289, 10004666, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:00.500423, 10005165, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:01.010518, 10005458, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:01.220533, 10005628, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:01.230326, 10005634, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:01.460403, 10005722, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:02.480487, 10006354, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:02.550436, 10006383, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:03.500505, 10007009, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:03.610571, 10007088, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:03.760504, 10007182, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:04.780535, 10009074, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:04.930468, 10009137, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:05.400518, 10009504, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:06.590536, 10010319, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:06.661632, 10010377, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-16:17:06.930497, 10010537, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:07.710538, 10011009, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:08.150607, 10011319, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:08.160616, 10011322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:08.860611, 10012225, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:17:10.220652, 10014295, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:11.040814, 10014727, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:11.070626, 10014757, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:11.560727, 10015038, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:11.790732, 10015451, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:12.020736, 10015669, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:12.920727, 10016844, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:12.931157, 10016864, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:13.650809, 10018781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:14.390835, 10019331, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:14.800970, 10019670, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:15.310860, 10020208, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:15.830981, 10020572, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:16.791232, 10021238, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:17.090938, 10021502, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:17.641109, 10021737, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:18.731039, 10023363, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:18.821064, 10023383, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:18.891118, 10023424, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:19.211252, 10023503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:19.781065, 10023820, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:20.741239, 10024353, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:20.931282, 10024428, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:21.111245, 10024541, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:22.631311, 10028581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:23.431416, 10029083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:23.721333, 10029349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:25.751290, 10031094, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:27.261274, 10033397, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:27.351334, 10033532, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:27.561327, 10033739, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:28.711399, 10035094, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:28.751414, 10035122, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:29.701564, 10036177, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:29.801738, 10036349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:30.391427, 10036770, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:30.451612, 10036811, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:30.581655, 10036891, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:31.001485, 10037050, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:31.201460, 10038252, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:31.531507, 10038448, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:31.961567, 10038873, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:32.051743, 10038996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:32.311541, 10039310, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:32.461566, 10039358, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:33.441667, 10040930, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:34.041702, 10041365, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:34.621668, 10043004, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:34.851949, 10043212, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:35.731832, 10043771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:35.811764, 10043795, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:36.021712, 10043879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:36.611854, 10045523, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:37.792022, 10047214, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:38.091752, 10047291, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:39.231842, 10047696, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:39.591929, 10047922, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:40.181917, 10048503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:40.591869, 10050149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:40.742056, 10050235, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:41.301838, 10051823, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:41.441825, 10052063, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:41.781941, 10052263, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:43.291905, 10056534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:43.361878, 10057092, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:43.732007, 10058496, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:44.211984, 10060581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:44.631955, 10062970, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:45.731978, 10066581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:46.151975, 10069851, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:47.382234, 10073324, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:48.032119, 10076423, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:48.472166, 10078739, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:48.662158, 10079263, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:49.622116, 10084678, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:50.792313, 10088482, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:51.312284, 10089190, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:51.322392, 10089197, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:52.532205, 10090903, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:53.022366, 10091608, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:53.152352, 10091822, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:53.572309, 10092330, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:53.682360, 10092469, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:54.062471, 10092724, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:54.362514, 10093194, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:54.802663, 10093470, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:55.172580, 10095021, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:56.122496, 10095213, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:56.742554, 10095440, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:57.092517, 10095540, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:57.322809, 10095612, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:57.492612, 10095686, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:57.692571, 10095745, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:57.962559, 10095878, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:58.842676, 10096195, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:17:59.792687, 10096571, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:00.822568, 10098360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:01.803087, 10098677, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:03.892740, 10101549, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:04.292812, 10102341, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:04.662842, 10102495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:05.003023, 10102556, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:05.112906, 10102648, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:05.542998, 10102755, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:06.842840, 10103251, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:07.722953, 10103610, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:07.883141, 10103691, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:08.342915, 10104543, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:08.353047, 10104651, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:09.243243, 10105509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:09.513169, 10105597, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:11.263200, 10107608, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:11.503152, 10107677, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:11.813159, 10107777, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:12.563341, 10108388, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:12.993328, 10108634, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:13.833252, 10109389, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.073263, 10110090, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.373240, 10110240, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.393365, 10110263, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.423210, 10110308, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.603160, 10110422, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:14.963492, 10110721, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:15.403238, 10111066, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:15.803270, 10111464, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:16.093384, 10111622, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:16.449969, 10111994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:17.603459, 10112368, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:17.693456, 10112404, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:17.903298, 10112525, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:20.023470, 10114322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:20.123403, 10114488, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.023472, 10114957, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.093576, 10114996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.223452, 10115030, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.303554, 10115045, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.393737, 10115055, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:21.583507, 10115142, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:22.803555, 10117073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:23.163573, 10117267, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:23.833525, 10117673, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:24.743528, 10118163, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:26.153789, 10118992, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:26.673757, 10119243, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:29.803767, 10120266, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:30.123813, 10120774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:30.954037, 10121605, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:31.043986, 10121666, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:31.843965, 10121903, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:32.203915, 10122186, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:33.103996, 10122613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:33.644137, 10122974, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:33.874000, 10123036, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:34.134023, 10123117, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:34.383990, 10123337, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:34.544131, 10123495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:34.694046, 10123598, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:35.063970, 10124144, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:35.974147, 10124989, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:36.744214, 10125302, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:36.754027, 10125304, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:36.754027, 10125305, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:36.994326, 10125405, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:37.624171, 10125847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:38.164162, 10126275, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:38.464278, 10126418, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:38.744419, 10126858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:38.864167, 10127019, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:39.204145, 10127421, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:41.064202, 10130707, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:41.404257, 10131387, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:41.934291, 10132268, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:42.204339, 10132701, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:42.294335, 10132883, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:42.804403, 10133829, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:42.974408, 10134128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:43.924347, 10135788, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:44.134389, 10135990, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:44.324380, 10136130, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:44.634446, 10136406, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:45.674415, 10137249, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:46.264450, 10137830, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:46.554501, 10138032, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:46.614496, 10138052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:47.674460, 10138825, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:47.784449, 10138836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:48.104553, 10139061, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:49.194850, 10140253, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:49.314777, 10140335, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:49.954844, 10141771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:50.294547, 10142270, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:50.394656, 10142458, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:50.704641, 10143541, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:51.164601, 10145151, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:52.404842, 10147930, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:53.204606, 10149135, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:54.074683, 10150598, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:54.114691, 10150658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:54.825268, 10154491, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:55.954794, 10157032, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:56.424891, 10158703, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:56.924787, 10159171, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:57.444901, 10160905, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:58.294805, 10168609, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:58.414917, 10169565, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:18:58.885016, 10173620, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:00.124979, 10175333, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:00.705119, 10175887, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:01.295165, 10176445, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:01.504987, 10176836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:02.255038, 10177332, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:03.105253, 10178409, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:03.465256, 10178668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:03.485081, 10178713, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:03.875297, 10179503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:04.025108, 10179953, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:04.505159, 10181400, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:04.615168, 10181728, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:05.445231, 10184348, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:05.495184, 10184378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:05.965288, 10184823, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:06.215173, 10185138, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:07.165252, 10187507, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:19:07.205321, 10187523, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.227:0, 1:399:9, allow +08/20-16:27:21.234860, 10634763, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:29:34.809998, 10735933, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:30:48.547683, 10781834, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-16:31:20.284281, 10791616, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:33:24.640973, 10866599, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.116.74:0, 1:449:9, allow +08/20-16:33:29.747211, 10877559, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.116.74:0, 1:449:9, allow +08/20-16:33:34.811569, 10881730, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.116.74:0, 1:449:9, allow +08/20-16:36:32.086434, 11013276, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:37:04.217603, 11030638, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:37:16.888191, 11036819, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:37:18.648271, 11038125, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:42:19.499941, 11597751, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:44:30.995039, 11665981, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:44:38.405521, 11673657, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:45:17.758485, 11694742, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-16:46:37.360141, 11728952, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.99.83.178:0, 1:399:9, allow +08/20-16:46:52.322313, 11749548, ICMP, raw, 72, C2S, 10.255.255.5:0, 206.53.48.61:0, 1:449:9, allow +08/20-16:46:57.323343, 11751320, ICMP, raw, 72, C2S, 10.255.255.5:0, 206.53.48.61:0, 1:449:9, allow +08/20-16:47:02.325493, 11752372, ICMP, raw, 72, C2S, 10.255.255.5:0, 206.53.48.61:0, 1:449:9, allow +08/20-16:47:35.472248, 11777232, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:51:15.879207, 11940385, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-16:52:18.943800, 11965017, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:18.943800, 11965018, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:18.943801, 11965019, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/20-16:52:18.943801, 11965020, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/20-16:52:18.943801, 11965021, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/20-16:52:19.149668, 11965062, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/20-16:52:19.149668, 11965063, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:19.149668, 11965064, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:19.151261, 11965072, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:19.151261, 11965073, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:19.153536, 11965074, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:19.153536, 11965075, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:21.406423, 11966518, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:21.408449, 11966521, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:21.410757, 11966522, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:21.412932, 11966523, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:26.524897, 11982323, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:26.524897, 11982324, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:26.526533, 11982325, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:26.526533, 11982326, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:27.503977, 11982578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-16:52:31.361599, 11985449, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-16:52:31.361599, 11985450, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-16:52:49.154574, 11996061, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:53:14.434997, 12015974, ICMP, raw, 72, C2S, 10.255.255.5:0, 44.198.182.22:0, 1:449:9, allow +08/20-16:53:19.748743, 12018984, ICMP, raw, 72, C2S, 10.255.255.5:0, 44.198.182.22:0, 1:449:9, allow +08/20-16:53:24.928436, 12031893, ICMP, raw, 72, C2S, 10.255.255.5:0, 44.198.182.22:0, 1:449:9, allow +08/20-16:53:47.316862, 12064851, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:54:26.671567, 12111907, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:26.965269, 12112030, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:27.509842, 12112453, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:27.674462, 12112488, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:28.478946, 12112654, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:29.742353, 12114138, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:54:30.204029, 12114197, ICMP, raw, 68, C2S, 10.255.255.5:0, 17.57.163.28:0, 1:449:9, allow +08/20-16:57:31.560862, 12234336, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.252.231.161:0, 1:449:9, allow +08/20-16:57:36.375882, 12235645, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-16:57:36.562252, 12235683, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.252.231.161:0, 1:449:9, allow +08/20-16:57:41.563259, 12239743, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.252.231.161:0, 1:449:9, allow +08/20-17:01:18.204619, 12368130, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-17:03:43.640254, 12478524, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:11:36.388763, 12708527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-17:11:39.682398, 12709203, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-17:12:06.616709, 12722903, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-17:12:18.090366, 12728648, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-17:22:24.255145, 13067862, ICMP, raw, 72, C2S, 10.255.255.5:0, 104.168.164.86:0, 1:449:9, allow +08/20-17:22:29.294230, 13070876, ICMP, raw, 72, C2S, 10.255.255.5:0, 104.168.164.86:0, 1:449:9, allow +08/20-17:22:33.394449, 13075875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:22:34.298509, 13076138, ICMP, raw, 72, C2S, 10.255.255.5:0, 104.168.164.86:0, 1:449:9, allow +08/20-17:29:49.611442, 13368700, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:30:35.183384, 13412753, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:32:19.127341, 13476493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:32:47.678392, 13522909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-17:34:07.931557, 13552698, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.241.129.61:0, 1:399:9, allow +08/20-17:34:43.492995, 13575954, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:43:02.402674, 13855728, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.99.83.178:0, 1:399:9, allow +08/20-17:43:32.631312, 13872360, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-17:46:12.971347, 13953127, ICMP, raw, 72, C2S, 10.255.255.5:0, 204.137.14.122:0, 1:449:9, allow +08/20-17:46:18.015428, 13956406, ICMP, raw, 72, C2S, 10.255.255.5:0, 204.137.14.122:0, 1:449:9, allow +08/20-17:46:23.073776, 13958264, ICMP, raw, 72, C2S, 10.255.255.5:0, 204.137.14.122:0, 1:449:9, allow +08/20-17:52:37.095119, 14157148, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/20-17:53:11.946302, 14172861, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-17:55:26.551882, 14254781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-17:56:30.994234, 14287158, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:05:40.985655, 14469546, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:07:10.009334, 14498792, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-18:08:07.265349, 14511930, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-18:08:27.406323, 14516501, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-18:10:00.173896, 14536094, ICMP, raw, 88, C2S, 10.255.255.5:0, 212.71.233.247:0, 1:449:9, allow +08/20-18:10:00.184871, 14536095, ICMP, raw, 88, C2S, 10.255.255.5:0, 212.71.233.247:0, 1:449:9, allow +08/20-18:10:00.195862, 14536096, ICMP, raw, 88, C2S, 10.255.255.5:0, 212.71.233.247:0, 1:449:9, allow +08/20-18:10:15.776487, 14583356, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:12:32.842472, 14641362, ICMP, raw, 72, C2S, 10.255.255.5:0, 200.25.15.74:0, 1:449:9, allow +08/20-18:12:37.843490, 14656800, ICMP, raw, 72, C2S, 10.255.255.5:0, 200.25.15.74:0, 1:449:9, allow +08/20-18:12:42.863303, 14658365, ICMP, raw, 72, C2S, 10.255.255.5:0, 200.25.15.74:0, 1:449:9, allow +08/20-18:13:55.844971, 14698138, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:17:35.563823, 14882085, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-18:17:54.554449, 14888679, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:19:37.525438, 14953499, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-18:19:47.901947, 14957727, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-18:19:49.287363, 14959082, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.103.186.106:0, 1:449:9, allow +08/20-18:19:54.298227, 14963068, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.103.186.106:0, 1:449:9, allow +08/20-18:19:58.389308, 14964632, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:21:31.242887, 15014763, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:25:17.521724, 15171128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:27:49.597705, 15311945, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:29:31.862892, 15342510, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/20-18:29:34.869193, 15343209, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/20-18:37:59.138968, 15561489, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-18:38:23.165192, 15567948, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-18:40:29.037501, 15601040, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:40:55.418596, 15607020, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:42:31.732331, 15650266, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:45:13.288629, 15695027, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-18:45:52.154717, 15704689, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.48.236:0, 1:449:9, allow +08/20-18:46:36.231586, 15733913, ICMP, raw, 62, C2S, 10.255.255.5:0, 114.32.68.247:0, 1:449:9, allow +08/20-18:46:36.233549, 15733914, ICMP, raw, 62, C2S, 10.255.255.5:0, 114.32.68.247:0, 1:449:9, allow +08/20-18:46:36.738694, 15734016, ICMP, raw, 62, C2S, 10.255.255.5:0, 114.32.68.247:0, 1:449:9, allow +08/20-18:46:36.742782, 15734017, ICMP, raw, 62, C2S, 10.255.255.5:0, 114.32.68.247:0, 1:449:9, allow +08/20-18:47:12.030426, 15743174, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-18:49:53.719947, 15778577, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:49:59.919830, 15780297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:58:19.769394, 15925471, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-18:59:43.122806, 15940949, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.99.83.178:0, 1:399:9, allow +08/20-19:00:41.464879, 15952577, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:01:27.778439, 15962678, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:27.778439, 15962679, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:27.778439, 15962680, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:27.778439, 15962681, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:27.778440, 15962682, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:31.518271, 15963312, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:35.228493, 15963922, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:01:42.649015, 15965464, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/20-19:02:48.039953, 15979269, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:03:20.528672, 15987053, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-19:05:04.235161, 16008984, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:07:55.492039, 16054082, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:09:43.414526, 16078291, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:43.802969, 16078403, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:43.909321, 16078424, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:44.131695, 16078449, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:44.416586, 16078511, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:44.416961, 16078512, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:44.797982, 16078574, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:44.798214, 16078575, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:44.910174, 16078592, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:44.914428, 16078594, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:45.128168, 16078663, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:45.128347, 16078664, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:47.412737, 16079021, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:47.412850, 16079022, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:47.799941, 16079084, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:47.799941, 16079085, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:47.905654, 16079105, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:47.907188, 16079106, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:48.128342, 16079153, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:48.128343, 16079154, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:52.407336, 16079967, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:52.407466, 16079968, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:52.792192, 16080048, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:52.792323, 16080049, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:52.899615, 16080076, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:52.899786, 16080077, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:53.135236, 16080121, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:53.135236, 16080122, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:09:57.414635, 16081201, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/20-19:09:57.798751, 16081271, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/20-19:09:57.909676, 16081287, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/20-19:09:58.130789, 16081321, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/20-19:10:20.716845, 16087423, ICMP, raw, 72, C2S, 10.255.255.5:0, 47.110.136.82:0, 1:449:9, allow +08/20-19:10:21.947616, 16087878, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:10:25.759150, 16088548, ICMP, raw, 72, C2S, 10.255.255.5:0, 47.110.136.82:0, 1:449:9, allow +08/20-19:10:30.822346, 16089432, ICMP, raw, 72, C2S, 10.255.255.5:0, 47.110.136.82:0, 1:449:9, allow +08/20-19:12:27.652727, 16165585, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:13:22.984728, 16188979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:13:34.385491, 16192860, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:13:42.255463, 16199259, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:13:43.825467, 16199851, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:05.626369, 16208901, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:08.807318, 16211234, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:12.386586, 16212167, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:13.916661, 16212482, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:15.109380, 16212683, ICMP, raw, 68, C2S, 10.255.255.5:0, 12.129.92.192:0, 1:449:9, allow +08/20-19:14:15.867267, 16212800, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:20.266483, 16216389, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-19:14:21.037276, 16216508, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:21.557071, 16216645, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:14:24.117243, 16217158, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:27.711924, 16219355, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.146:0, 1:449:9, allow +08/20-19:14:28.177632, 16219493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.111.244:0, 1:399:9, allow +08/20-19:14:28.309040, 16219544, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.146:0, 1:449:9, allow +08/20-19:14:28.519813, 16219601, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.146:0, 1:449:9, allow +08/20-19:14:35.345173, 16222979, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-19:14:49.817905, 16228831, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-19:14:51.438233, 16230614, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.99.83.178:0, 1:399:9, allow +08/20-19:14:53.746155, 16231001, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-19:16:12.531496, 16252360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:17:40.414633, 16284175, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:18:47.457354, 16303136, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:20:15.541150, 16380947, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:20:35.681654, 16389768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:23:27.678199, 16486643, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:25:03.499471, 16520443, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.84.134.245:0, 1:449:9, allow +08/20-19:25:06.000410, 16521763, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.118.164.158:0, 1:449:9, allow +08/20-19:25:08.500765, 16522702, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.84.134.245:0, 1:449:9, allow +08/20-19:25:13.500777, 16524898, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.84.134.245:0, 1:449:9, allow +08/20-19:25:34.793294, 16532081, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:28:42.915912, 16629986, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-19:29:53.793375, 16644754, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:35:09.121343, 16716604, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-19:35:26.293718, 16720122, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-19:40:42.178612, 16811103, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:41:24.600364, 16823896, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:42:03.186304, 17092432, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-19:44:43.818193, 17138774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:45:19.489597, 17148747, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.99.83.178:0, 1:399:9, allow +08/20-19:45:19.989515, 17148901, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:45:53.942339, 17154566, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.20.208:0, 1:449:9, allow +08/20-19:51:23.233693, 17255941, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-19:51:36.534146, 17258184, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:54:33.361046, 17292769, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-19:56:05.667462, 17314718, ICMP, raw, 62, C2S, 10.255.255.5:0, 104.152.223.22:0, 1:449:9, allow +08/20-19:56:13.155856, 17316395, ICMP, raw, 62, C2S, 10.255.255.5:0, 104.152.223.22:0, 1:449:9, allow +08/20-19:56:14.218832, 17316580, ICMP, raw, 62, C2S, 10.255.255.5:0, 104.152.223.22:0, 1:449:9, allow +08/20-19:56:21.328058, 17317675, ICMP, raw, 62, C2S, 10.255.255.5:0, 104.152.223.22:0, 1:449:9, allow +08/20-19:57:51.138848, 17338378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:51.172467, 17338386, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-19:57:52.639024, 17338768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:53.028870, 17338867, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:53.189149, 17338897, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:54.149139, 17339206, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:54.998921, 17339641, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:55.709066, 17339817, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:56.389208, 17339927, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:56.459267, 17339931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:56.859137, 17339979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:58.019050, 17340191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:58.629138, 17340303, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:58.759040, 17340324, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:57:59.739197, 17340545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:00.129377, 17340651, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:00.219213, 17340667, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:00.489222, 17340725, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:00.659263, 17340746, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:01.639213, 17340918, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:01.949439, 17340983, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:02.089450, 17341037, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:02.879277, 17341249, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:04.189457, 17341597, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:05.369556, 17341920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:06.089358, 17342099, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:06.479366, 17342185, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:06.559260, 17342216, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:07.239486, 17342410, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:07.309383, 17342424, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:07.739567, 17342545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:08.269464, 17342728, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:08.569528, 17342776, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:08.629446, 17342787, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:09.259646, 17343083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:10.149590, 17343338, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:10.179525, 17343343, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:10.809724, 17343437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:12.759658, 17343865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:13.699690, 17343996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:14.849699, 17344227, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:15.109787, 17344284, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:15.159715, 17344297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:15.829831, 17344570, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:15.999779, 17344600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:16.099771, 17344621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:16.299865, 17344662, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:16.399900, 17344674, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:17.289801, 17344781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:18.199922, 17344922, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:18.569999, 17344972, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:19.279896, 17345067, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:21.019992, 17345370, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:21.940001, 17345503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:22.380289, 17345608, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:22.850028, 17345726, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:23.430260, 17345834, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:24.580182, 17346077, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:24.700167, 17346082, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:25.170271, 17346175, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:25.170272, 17346176, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:25.840364, 17346292, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:26.140245, 17346344, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:26.580245, 17346523, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:27.240165, 17346603, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:28.220404, 17346732, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:28.350259, 17346747, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:28.870337, 17347014, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:29.730372, 17347192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:30.550590, 17347345, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:31.210339, 17347550, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:32.490448, 17347730, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:32.820385, 17347771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:34.060566, 17347993, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:35.180568, 17348166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:35.420755, 17348209, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:35.730562, 17348277, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:36.460670, 17348437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:36.630866, 17348593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:36.650572, 17348599, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:37.100728, 17348662, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:37.460640, 17348742, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:37.510677, 17348761, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:38.170704, 17348973, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:40.810812, 17350746, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:41.090722, 17350892, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:41.731038, 17351353, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:41.860862, 17351481, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:42.950956, 17351841, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:42.980872, 17351849, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:43.770929, 17352070, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:43.830835, 17352086, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:44.590984, 17352211, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:45.410965, 17352337, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:46.330945, 17352518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:46.890987, 17352591, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:47.051160, 17352627, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:47.711068, 17352702, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:47.801033, 17352711, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:50.081180, 17353449, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:50.281156, 17353502, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:50.411199, 17353517, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:50.911148, 17353633, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:51.411162, 17353771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:52.691172, 17355371, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:52.791204, 17355382, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:52.991226, 17355426, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:53.391490, 17355484, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:53.791415, 17355546, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:54.231479, 17355699, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:54.301270, 17355713, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:54.821510, 17355987, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:54.981420, 17356047, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:55.221519, 17356079, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:55.381357, 17356107, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.351424, 17356287, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.711370, 17356322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.731381, 17356324, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.771575, 17356328, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.821373, 17356330, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:56.971494, 17356363, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:58.231478, 17356591, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:58.291429, 17356596, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:58:59.381521, 17356777, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:00.411499, 17356892, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:01.121596, 17357123, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:02.501869, 17357291, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:02.981725, 17357441, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:03.481768, 17357560, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:04.401755, 17357853, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:05.191799, 17358048, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:05.231927, 17358054, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:05.451788, 17358085, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:05.872002, 17358128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:05.951684, 17358146, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:08.871837, 17358794, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:09.221935, 17359143, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:09.904936, 17359295, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:10.402178, 17359369, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:11.061935, 17359524, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:11.382024, 17359581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:11.812029, 17359626, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:12.112230, 17359709, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:13.192152, 17359932, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:14.042142, 17360111, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:14.332324, 17360167, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:15.192129, 17360407, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:17.022351, 17360935, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:17.182274, 17360963, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:17.562303, 17361012, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:17.762320, 17361045, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:17.842381, 17361051, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:18.282183, 17361110, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:19.132381, 17361221, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:19.292210, 17361242, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:19.382362, 17361253, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:20.102333, 17361361, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:20.582527, 17361493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:21.102450, 17361637, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:21.652402, 17361749, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:21.752591, 17361766, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:22.282344, 17361815, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:22.412591, 17361827, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:22.522515, 17361836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:22.962460, 17361940, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:23.012405, 17361956, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:23.542421, 17362112, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:23.932499, 17362158, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:24.022564, 17362168, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:24.542609, 17362347, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:24.672474, 17362364, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:25.262659, 17362457, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:25.712563, 17362528, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:25.892381, 17362578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:26.182620, 17362723, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:26.522513, 17362833, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:26.542671, 17362835, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:26.922604, 17362897, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:27.242745, 17362948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:27.292529, 17362951, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:27.472544, 17362985, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:27.612548, 17363022, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:28.212632, 17363086, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:28.262587, 17363089, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:28.812669, 17363169, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:30.682638, 17363460, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:31.122708, 17363604, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:31.172713, 17363611, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:31.732745, 17363877, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:32.392750, 17364227, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:34.142967, 17364878, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:34.162852, 17364882, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:35.202898, 17365324, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:35.213036, 17365327, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:35.612869, 17365489, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:35.902907, 17365557, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:36.042934, 17365595, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:38.683032, 17366933, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:39.953262, 17367440, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:40.213143, 17367493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:40.213144, 17367494, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:40.563220, 17367596, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:40.663279, 17367638, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:41.143129, 17367793, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:41.793365, 17367961, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:42.013267, 17368008, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:42.403321, 17368087, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:42.593368, 17368106, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:42.873231, 17368162, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:43.143239, 17368183, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:44.233283, 17368362, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:44.613234, 17368408, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:44.703342, 17368417, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:44.723275, 17368419, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:45.263371, 17368572, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:45.453313, 17368635, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:45.533529, 17368646, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:45.683541, 17368659, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:46.593311, 17368760, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:47.023600, 17368831, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:47.683441, 17368970, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:48.253573, 17369015, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:48.603479, 17369073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:50.073543, 17369352, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:50.313523, 17369375, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:50.907408, 17369424, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:51.443490, 17369529, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:51.993759, 17369597, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:52.043591, 17369605, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:52.773669, 17369768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:53.233811, 17369829, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:53.423597, 17369846, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:54.133647, 17370007, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:54.703598, 17370294, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:54.953604, 17370379, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:54.973691, 17370384, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:55.783663, 17370568, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:55.893736, 17370595, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:55.913913, 17370596, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:56.013885, 17370618, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:56.463677, 17370703, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:57.893768, 17371355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:58.583804, 17371472, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-19:59:59.763869, 17371783, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:00:00.293914, 17371860, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:00:01.343907, 17372027, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:00:01.673888, 17372093, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:00:02.674016, 17372280, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:00:03.104016, 17372342, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.202.246.146:0, 1:399:9, allow +08/20-20:03:11.531427, 17413499, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:04:47.005031, 17430415, ICMP, raw, 112, C2S, 10.255.255.5:0, 8.38.121.219:0, 1:449:9, allow +08/20-20:06:11.668450, 17447133, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:09:13.032916, 17483464, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.132.43:0, 1:449:9, allow +08/20-20:09:14.029028, 17483581, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.132.43:0, 1:449:9, allow +08/20-20:09:17.034182, 17484257, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.132.43:0, 1:449:9, allow +08/20-20:09:18.032315, 17484450, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.132.43:0, 1:449:9, allow +08/20-20:15:34.360613, 17563698, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:16:20.170710, 17571974, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-20:18:05.136604, 17606982, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-20:18:36.878420, 17613492, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-20:18:36.878420, 17613493, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-20:18:36.878421, 17613494, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-20:18:36.878421, 17613495, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/20-20:22:27.856720, 17656893, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:23:40.703362, 17669979, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-20:28:07.150208, 17727653, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-20:28:20.380714, 17730349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:28:35.981290, 17733202, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:28:37.241349, 17733449, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:28:37.691217, 17733509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:29:15.942740, 17741152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:29:29.093257, 17743062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:29:40.823715, 17745106, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:29:44.823839, 17745504, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:30:01.284652, 17749051, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:30:04.274590, 17749846, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:30:20.545406, 17753217, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:30:28.445742, 17754404, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:30:31.775701, 17755022, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.165:0, 1:399:9, allow +08/20-20:32:01.579378, 17770769, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-20:35:46.623192, 17889419, ICMP, raw, 68, C2S, 10.255.255.5:0, 13.0.35.128:0, 1:449:9, allow +08/20-20:36:29.111594, 17897126, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-20:36:44.955507, 17899402, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-20:36:52.574602, 17900588, ICMP, raw, 116, C2S, 10.255.255.5:0, 193.232.180.118:0, 1:449:9, allow +08/20-20:38:08.673527, 17913367, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.220:0, 1:399:9, allow +08/20-20:52:27.387774, 20668549, ICMP, raw, 72, C2S, 10.255.255.5:0, 118.89.72.86:0, 1:449:9, allow +08/20-20:52:28.437749, 20671436, ICMP, raw, 72, C2S, 10.255.255.5:0, 118.89.72.86:0, 1:449:9, allow +08/20-20:52:31.897003, 20699963, ICMP, raw, 72, C2S, 10.255.255.5:0, 118.89.72.86:0, 1:449:9, allow +08/20-20:52:32.932149, 20703601, ICMP, raw, 72, C2S, 10.255.255.5:0, 118.89.72.86:0, 1:449:9, allow +08/20-20:53:07.958957, 20855325, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:55:16.253529, 21408132, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-20:55:20.613814, 21419303, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:55:25.634075, 21432473, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-20:56:13.745926, 21470323, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-20:56:45.500532, 21475733, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-20:57:09.965586, 21480759, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-20:59:23.233547, 21507206, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:00:45.516685, 21522203, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-21:01:44.938863, 21533282, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:04:03.568736, 21565199, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.105.218.40:0, 1:449:9, allow +08/20-21:04:03.581628, 21565200, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-21:04:03.645677, 21565212, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.105.218.40:0, 1:449:9, allow +08/20-21:04:03.648534, 21565213, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.105.218.40:0, 1:449:9, allow +08/20-21:04:04.149620, 21565318, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-21:07:14.411645, 21608465, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-21:09:29.856988, 21631814, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-21:09:29.856989, 21631815, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:10:09.148758, 21638436, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:15:22.221076, 21703397, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:16:51.874243, 21718242, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:17:20.535373, 21724574, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:18:14.107510, 21734552, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-21:18:30.238285, 21737551, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-21:19:55.191395, 21752999, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:21:01.744167, 21764910, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:21:02.122255, 21764968, ICMP, raw, 62, C2S, 10.255.255.5:0, 112.95.75.94:0, 1:449:9, allow +08/20-21:22:20.857136, 21780455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:28:50.682542, 21854147, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:29:16.437480, 21859584, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.137.46.18:0, 1:449:9, allow +08/20-21:29:16.437869, 21859585, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.137.46.18:0, 1:449:9, allow +08/20-21:29:16.444391, 21859587, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.137.46.18:0, 1:449:9, allow +08/20-21:29:16.456148, 21859588, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.137.46.18:0, 1:449:9, allow +08/20-21:29:35.543971, 21862919, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:30:51.947217, 21879540, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:08.047689, 21882513, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:08.477719, 21882600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:31:13.007982, 21883462, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:18.828414, 21884258, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:42.179040, 21887871, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:46.239523, 21888587, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-21:31:47.054998, 21888669, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-21:31:51.469513, 21889285, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:54.289708, 21889725, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:31:58.959852, 21890827, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:32:12.770335, 21893834, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:32:15.750429, 21894344, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:32:31.781037, 21896794, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:32:47.721665, 21899610, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:32:49.631824, 21899881, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.62:0, 1:399:9, allow +08/20-21:33:39.213379, 21908158, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-21:34:25.695646, 21918504, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:37:18.280990, 21949734, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-21:38:07.694348, 21958316, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:08.774318, 21958404, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:09.144298, 21958437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:09.154177, 21958440, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:09.685194, 21958598, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:11.784318, 21958881, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:12.404681, 21958964, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:12.784415, 21959007, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:12.874515, 21959052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:13.784461, 21959192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:14.394435, 21959333, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:14.644461, 21959376, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:14.784478, 21959406, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:16.344543, 21959878, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:16.994581, 21960009, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:17.434600, 21960095, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:17.994872, 21960183, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:18.154611, 21960196, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:18.674659, 21960300, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:19.414790, 21960410, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:19.794691, 21960458, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:20.894698, 21960593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:21.564731, 21960692, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:22.695058, 21961022, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:22.934795, 21961073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:23.654837, 21961158, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:23.674873, 21961160, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:25.694876, 21961454, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:25.724974, 21961456, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:25.805017, 21961476, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:26.264999, 21961523, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:27.374887, 21961714, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:27.735049, 21961779, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:28.645008, 21961945, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:29.625272, 21962133, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:29.895209, 21962180, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:29.915016, 21962185, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:30.305052, 21962245, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:32.005173, 21962532, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:32.235398, 21962561, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:32.735136, 21962658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:33.295324, 21962713, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:33.905418, 21962880, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:34.395229, 21962992, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:34.415356, 21963015, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:34.875355, 21963144, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:35.155349, 21963178, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:35.655539, 21963284, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:36.745309, 21963446, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:37.995411, 21963598, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:38.475664, 21963650, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:39.375589, 21963797, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:39.855587, 21963886, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:40.945565, 21964034, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/20-21:38:41.365512, 21964078, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:42.285583, 21964229, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:42.775635, 21964308, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:45.065771, 21964672, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:45.155738, 21964685, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:45.625734, 21964858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:45.715730, 21964866, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:46.915928, 21965095, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:48.835796, 21965368, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:50.416010, 21965548, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:50.795950, 21965613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:51.005832, 21965633, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:51.186031, 21965654, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:51.266053, 21965659, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:51.815949, 21965701, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:52.205965, 21965749, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:53.146048, 21965874, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:54.636246, 21966112, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:54.866115, 21966211, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:55.076070, 21966320, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:56.676309, 21966535, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:57.636455, 21966684, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:57.866149, 21966738, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:58.726233, 21966927, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:38:59.426237, 21967022, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:00.766312, 21967161, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:00.866286, 21967170, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:01.406309, 21967233, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:01.796281, 21967331, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:01.956827, 21967377, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:01.966746, 21967381, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:02.606349, 21967497, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:03.156537, 21967639, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:03.196617, 21967650, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:03.386369, 21967683, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:04.226448, 21967890, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:04.446681, 21968217, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:04.746436, 21968322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:05.296842, 21968453, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:05.546560, 21968466, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:05.626721, 21968471, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:05.666588, 21968475, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:05.926511, 21968495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:06.026442, 21968501, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:06.456456, 21968552, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:06.836578, 21968623, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:07.536650, 21968730, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:08.876559, 21969089, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:10.016705, 21969476, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:11.216664, 21969711, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:11.646758, 21969776, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:11.756702, 21969784, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:11.976737, 21969796, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:13.456774, 21970188, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:13.746770, 21970283, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:13.776779, 21970289, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:13.926797, 21970303, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:14.026849, 21970309, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:14.656935, 21970415, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:14.746970, 21970425, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:15.177144, 21970486, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:15.466898, 21970605, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:15.667022, 21970616, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.106949, 21970668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.616921, 21970727, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.686890, 21970734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.846944, 21970746, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.866925, 21970748, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:16.966975, 21970763, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:17.226942, 21970792, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:17.256925, 21970795, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:17.347211, 21970827, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:17.996974, 21970942, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:18.057207, 21970947, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:18.567028, 21970994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:20.097284, 21971266, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:20.777214, 21971381, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:21.007124, 21971421, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:21.177159, 21971430, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:21.507461, 21971517, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:21.817140, 21971555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:24.177337, 21972020, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:24.257422, 21972033, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:26.157353, 21972262, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:26.177289, 21972269, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:27.447476, 21972428, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:27.467329, 21972431, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:27.747699, 21972455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:28.007415, 21972493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:28.447404, 21972571, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:28.817395, 21972611, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:29.077551, 21972646, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:29.687548, 21972750, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:39:31.787551, 21973100, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:31.877474, 21973110, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:32.267478, 21973176, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:32.507592, 21973260, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:34.097584, 21973483, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:34.567590, 21973577, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:34.767663, 21973625, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:34.897633, 21973641, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:36.827708, 21974031, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:36.937842, 21974052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:38.067764, 21974218, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:38.997744, 21974322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:39.267834, 21974355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:39.577997, 21974394, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:39.697893, 21974412, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:39.697893, 21974413, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:40.447894, 21974493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:40.968891, 21974545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:41.157813, 21974568, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:41.267965, 21974597, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:41.367947, 21974610, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:42.098118, 21974747, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:42.617960, 21974861, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:42.957890, 21974905, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:44.027887, 21975112, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:44.738224, 21975224, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:44.988173, 21975267, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:45.028024, 21975271, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:45.638007, 21975487, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:46.428127, 21975634, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:46.918211, 21975712, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:47.658222, 21975855, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:48.198205, 21975950, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:50.248291, 21976349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:50.948223, 21976415, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:51.498301, 21976488, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:51.818302, 21976544, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:51.888287, 21976551, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:51.908251, 21976555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:51.938396, 21976563, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:52.058250, 21976573, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.118394, 21976691, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.318355, 21976719, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.358381, 21976725, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.378480, 21976731, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.518499, 21976738, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:53.978362, 21976858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:54.058497, 21976865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:54.458376, 21976972, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:54.658279, 21977026, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.108448, 21978144, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.188678, 21978191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.298615, 21978314, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.618428, 21978593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.678542, 21978741, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:57.798802, 21978886, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:58.368543, 21979563, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:58.698471, 21979996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:39:58.978586, 21980304, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:00.408693, 21980575, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:01.018671, 21980715, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:01.358625, 21980779, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:01.498630, 21980786, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:01.828682, 21980828, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:01.978796, 21980844, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:02.468729, 21980903, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:03.068698, 21981006, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:03.078761, 21981008, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:04.018772, 21981148, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:04.398714, 21981477, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:04.838812, 21981621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:04.858753, 21981633, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:05.048826, 21981670, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:05.078888, 21981676, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:05.238745, 21981753, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:08.139128, 21982151, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:08.839143, 21982225, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:08.889045, 21982230, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:09.209005, 21982257, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:10.409239, 21982489, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:10.539057, 21982503, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:11.359130, 21982617, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:12.599207, 21982815, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:12.749147, 21982829, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:12.829152, 21982837, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:13.099187, 21982864, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:13.529321, 21982971, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:13.699256, 21983033, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:14.519422, 21983190, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:15.409496, 21983389, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:15.949408, 21983485, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:16.519356, 21983601, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:16.979261, 21983674, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:17.039231, 21983733, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:18.039523, 21983931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:40:18.809399, 21984208, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.41.190:0, 1:399:9, allow +08/20-21:43:23.426532, 22246977, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:47:35.986414, 22324578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:48:28.008471, 22334139, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:49:11.010245, 22343438, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:52:12.767298, 22378998, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-21:53:31.090674, 22392957, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-21:57:07.002276, 22433586, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-21:59:29.072168, 22460409, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-22:00:18.666437, 22472083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:02:51.082160, 22500100, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.145.195:0, 1:449:9, allow +08/20-22:06:02.059984, 22553516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:07:39.253598, 22570127, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:11:05.561888, 22608517, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:11:07.911805, 22608836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:21:51.957268, 23030323, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:25:30.242059, 23071324, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.236.126.215:0, 1:449:9, allow +08/20-22:25:30.242060, 23071325, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.236.126.215:0, 1:449:9, allow +08/20-22:27:18.099984, 23093464, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:33:00.313644, 23179295, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:37:24.234037, 23229426, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.161.88.35:0, 1:449:9, allow +08/20-22:37:24.261932, 23229431, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.161.88.35:0, 1:449:9, allow +08/20-22:37:24.507155, 23229449, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.161.88.35:0, 1:449:9, allow +08/20-22:37:24.510818, 23229450, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.161.88.35:0, 1:449:9, allow +08/20-22:40:21.050572, 23261837, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-22:42:22.265343, 23282792, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:45:11.852086, 23395542, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:48:40.040206, 23430964, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:51:01.392105, 23470796, ICMP, raw, 62, C2S, 10.255.255.5:0, 207.211.214.162:0, 1:449:9, allow +08/20-22:51:01.393945, 23470797, ICMP, raw, 62, C2S, 10.255.255.5:0, 207.211.214.162:0, 1:449:9, allow +08/20-22:51:01.397996, 23470798, ICMP, raw, 62, C2S, 10.255.255.5:0, 207.211.214.162:0, 1:449:9, allow +08/20-22:51:01.399999, 23470799, ICMP, raw, 62, C2S, 10.255.255.5:0, 207.211.214.162:0, 1:449:9, allow +08/20-22:53:01.290425, 23498644, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:53:13.741056, 23501455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-22:53:16.851046, 23501907, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:53:44.932170, 23505948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-22:54:23.475046, 23512538, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-22:54:34.098786, 23513876, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-22:54:53.874919, 23516633, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:56:27.711347, 23535580, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-22:57:17.690463, 23544362, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-22:57:50.990996, 23549169, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-22:59:29.077280, 23585531, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-23:00:16.724473, 23593630, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/20-23:01:28.398198, 23604585, ICMP, raw, 62, C2S, 10.255.255.5:0, 175.153.165.221:0, 1:449:9, allow +08/20-23:01:28.567503, 23604609, ICMP, raw, 62, C2S, 10.255.255.5:0, 175.153.165.221:0, 1:449:9, allow +08/20-23:01:28.572007, 23604610, ICMP, raw, 62, C2S, 10.255.255.5:0, 175.153.165.221:0, 1:449:9, allow +08/20-23:01:28.572910, 23604612, ICMP, raw, 62, C2S, 10.255.255.5:0, 175.153.165.221:0, 1:449:9, allow +08/20-23:03:21.124812, 23631545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-23:03:28.554925, 23636389, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:04:50.088202, 23717610, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:05:31.209867, 23752621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/20-23:07:57.605652, 23787027, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:08:05.135774, 23788346, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:12:07.690604, 23830456, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.234.213.135:0, 1:449:9, allow +08/20-23:12:07.690605, 23830457, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.234.213.135:0, 1:449:9, allow +08/20-23:12:07.690605, 23830458, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.234.213.135:0, 1:449:9, allow +08/20-23:12:07.690605, 23830459, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.234.213.135:0, 1:449:9, allow +08/20-23:16:46.306316, 23882119, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:18:59.831602, 23908527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:19:01.261597, 23908773, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:21:28.191347, 23953749, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/20-23:21:42.517967, 23955719, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:24:35.689630, 23989871, ICMP, raw, 62, C2S, 10.255.255.5:0, 138.199.53.212:0, 1:449:9, allow +08/20-23:24:35.690620, 23989872, ICMP, raw, 62, C2S, 10.255.255.5:0, 138.199.53.212:0, 1:449:9, allow +08/20-23:24:35.693637, 23989873, ICMP, raw, 62, C2S, 10.255.255.5:0, 138.199.53.212:0, 1:449:9, allow +08/20-23:24:35.693637, 23989874, ICMP, raw, 62, C2S, 10.255.255.5:0, 138.199.53.212:0, 1:449:9, allow +08/20-23:30:27.658729, 24061225, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:34:15.627689, 24100224, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:36:23.922536, 24124546, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:36:30.893922, 24125666, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-23:36:31.793198, 24125784, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/20-23:42:55.121117, 24192787, ICMP, raw, 72, C2S, 10.255.255.5:0, 41.77.138.90:0, 1:449:9, allow +08/20-23:43:47.899948, 24299958, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:48:31.420906, 24360945, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:49:32.093483, 24371838, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:50:25.665624, 24381049, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/20-23:53:10.861851, 24408743, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:54:08.854161, 24421147, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/20-23:54:42.822804, 24427805, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.169.64.13:0, 1:449:9, allow +08/20-23:58:27.285579, 24468245, ICMP, raw, 64, C2S, 10.255.255.5:0, 110.164.35.48:0, 1:449:9, allow +08/20-23:58:27.292834, 24468246, ICMP, raw, 64, C2S, 10.255.255.5:0, 110.164.35.48:0, 1:449:9, allow +08/20-23:58:31.289096, 24468859, ICMP, raw, 64, C2S, 10.255.255.5:0, 110.164.35.48:0, 1:449:9, allow +08/20-23:58:31.297908, 24468860, ICMP, raw, 64, C2S, 10.255.255.5:0, 110.164.35.48:0, 1:449:9, allow +08/20-23:58:52.565270, 24472391, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:02:48.584515, 24793654, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:03:46.076940, 24803680, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:16:04.155812, 24932232, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:16:27.998985, 24936510, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-00:16:29.018068, 24936629, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-00:16:30.325124, 24936769, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-00:17:01.557803, 24942133, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:20:30.176037, 24974668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:22:29.420664, 24992931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:23:24.372732, 25001513, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:26:55.341147, 25040183, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:27:10.231639, 25042758, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:31:43.582584, 25084658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:33:20.616133, 25123836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:33:55.147573, 25165212, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:35:58.102520, 25184078, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:39:07.049780, 25226280, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:41:22.025133, 25252522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:41:43.424438, 25255383, ICMP, raw, 72, C2S, 10.255.255.5:0, 209.58.168.107:0, 1:449:9, allow +08/21-00:42:58.274201, 25267958, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.44.2:0, 1:449:9, allow +08/21-00:43:14.659537, 25270708, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:43:15.052756, 25270737, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-00:43:28.170358, 25272714, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-00:44:11.711845, 25357024, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-00:44:36.432775, 25360831, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:44:46.170491, 25362499, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.160.2:0, 1:449:9, allow +08/21-00:45:51.605646, 25381086, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:45:55.713924, 25382045, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.166.2:0, 1:449:9, allow +08/21-00:48:01.556019, 25401046, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.91.47.2:0, 1:449:9, allow +08/21-00:49:38.494876, 25416759, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.58.118.202:0, 1:449:9, allow +08/21-00:50:09.058278, 25422243, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.114.144:0, 1:449:9, allow +08/21-00:50:09.062265, 25422245, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.114.144:0, 1:449:9, allow +08/21-00:50:09.117389, 25422264, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.114.144:0, 1:449:9, allow +08/21-00:50:09.323369, 25422280, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.114.144:0, 1:449:9, allow +08/21-00:52:04.225283, 25440894, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.161.2:0, 1:449:9, allow +08/21-00:52:16.240741, 25442934, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:53:21.653373, 25452690, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-00:56:02.082131, 25479371, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.91.46.2:0, 1:449:9, allow +08/21-00:56:06.289050, 25480353, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-00:57:46.462177, 25497304, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.45.2:0, 1:449:9, allow +08/21-00:58:56.016506, 25509035, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-00:59:13.534817, 25512332, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.47.2:0, 1:449:9, allow +08/21-01:00:40.264847, 25526565, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.162.2:0, 1:449:9, allow +08/21-01:02:07.134254, 25541844, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.163.2:0, 1:449:9, allow +08/21-01:03:48.258066, 25564975, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.160.2:0, 1:449:9, allow +08/21-01:05:22.953982, 25581740, ICMP, raw, 72, C2S, 10.255.255.5:0, 158.58.172.238:0, 1:449:9, allow +08/21-01:06:04.483165, 25588059, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:07:19.591833, 25602621, ICMP, raw, 112, C2S, 10.255.255.5:0, 8.38.121.194:0, 1:449:9, allow +08/21-01:08:53.081291, 25618210, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.161.2:0, 1:449:9, allow +08/21-01:10:05.592580, 25631347, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-01:10:57.464647, 25640088, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-01:11:32.116010, 25646512, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:12:26.778224, 25656715, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-01:14:26.462674, 25678029, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:16:15.987185, 25697766, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-01:16:22.047355, 25698559, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:19:03.103620, 25726938, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:23:19.463928, 25774632, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-01:27:27.733348, 25816036, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:27:31.653454, 25816589, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:30:30.600487, 25855737, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:35:17.391692, 25904981, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-01:44:50.994300, 26007607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-01:48:51.393639, 26057509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-01:50:15.502165, 26390887, ICMP, raw, 62, C2S, 10.255.255.5:0, 197.189.207.28:0, 1:449:9, allow +08/21-01:50:15.505269, 26390889, ICMP, raw, 62, C2S, 10.255.255.5:0, 197.189.207.28:0, 1:449:9, allow +08/21-01:50:15.508379, 26390891, ICMP, raw, 62, C2S, 10.255.255.5:0, 197.189.207.28:0, 1:449:9, allow +08/21-01:50:15.508380, 26390892, ICMP, raw, 62, C2S, 10.255.255.5:0, 197.189.207.28:0, 1:449:9, allow +08/21-01:52:51.443222, 26416066, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-01:55:55.526998, 26448077, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-02:00:16.821160, 26495406, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-02:03:08.578046, 26522967, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:04:26.450426, 26537948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:04:43.081210, 26540498, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:12:52.720186, 26659506, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:15:59.932724, 26701586, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-02:16:16.983542, 26704463, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-02:16:26.288538, 26705809, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:23:50.435894, 26783646, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:50.735894, 26783676, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:50.915825, 26783715, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:51.005976, 26783728, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:51.435936, 26783777, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:52.136111, 26783847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:53.236024, 26783973, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:53.395984, 26784017, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:53.436003, 26784023, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:53.745994, 26784057, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:54.416185, 26784149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:55.476137, 26784425, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:55.866281, 26784495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.116202, 26784515, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.226210, 26784539, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.336276, 26784572, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.446139, 26784589, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.606229, 26784607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.616199, 26784610, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.766249, 26784625, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:56.876300, 26784634, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:57.226226, 26784711, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:57.296193, 26784716, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:23:59.816363, 26784993, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:00.276245, 26785031, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:00.506436, 26785049, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:01.656383, 26785203, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:02.116491, 26785405, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:02.306360, 26785435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:02.406348, 26785449, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:03.306483, 26785666, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:04.066547, 26785753, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:04.586433, 26785881, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:04.806501, 26785909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:04.926612, 26785921, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:05.236721, 26786013, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:05.726506, 26786156, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.066742, 26786430, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.166622, 26786444, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.406518, 26786499, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.446491, 26786500, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.476604, 26786501, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:07.896793, 26786533, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:08.276698, 26786600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:08.876637, 26786722, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:09.606673, 26786860, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:09.736861, 26786879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:09.886705, 26786909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:10.726762, 26787101, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:11.186703, 26787148, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:11.466659, 26787224, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:11.916701, 26787271, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:13.196924, 26787491, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:14.096854, 26787620, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:14.706878, 26787722, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:14.856790, 26787739, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:15.146846, 26787770, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:15.316844, 26787800, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:15.746877, 26788052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:16.417016, 26788243, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:16.486952, 26788287, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:16.757147, 26788317, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:17.936952, 26788501, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:18.747003, 26788618, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:18.907218, 26788647, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:18.937060, 26788667, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:19.587170, 26788726, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:19.787028, 26788752, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:20.187158, 26788785, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:20.187158, 26788786, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:20.737161, 26788910, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:20.767253, 26788911, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:21.767279, 26789094, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:22.277204, 26789185, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:22.367163, 26789205, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:22.497339, 26789215, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:22.907367, 26789274, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:22.997188, 26789304, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:23.747389, 26789388, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:23.797192, 26789391, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:24.477191, 26789474, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:24.527461, 26789489, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:24.757217, 26789550, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:26.557388, 26789820, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:26.707357, 26789851, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:27.617572, 26789944, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:27.677366, 26789948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:27.707336, 26789951, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:27.897430, 26789982, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:28.757484, 26790187, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:28.807563, 26790191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:29.617523, 26790259, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:30.727579, 26790431, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:32.157777, 26790612, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:32.767637, 26790704, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:34.327600, 26790857, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:35.237756, 26790990, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:36.057882, 26791151, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:37.267972, 26791321, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:37.307861, 26791335, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:37.777798, 26791380, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:38.297929, 26791431, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:38.737854, 26791519, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:39.077938, 26791583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:39.517872, 26791629, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:39.687836, 26791656, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:40.107896, 26791738, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:41.347957, 26791924, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:41.367904, 26791935, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:41.737965, 26792001, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:41.958056, 26792014, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:43.448169, 26792201, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:44.468057, 26792326, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:44.848033, 26792396, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:44.968132, 26792416, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:45.008070, 26792418, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:45.968275, 26792562, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:46.248170, 26792595, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:46.278163, 26792621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:47.208147, 26792753, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:47.348177, 26792783, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:48.148159, 26792862, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:48.298407, 26792872, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:50.118347, 26793150, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:50.348294, 26793175, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:50.368352, 26793178, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:50.828305, 26793237, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:52.358366, 26793493, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:53.588441, 26793596, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:54.898471, 26793761, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:55.538571, 26793944, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:55.818519, 26794080, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:56.048453, 26794108, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:56.568572, 26794163, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:57.098662, 26794247, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:57.228540, 26794260, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:57.568586, 26794934, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:59.508540, 26796775, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:59.628850, 26796869, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:24:59.928584, 26797200, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:00.118659, 26797364, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:01.548832, 26797883, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:01.818856, 26797910, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:02.248701, 26797977, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:02.488930, 26798036, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:03.388676, 26798169, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:05.898887, 26798538, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:06.108806, 26798614, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:06.168987, 26798620, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:06.699034, 26798720, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:06.758903, 26798723, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:06.958984, 26798737, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:07.179179, 26798752, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:08.248944, 26798935, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:08.318965, 26798985, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:08.839025, 26799044, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:10.739020, 26799342, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:11.039175, 26799378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:11.359020, 26799485, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:12.589190, 26799666, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:12.689160, 26799673, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:14.559209, 26800007, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:14.819357, 26800035, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:14.939236, 26800050, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:14.969257, 26800054, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:15.719317, 26800125, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:16.229212, 26800394, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:16.499488, 26800438, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:16.989420, 26800485, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:17.059315, 26800495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:17.379314, 26800535, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:17.669381, 26800566, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:18.719554, 26800751, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:18.829412, 26800768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:19.349482, 26800855, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:19.459393, 26800879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:20.899407, 26801113, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:21.909496, 26801239, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:22.519597, 26801313, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:22.769611, 26801334, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:22.839768, 26801344, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:23.469719, 26801473, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:23.539526, 26801480, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:23.739602, 26801511, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:24.279618, 26801578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:25.529607, 26801708, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:25.679648, 26801795, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:26.079669, 26801858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:26.249853, 26801890, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:28.759756, 26802346, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:29.129703, 26802413, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:30.309843, 26802541, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:31.739976, 26802736, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:32.049843, 26802807, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:33.509932, 26803016, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:34.439983, 26803141, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:34.989983, 26803229, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:35.089997, 26803235, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:35.379999, 26803265, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:36.619982, 26803511, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:37.181172, 26803581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:38.490166, 26803760, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:39.160323, 26803876, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:39.440293, 26803914, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:39.480316, 26803930, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:40.380422, 26804039, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:41.520275, 26804161, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:41.620316, 26804167, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:42.420511, 26804292, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:43.130540, 26804350, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:43.340509, 26804375, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:44.490567, 26804606, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:46.590724, 26804889, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:48.400500, 26805082, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:49.150557, 26805195, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:50.070570, 26805336, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:50.290563, 26805363, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:50.500588, 26805499, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:51.340680, 26805685, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:51.370659, 26805690, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:51.510659, 26805701, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:51.900838, 26805750, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:52.100678, 26805779, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:53.020952, 26805875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:53.440671, 26805937, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:54.270802, 26806035, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:54.320735, 26806037, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:55.770932, 26806516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:56.031127, 26806589, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:56.110888, 26806600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:56.531004, 26806667, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:57.240925, 26806948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:57.600906, 26807007, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:58.540970, 26807146, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:58.661029, 26807162, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:58.710986, 26807179, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:58.741015, 26807185, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:58.971030, 26807214, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:59.160986, 26807265, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:25:59.601088, 26807321, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:26:00.221218, 26807382, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:26:00.511221, 26807432, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:26:00.861259, 26807540, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.205.214:0, 1:399:9, allow +08/21-02:28:33.789810, 26831628, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-02:30:32.301512, 27137982, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-02:31:35.224146, 27201670, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:33:18.187013, 27217392, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-02:36:29.935770, 27252958, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:37:48.838677, 27264884, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-02:42:15.629195, 27310628, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-02:44:23.924142, 27330449, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:45:30.935988, 27345234, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-02:51:09.860604, 27413326, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-02:51:44.931447, 27419334, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-02:54:50.148677, 27476174, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-02:55:42.809123, 27487998, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-02:58:28.797394, 27519915, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-02:59:37.929836, 27530871, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-03:00:23.461994, 27541316, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:02:23.566541, 27561079, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:02:31.908296, 27563489, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:04:02.830348, 27579654, ICMP, raw, 88, C2S, 10.255.255.5:0, 192.141.9.110:0, 1:399:9, allow +08/21-03:08:41.531383, 27630749, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:10:42.132618, 27660003, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:10:46.140815, 27660623, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:10:57.177323, 27662605, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:10:58.159396, 27662870, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:01.177534, 27663509, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:02.158732, 27663732, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:13.193244, 27666032, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:13.194006, 27666033, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:17.202930, 27666683, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:11:17.202931, 27666684, ICMP, raw, 64, C2S, 10.255.255.5:0, 202.122.145.90:0, 1:449:9, allow +08/21-03:13:27.654729, 27707554, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-03:13:42.765127, 27709823, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-03:13:47.437792, 27710481, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:16:10.979022, 27736901, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-03:16:36.539962, 27742873, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:17:09.111207, 27747736, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:20:28.597502, 27784625, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-03:24:05.987603, 27818800, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:26:41.093702, 27847875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:27:51.456387, 27859676, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:28:46.928650, 27871618, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:33:59.530836, 27952382, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-03:36:21.796553, 27978721, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:37:57.480189, 27999669, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:38:55.562380, 28010686, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:41:59.785201, 28042762, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:42:01.971217, 28043132, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:43:47.733750, 28060127, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:44:41.616005, 28068920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:47:40.107710, 28102507, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:48:17.234342, 28109123, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:48:49.135656, 28113994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:50:14.758960, 28131490, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-03:51:53.992850, 28148024, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:52:31.434438, 28154612, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-03:53:13.611309, 28162161, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:53:17.783426, 28162965, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:53:20.540780, 28163296, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-03:57:24.462453, 28213293, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-03:58:22.968054, 28223537, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-03:58:58.769130, 28228683, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:00:15.252631, 28244935, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:00:45.243588, 28250048, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:01:07.204589, 28254621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:01:27.705279, 28258211, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:03:01.449023, 28276995, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/21-04:05:09.974030, 28310011, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:05:21.564578, 28312299, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:08:34.491999, 28346976, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:10:11.515918, 28365533, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:10:16.278568, 28366516, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:11:07.879033, 28395466, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-04:12:34.081559, 28444996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:12:45.102128, 28446857, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:13:52.664539, 28457497, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:17:14.672438, 28494406, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:17:36.193219, 28497459, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:19:43.508324, 28518792, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:21:14.311695, 28538332, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:21:23.224941, 28539732, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:21:35.844139, 28541714, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:23:52.608197, 28573652, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:24:35.293029, 28581136, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-04:26:31.406858, 28604026, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-04:29:33.501584, 28642269, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-04:31:43.608833, 28665635, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-04:31:43.608834, 28665636, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-04:31:43.608834, 28665637, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-04:31:43.608834, 28665638, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-04:31:43.608834, 28665639, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-04:31:44.596639, 28665748, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:31:58.417269, 28668087, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:32:50.039254, 28676881, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:32:55.614902, 28677743, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:37:01.929147, 28721522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:38:36.169687, 28739261, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:39:39.495187, 28749281, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:40:07.916355, 28757248, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:45:15.278274, 28810664, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:46:05.630272, 28818953, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-04:51:45.693799, 28889347, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-04:55:29.372003, 28935369, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:55:32.420162, 28935770, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-04:58:25.764676, 29060937, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-04:58:35.359657, 29062358, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-04:58:48.307571, 29064528, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-05:01:09.730686, 29095293, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-05:01:13.469830, 29096121, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-05:03:33.221303, 29123974, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:05:00.614746, 29147149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:06:54.211863, 29200869, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-05:07:08.159730, 29207555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:08:12.585843, 29232622, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-05:08:16.342412, 29234943, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:09:15.694762, 29259513, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-05:10:28.591839, 29308029, ICMP, raw, 64, C2S, 10.255.255.5:0, 218.60.22.67:0, 1:449:9, allow +08/21-05:10:28.597559, 29308032, ICMP, raw, 64, C2S, 10.255.255.5:0, 218.60.22.67:0, 1:449:9, allow +08/21-05:10:32.593796, 29309656, ICMP, raw, 64, C2S, 10.255.255.5:0, 218.60.22.67:0, 1:449:9, allow +08/21-05:10:32.598732, 29309657, ICMP, raw, 64, C2S, 10.255.255.5:0, 218.60.22.67:0, 1:449:9, allow +08/21-05:12:21.442049, 29357134, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:13:13.644202, 29377509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:13:36.165198, 29386071, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:19:38.129119, 29541143, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:20:35.181357, 29567041, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:21:54.376668, 29603810, ICMP, raw, 72, C2S, 10.255.255.5:0, 164.113.200.5:0, 1:449:9, allow +08/21-05:21:59.396588, 29606040, ICMP, raw, 72, C2S, 10.255.255.5:0, 164.113.200.5:0, 1:449:9, allow +08/21-05:22:04.456921, 29608185, ICMP, raw, 72, C2S, 10.255.255.5:0, 164.113.200.5:0, 1:449:9, allow +08/21-05:22:43.416603, 29624543, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:22:51.246878, 29627583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:23:51.667254, 29660320, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-05:24:52.631862, 29684516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:26:10.827146, 29719368, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.150.112.182:0, 1:449:9, allow +08/21-05:26:11.081148, 29719489, ICMP, raw, 62, C2S, 10.255.255.5:0, 107.150.112.182:0, 1:449:9, allow +08/21-05:27:35.937911, 29751738, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:28:04.848965, 29763330, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:29:15.601762, 29794642, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:29:27.614034, 29800914, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-05:29:57.103666, 29812216, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:30:57.635820, 29837337, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:32:22.779408, 29872243, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/21-05:34:33.214344, 29930756, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:37:47.831450, 30029226, ICMP, raw, 576, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:47.950792, 30029247, ICMP, raw, 576, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:48.130272, 30029281, ICMP, raw, 576, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:48.428486, 30029345, ICMP, raw, 576, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:48.895350, 30029399, ICMP, raw, 576, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:52.263139, 30031933, ICMP, raw, 158, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:52.562241, 30031985, ICMP, raw, 158, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:53.163828, 30032050, ICMP, raw, 158, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:54.364386, 30032876, ICMP, raw, 158, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:54.587162, 30033599, ICMP, raw, 134, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:55.211329, 30034090, ICMP, raw, 81, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:55.310433, 30034104, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:56.288288, 30034272, ICMP, raw, 81, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:56.637063, 30034380, ICMP, raw, 82, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:57.338982, 30034558, ICMP, raw, 84, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:57.710337, 30034751, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:58.310465, 30034846, ICMP, raw, 84, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:58.434985, 30034867, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:37:58.740242, 30034913, ICMP, raw, 86, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:01.411891, 30037589, ICMP, raw, 86, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:01.506834, 30037599, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:01.558253, 30037610, ICMP, raw, 88, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:04.513538, 30039953, ICMP, raw, 88, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:04.607649, 30039963, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:07.147775, 30040511, ICMP, raw, 90, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:07.610724, 30040587, ICMP, raw, 90, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:07.710788, 30040597, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:10.711889, 30043285, ICMP, raw, 90, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:38:10.812146, 30043300, ICMP, raw, 218, C2S, 10.255.255.5:0, 142.251.39.106:0, 1:449:9, allow +08/21-05:39:12.000224, 30077440, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-05:44:37.367905, 30230198, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-05:52:07.300407, 30437609, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-05:52:50.827279, 30464683, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:53:16.178401, 30477010, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-05:58:43.401208, 30663270, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:58:46.951301, 30666385, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:58:54.851595, 30669775, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:59:04.352188, 30674707, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:59:10.500416, 30679534, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-05:59:11.682275, 30680583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:59:43.443485, 30701015, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-05:59:58.543972, 30709865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-06:00:06.704436, 30715351, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-06:00:09.574620, 30715876, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-06:00:41.745804, 30740428, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.61.171:0, 1:399:9, allow +08/21-06:03:28.518225, 30870296, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:11:50.272010, 31165636, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:14:48.527127, 31270171, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:15:28.900666, 31289127, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:15:31.520739, 31290813, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:18:26.147633, 31382630, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:21:50.635616, 31493949, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:24:20.095840, 31565589, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-06:24:20.095840, 31565590, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-06:24:25.841769, 31567642, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-06:26:03.351368, 31666944, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:26:59.867542, 31707181, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-06:27:57.209868, 31739742, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:33:11.772209, 31942106, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:36:42.740275, 32101616, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-06:36:42.740275, 32101617, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-06:37:24.592384, 32131171, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:38:01.760162, 32148362, ICMP, raw, 62, C2S, 10.255.255.5:0, 209.209.59.230:0, 1:449:9, allow +08/21-06:38:01.965275, 32148392, ICMP, raw, 62, C2S, 10.255.255.5:0, 209.209.59.230:0, 1:449:9, allow +08/21-06:38:01.965275, 32148393, ICMP, raw, 62, C2S, 10.255.255.5:0, 209.209.59.230:0, 1:449:9, allow +08/21-06:38:02.013053, 32148400, ICMP, raw, 62, C2S, 10.255.255.5:0, 209.209.59.230:0, 1:449:9, allow +08/21-06:39:36.587489, 32271437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-06:41:07.210940, 32360594, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:41:43.612295, 32391450, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-06:41:58.522867, 32403165, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:42:59.135333, 32439638, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:43:01.514124, 32441039, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:43:02.501971, 32441175, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-06:43:15.594980, 32447885, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:16.711678, 32448125, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:18.879066, 32449360, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:18.879186, 32449361, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:20.066707, 32450077, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:20.066707, 32450078, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:25.064797, 32452237, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:25.064966, 32452238, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:43:29.286410, 32454206, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:43:30.070356, 32454553, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-06:46:03.011134, 32552094, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.2.165:0, 1:449:9, allow +08/21-06:46:46.624155, 32578294, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:47:37.816078, 32673864, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:48:58.482331, 32903253, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-06:49:58.661314, 33151481, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.79.37:0, 1:449:9, allow +08/21-06:49:58.726256, 33151722, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.79.37:0, 1:449:9, allow +08/21-06:49:58.760262, 33151828, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.79.37:0, 1:449:9, allow +08/21-06:53:12.939193, 33392373, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:55:26.824425, 33518731, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:57:15.188615, 33623484, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-06:57:25.559153, 33646756, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-06:58:39.031993, 33798398, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-06:59:10.033205, 33820275, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:00:40.436664, 33939606, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:06:22.180074, 34182444, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:08:21.914968, 34242498, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:08:29.335167, 34245293, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:08:33.682467, 34249593, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/21-07:08:33.683426, 34249595, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/21-07:11:14.254499, 34353567, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-07:11:14.254499, 34353568, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-07:14:17.868739, 34474142, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:17:22.615858, 34606382, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.81.216.55:0, 1:399:9, allow +08/21-07:17:39.716544, 34616518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:20:05.516701, 34699625, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:06.199965, 34699885, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:07.293365, 34700614, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:07.293365, 34700615, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:10.205484, 34702924, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:10.205484, 34702925, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:15.327405, 34704487, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:15.327405, 34704488, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:20.216470, 34708762, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-07:20:42.073724, 34718534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:22:26.637846, 34772525, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:23:42.430887, 34814786, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.104.13.193:0, 1:399:9, allow +08/21-07:26:19.007185, 34929522, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.104.13.193:0, 1:399:9, allow +08/21-07:26:49.418044, 34957432, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:27:23.583143, 35010941, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-07:27:23.587554, 35010960, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-07:28:51.513016, 35115827, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:29:08.103554, 35123594, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.130.226:0, 1:399:9, allow +08/21-07:29:37.044700, 35137176, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:35:47.169159, 35395783, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:36:02.489741, 35409131, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-07:37:23.333215, 35465231, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:38:26.165269, 35510109, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:39:10.647284, 35552118, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:40:56.501280, 35672849, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:41:42.423027, 35768371, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:42:00.413689, 35801640, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:42:29.384782, 35849789, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:44:52.360428, 36008770, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:46:35.484563, 36087284, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:49:00.380214, 36365521, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:49:41.341786, 36390342, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:50:31.560703, 36417930, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:32.561027, 36418164, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:33.643939, 36418451, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:33.643939, 36418453, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:36.611402, 36421174, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:36.611402, 36421175, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:41.629223, 36424601, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:50:41.629223, 36424602, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-07:52:30.948359, 36543843, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-07:53:57.811828, 36625248, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:54:14.992403, 36642779, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-07:56:45.008347, 36748147, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:56:53.288696, 36752070, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/21-07:56:53.288697, 36752071, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/21-07:57:00.209226, 36757166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-07:57:52.220930, 36823402, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-08:00:04.116436, 36930224, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:00:16.734162, 36934898, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-08:01:41.078238, 36974625, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-08:03:33.884602, 37072625, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:05:34.437403, 37171746, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:35.527731, 37176661, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:36.499254, 37180080, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:36.499255, 37180081, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:39.521932, 37184043, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:39.521932, 37184044, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:44.539539, 37185385, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:44.539539, 37185386, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:05:49.438986, 37189633, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:08:16.460959, 37359176, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/21-08:08:19.475964, 37361956, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/21-08:08:25.625853, 37367213, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:10:58.811832, 37512573, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:11:59.674343, 37568920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:19.275147, 37586564, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:22.025131, 37588858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:22.155179, 37588904, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:22.385079, 37589054, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:31.825493, 37596323, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:37.215629, 37607999, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:44.725929, 37615621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-08:12:49.666123, 37620472, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:12:51.166183, 37621192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:13:04.306811, 37630332, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:13:14.257163, 37638701, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.234:0, 1:399:9, allow +08/21-08:15:35.684497, 37754597, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-08:15:35.986917, 37754673, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-08:15:38.018462, 37755005, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-08:16:43.735840, 37801553, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:18:37.149822, 37871167, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:18:55.250570, 37883233, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:21:29.606548, 37982243, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:22:15.268480, 38005427, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:24:23.858820, 38141826, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-08:24:29.523690, 38146145, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:28:21.732766, 38301015, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:32:06.356532, 38562481, ICMP, raw, 72, C2S, 10.255.255.5:0, 41.77.138.90:0, 1:449:9, allow +08/21-08:33:09.371635, 38607583, ICMP, raw, 72, C2S, 10.255.255.5:0, 209.58.168.107:0, 1:449:9, allow +08/21-08:34:39.166999, 38667613, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.44.2:0, 1:449:9, allow +08/21-08:35:26.999444, 38704863, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:36:27.861644, 38751391, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-08:36:31.554501, 38768074, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.160.2:0, 1:449:9, allow +08/21-08:38:31.053024, 39086683, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-08:38:31.053024, 39086684, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-08:38:50.885730, 39107391, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.48.225.229:0, 1:449:9, allow +08/21-08:38:54.893606, 39111133, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.48.225.229:0, 1:449:9, allow +08/21-08:39:18.473839, 39123910, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.166.2:0, 1:449:9, allow +08/21-08:39:59.348124, 39169032, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.91.47.2:0, 1:449:9, allow +08/21-08:40:33.231427, 39194483, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-08:40:47.323313, 39201915, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-08:40:51.262351, 39204015, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:41:47.417383, 39242966, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.58.118.202:0, 1:449:9, allow +08/21-08:42:33.186350, 39268415, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:42:45.246551, 39274520, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-08:44:08.171346, 39334429, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.161.2:0, 1:449:9, allow +08/21-08:44:32.979641, 39351636, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.169.64.13:0, 1:449:9, allow +08/21-08:44:41.641515, 39361503, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:45:01.319995, 39382607, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-08:45:14.642409, 39395581, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:45:23.484937, 39412712, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-08:46:06.454730, 39446822, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:47:13.697305, 39500572, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:48:07.291068, 39550864, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:48:07.291068, 39550865, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:48:07.291069, 39550866, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:48:07.291069, 39550867, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-08:48:12.843520, 39554706, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.91.46.2:0, 1:449:9, allow +08/21-08:49:54.788331, 39664646, ICMP, raw, 62, C2S, 10.255.255.5:0, 218.11.1.2:0, 1:449:9, allow +08/21-08:49:54.810300, 39664657, ICMP, raw, 62, C2S, 10.255.255.5:0, 218.11.1.2:0, 1:449:9, allow +08/21-08:49:59.058812, 39672180, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.45.2:0, 1:449:9, allow +08/21-08:51:00.978754, 39749255, ICMP, raw, 62, C2S, 10.255.255.5:0, 111.203.180.219:0, 1:449:9, allow +08/21-08:51:15.156533, 39767694, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:51:29.046952, 39786687, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.103.47.2:0, 1:449:9, allow +08/21-08:52:57.021137, 39858897, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-08:53:00.028532, 39861446, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.162.2:0, 1:449:9, allow +08/21-08:54:11.183441, 39921785, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-08:55:41.116971, 39998126, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-08:56:16.172164, 40025425, ICMP, raw, 72, C2S, 10.255.255.5:0, 94.136.160.2:0, 1:449:9, allow +08/21-08:57:19.049365, 40078437, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.126.152.131:0, 1:449:9, allow +08/21-08:57:26.892513, 40084223, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.126.152.131:0, 1:449:9, allow +08/21-08:58:24.676420, 40179902, ICMP, raw, 72, C2S, 10.255.255.5:0, 158.58.172.238:0, 1:449:9, allow +08/21-09:00:48.448244, 40320254, ICMP, raw, 62, C2S, 10.255.255.5:0, 154.55.139.226:0, 1:449:9, allow +08/21-09:01:26.475389, 40372525, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.136.161.2:0, 1:449:9, allow +08/21-09:01:53.123719, 40399661, ICMP, raw, 62, C2S, 10.255.255.5:0, 115.220.3.36:0, 1:449:9, allow +08/21-09:01:53.288763, 40399702, ICMP, raw, 62, C2S, 10.255.255.5:0, 115.220.3.36:0, 1:449:9, allow +08/21-09:01:53.362691, 40399723, ICMP, raw, 62, C2S, 10.255.255.5:0, 115.220.3.36:0, 1:449:9, allow +08/21-09:01:53.523736, 40399814, ICMP, raw, 62, C2S, 10.255.255.5:0, 115.220.3.36:0, 1:449:9, allow +08/21-09:02:32.263195, 40441918, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:03:40.305837, 40499995, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:03:42.450713, 40500835, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.250.0.204:0, 1:449:9, allow +08/21-09:03:47.467316, 40506616, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.250.0.204:0, 1:449:9, allow +08/21-09:05:08.419504, 40589829, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:06:19.092335, 40660768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-09:06:26.022198, 40666311, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:07:05.914292, 40705227, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.194.223.80:0, 1:449:9, allow +08/21-09:07:10.924514, 40713266, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.194.223.80:0, 1:449:9, allow +08/21-09:07:16.154358, 40718122, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:07:51.001582, 40747752, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.236.154.140:0, 1:449:9, allow +08/21-09:07:56.009483, 40762717, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.236.154.140:0, 1:449:9, allow +08/21-09:08:54.658384, 40828873, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:09:25.268183, 40855675, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-09:09:54.514635, 40937664, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.83.193.244:0, 1:449:9, allow +08/21-09:09:59.525718, 40941072, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.83.193.244:0, 1:449:9, allow +08/21-09:10:28.241775, 40961968, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:10:35.531998, 40973446, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:10:36.630044, 40975523, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:10:37.653440, 40976656, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:10:37.653491, 40976657, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:10:40.626898, 40982016, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:10:40.626898, 40982017, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-09:11:08.232857, 40998142, ICMP, raw, 107, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:08.232858, 40998143, ICMP, raw, 92, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:08.232858, 40998144, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:08.232858, 40998145, ICMP, raw, 68, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:08.232858, 40998146, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:08.233031, 40998147, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:11.232803, 40999295, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:11.232803, 40999296, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:11.232803, 40999297, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:14.233008, 41001059, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:14.233008, 41001060, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:14.233008, 41001061, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:17.233195, 41002053, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:17.233195, 41002054, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:17.233196, 41002055, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:20.233646, 41004656, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:20.233647, 41004657, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:20.233647, 41004658, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:23.233611, 41005872, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:23.233611, 41005873, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:23.233611, 41005874, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:26.233769, 41008387, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:26.233770, 41008388, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:26.233770, 41008389, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:29.233988, 41013021, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:29.233988, 41013022, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:29.233988, 41013023, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:32.234149, 41021827, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:32.234149, 41021828, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:32.234150, 41021829, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:35.234698, 41029391, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:35.234698, 41029392, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:35.234755, 41029394, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:38.234803, 41035939, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:38.234886, 41035940, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:38.234886, 41035941, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:41.235063, 41041117, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:41.235064, 41041119, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:41.235064, 41041120, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:44.235012, 41043271, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:44.235012, 41043272, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:44.235012, 41043273, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:47.235312, 41045757, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:11:47.235312, 41045758, ICMP, raw, 131, C2S, 185.93.41.55:0, 172.65.229.194:0, 1:399:9, allow +08/21-09:12:00.322174, 41054618, ICMP, raw, 96, C2S, 192.178.241.65:0, 185.93.41.55:0, 1:449:9, allow +08/21-09:12:00.842291, 41054817, ICMP, raw, 56, C2S, 192.178.241.66:0, 185.93.41.55:0, 1:449:9, allow +08/21-09:12:34.798485, 41091039, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:34.798485, 41091040, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:34.798486, 41091041, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:34.798486, 41091042, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:34.798486, 41091043, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:34.798486, 41091044, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:38.168402, 41093649, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:38.168402, 41093650, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:38.168402, 41093651, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:42.468633, 41097521, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:42.468633, 41097522, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:50.149370, 41107144, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:12:50.149370, 41107145, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:17.327443, 41122498, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.180.232.194:0, 1:449:9, allow +08/21-09:13:22.342804, 41126876, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.180.232.194:0, 1:449:9, allow +08/21-09:13:22.891504, 41127571, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:22.891504, 41127572, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:22.891504, 41127573, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:22.891504, 41127574, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:22.891504, 41127575, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:26.561455, 41131994, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:30.221781, 41134642, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:13:35.462300, 41138453, ICMP, raw, 68, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-09:14:31.931426, 41180190, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:14:44.491887, 41196514, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:44.571773, 41196564, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:44.842231, 41196637, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:46.301901, 41197383, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:46.521915, 41197479, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:47.441969, 41197950, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:47.621928, 41198059, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:48.911998, 41198632, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:49.582145, 41199159, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:50.441950, 41199942, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:50.872129, 41200277, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:51.352149, 41200636, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:51.852131, 41200981, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:52.192299, 41201329, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:52.581998, 41201565, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:52.912268, 41201867, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:54.792339, 41203644, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:55.192237, 41203830, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:55.542201, 41204050, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:55.902179, 41204515, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:56.032346, 41204609, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:56.642473, 41205497, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:56.822357, 41205923, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:56.842254, 41205938, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:56.842255, 41205939, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:57.662249, 41208463, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:57.692477, 41208546, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:58.182260, 41209650, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:14:59.542649, 41211739, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:01.712487, 41221343, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:02.742427, 41222544, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:02.742427, 41222545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:02.892776, 41222630, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:03.472748, 41223198, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:04.972556, 41224275, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:05.302689, 41224539, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:05.372533, 41224591, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:05.602690, 41224772, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:05.742592, 41224913, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:06.172655, 41225150, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:07.782607, 41225914, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:07.862918, 41225935, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:09.122914, 41226309, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:09.902802, 41226554, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:10.543042, 41227199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:10.842849, 41227407, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:11.592819, 41227839, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:11.803030, 41228187, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:12.992924, 41229242, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:14.282944, 41230266, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:14.513000, 41230375, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:14.742999, 41230427, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:16.463103, 41231309, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.263184, 41232661, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.293008, 41232687, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.323343, 41232688, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.333126, 41232690, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.543240, 41232847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:17.853028, 41233586, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:18.693157, 41234183, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:18.853360, 41234258, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:19.173156, 41234422, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:19.213285, 41234446, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:19.493265, 41235192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:21.003250, 41237471, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:21.033152, 41237537, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:22.033471, 41238909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:22.273241, 41238970, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:23.273339, 41239228, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:23.653587, 41239398, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:24.263367, 41239593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:25.503385, 41241527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:25.583333, 41241593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:25.783472, 41241787, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:25.843567, 41241834, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:25.923370, 41241865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:26.053529, 41241933, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:26.753442, 41242265, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:27.343362, 41242869, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:27.593453, 41243416, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:27.633514, 41243532, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:29.863475, 41256208, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:30.033630, 41256951, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:31.173572, 41262762, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:32.243835, 41264821, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:32.323823, 41264831, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:34.094007, 41265308, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:34.273779, 41265377, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:34.743844, 41265655, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:34.763791, 41265658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:34.934108, 41265696, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:35.423910, 41265843, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:35.853780, 41266055, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:35.933845, 41266104, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:36.123831, 41266151, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:37.223740, 41269361, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:37.803793, 41271578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:38.353776, 41273083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:39.853962, 41276109, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:40.183910, 41276191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:40.243942, 41276201, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:40.443964, 41276631, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:41.373962, 41279152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:41.613971, 41279324, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:41.863954, 41279695, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:42.663980, 41280880, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:42.824040, 41281251, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:43.204146, 41282017, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:43.834307, 41282727, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:43.974192, 41282815, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:44.344128, 41282968, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:44.644369, 41283054, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:45.214248, 41283229, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:45.294234, 41283251, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:45.984187, 41283490, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:46.074290, 41283522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:48.024361, 41284055, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:49.074518, 41284868, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:49.454481, 41284954, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:49.644324, 41284997, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:50.924354, 41285535, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:53.484493, 41286934, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:54.464523, 41287371, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:54.524557, 41287518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:55.084665, 41287689, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:55.744544, 41288042, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:56.634554, 41288318, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:57.144608, 41288519, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:57.254559, 41288581, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:57.864759, 41288875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:58.164670, 41289188, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:58.424673, 41289271, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:58.704671, 41289407, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:15:59.404687, 41289813, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:00.845110, 41290527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:02.004765, 41291590, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:02.354867, 41292058, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:02.394743, 41292099, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:02.414802, 41292130, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:04.394891, 41294682, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:05.714865, 41296497, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:05.794887, 41296603, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:06.604935, 41297495, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:06.844926, 41297797, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:06.964974, 41297942, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:07.444934, 41298529, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:07.464945, 41298570, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:08.215023, 41299875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:08.794996, 41300642, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:09.085057, 41301085, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:09.125024, 41301126, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:09.255056, 41301294, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:09.305056, 41301343, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:10.365152, 41302865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:10.985132, 41303722, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:11.355141, 41304338, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:12.095160, 41307076, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:12.795223, 41309191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:13.095160, 41310170, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:13.955223, 41312169, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:14.620115, 41314233, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.127.126.165:0, 1:449:9, allow +08/21-09:16:14.665275, 41314255, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:15.255268, 41315379, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:15.565221, 41315845, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:15.745285, 41315903, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:15.835491, 41315919, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:17.565638, 41316756, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:18.385694, 41316908, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:18.935563, 41317156, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:19.595855, 41317450, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:19.875746, 41317522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:20.035533, 41317555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:20.160641, 41317591, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.127.126.165:0, 1:449:9, allow +08/21-09:16:20.855540, 41317865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:21.245626, 41317974, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:21.515505, 41318038, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:21.805860, 41318175, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:22.205654, 41318261, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:22.695792, 41318377, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:24.145668, 41318772, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:24.425682, 41318840, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:24.805696, 41319079, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:25.415896, 41319159, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:25.945735, 41319435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:26.255771, 41319614, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:27.175937, 41319956, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:27.960574, 41320177, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:28.065815, 41320186, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:28.325823, 41320231, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:29.435948, 41320660, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:29.615881, 41320717, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:29.796028, 41320805, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:29.855939, 41320809, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:30.345951, 41321066, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:30.825871, 41321261, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:31.106008, 41321465, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:32.255895, 41321759, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:32.436033, 41321794, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:32.966040, 41321913, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:33.756067, 41322287, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:33.776013, 41322294, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:34.426252, 41322450, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:34.466132, 41322460, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:35.406119, 41322788, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:35.606268, 41322846, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:36.066131, 41323084, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:36.326381, 41323128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:37.636171, 41323434, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:38.246464, 41323690, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:38.626267, 41323853, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:38.666234, 41323879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:38.706220, 41323917, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:38.886261, 41324038, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:39.226560, 41324311, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:39.646230, 41324782, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:40.266496, 41325772, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:40.706321, 41326152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:40.806491, 41326174, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:41.926693, 41327011, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:41.996631, 41327061, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:42.816653, 41327498, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:43.876398, 41328312, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:45.566607, 41329171, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:45.686484, 41329276, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:46.256677, 41329602, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:46.326668, 41329696, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:47.506706, 41330654, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:48.636609, 41331431, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.546688, 41332798, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.556666, 41332805, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.816722, 41332960, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:16:49.827195, 41332972, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.866674, 41332989, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.976840, 41333001, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:49.976841, 41333002, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:50.046873, 41333026, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:50.766647, 41333282, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:51.416696, 41333556, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:52.326786, 41334244, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:52.536746, 41334296, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:53.956884, 41334744, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:53.986898, 41334745, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:54.346879, 41334814, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:54.366841, 41334819, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:54.576866, 41334904, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:54.967038, 41334999, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:55.027137, 41335021, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:55.086911, 41335028, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:55.247204, 41335060, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:55.746874, 41335244, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:16:56.926934, 41335925, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.2.172:0, 1:399:9, allow +08/21-09:18:07.089332, 41449918, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:08.086487, 41450381, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:09.085603, 41451009, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:09.085603, 41451010, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:12.143419, 41453520, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:12.143691, 41453521, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-09:18:23.711388, 41465016, ICMP, raw, 114, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:399:9, allow +08/21-09:20:00.919587, 41691922, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.144.59.87:0, 1:449:9, allow +08/21-09:20:05.920674, 41695305, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.144.59.87:0, 1:449:9, allow +08/21-09:20:57.099715, 41734111, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.16:0, 1:402:16, allow +08/21-09:22:22.339776, 41870973, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-09:22:29.669913, 41879192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:22:59.456132, 41910645, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.118.11.184:0, 1:449:9, allow +08/21-09:23:04.458331, 41913406, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.118.11.184:0, 1:449:9, allow +08/21-09:23:37.042962, 42017677, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-09:23:57.573389, 42083701, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:25:57.865516, 42334458, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.136:0, 1:402:16, allow +08/21-09:26:14.648788, 42369548, ICMP, raw, 72, C2S, 10.255.255.5:0, 35.182.141.67:0, 1:449:9, allow +08/21-09:26:21.997364, 42383829, ICMP, raw, 72, C2S, 10.255.255.5:0, 35.182.141.67:0, 1:449:9, allow +08/21-09:27:19.441483, 42455538, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:30:15.358604, 42678578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:30:45.649740, 42698638, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:31:51.003555, 42917250, ICMP, raw, 112, C2S, 10.255.255.5:0, 8.45.176.250:0, 1:449:9, allow +08/21-09:33:29.760331, 43041300, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-09:33:43.236528, 43058060, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:34:46.564261, 43142435, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.8.28.28:0, 1:449:9, allow +08/21-09:34:52.971410, 43149130, ICMP, raw, 72, C2S, 10.255.255.5:0, 3.8.28.28:0, 1:449:9, allow +08/21-09:36:19.507626, 43265733, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.250.111.159:0, 1:449:9, allow +08/21-09:36:24.541958, 43276597, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.250.111.159:0, 1:449:9, allow +08/21-09:38:32.191729, 43511471, ICMP, raw, 36, C2S, 172.104.241.110:0, 185.93.41.55:0, 1:29456:3, allow +08/21-09:38:43.545332, 43535285, ICMP, raw, 34, C2S, 172.104.94.121:0, 185.93.41.55:0, 1:29456:3, allow +08/21-09:39:53.658270, 43602610, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.210.54.119:0, 1:449:9, allow +08/21-09:39:58.672424, 43615310, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.210.54.119:0, 1:449:9, allow +08/21-09:40:55.345487, 43669083, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:55.404021, 43669090, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:55.535627, 43669165, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:55.691481, 43669224, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:55.819476, 43669329, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:56.054782, 43669505, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:56.386410, 43670241, ICMP, raw, 56, C2S, 10.255.255.2:0, 193.108.119.216:0, 1:449:9, allow +08/21-09:40:58.473648, 43672416, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-09:40:58.473648, 43672417, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-09:42:07.906277, 43773894, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:42:32.287142, 43819467, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:46:53.157355, 44295053, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:46:54.869927, 44300989, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-09:47:30.098764, 44349536, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:48:08.610237, 44476962, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:48:47.925701, 44640830, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:49:07.096581, 44666859, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-09:49:07.096726, 44666860, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-09:50:05.113442, 44737478, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.233.18.96:0, 1:449:9, allow +08/21-09:50:10.121742, 44741160, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.233.18.96:0, 1:449:9, allow +08/21-09:50:19.145539, 44749226, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:50:32.199802, 44757032, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:32.672194, 44757157, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:33.756922, 44757726, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:33.756922, 44757727, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:41.593735, 44763459, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:41.593735, 44763460, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:50:46.600689, 44766961, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-09:51:02.127362, 44833411, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-09:51:36.900966, 44880550, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.48.42.141:0, 1:449:9, allow +08/21-09:51:41.902240, 44883388, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.48.42.141:0, 1:449:9, allow +08/21-09:52:29.810741, 44938660, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.206.1.22:0, 1:399:9, allow +08/21-09:52:29.810742, 44938661, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.206.1.22:0, 1:399:9, allow +08/21-09:52:31.620733, 44939409, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:52:32.810856, 44940533, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.206.1.22:0, 1:399:9, allow +08/21-09:52:54.423868, 44987396, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-09:54:14.364591, 45287355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:54:16.471428, 45324365, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-09:55:12.207031, 45590235, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:55:21.646016, 45601555, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:21.646017, 45601556, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:21.646017, 45601557, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:21.678699, 45601562, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:21.949144, 45601652, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:22.360530, 45601795, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:23.009530, 45601967, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:24.529451, 45603682, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:27.683138, 45605216, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:31.379347, 45611361, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:31.379347, 45611362, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:31.379347, 45611363, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:31.379347, 45611364, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:33.187146, 45612985, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/21-09:55:58.069044, 45640119, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-09:56:08.569200, 45652950, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:56:39.784394, 45694330, ICMP, raw, 96, C2S, 192.178.241.119:0, 185.93.41.55:0, 1:449:9, allow +08/21-09:56:39.790289, 45694385, ICMP, raw, 56, C2S, 192.178.243.132:0, 185.93.41.55:0, 1:449:9, allow +08/21-09:56:39.851630, 45694716, ICMP, raw, 96, C2S, 172.253.64.113:0, 185.93.41.55:0, 1:449:9, allow +08/21-09:56:40.500598, 45695660, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-09:56:48.600739, 45702208, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-10:01:57.305830, 46070128, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:01:58.268157, 46070610, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:01:59.259772, 46071323, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:01:59.261473, 46071325, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:02:02.257859, 46074187, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:02:02.257860, 46074188, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:02:07.307913, 46078216, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:02:07.309763, 46078217, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:02:12.406955, 46081732, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-10:03:44.986999, 46155201, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:06:25.023300, 46418750, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-10:09:10.589947, 46889367, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:09:13.296869, 46890958, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/21-10:09:13.296870, 46890960, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.136:0, 1:402:16, allow +08/21-10:09:15.403064, 46893500, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:15.403064, 46893501, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:15.499283, 46893553, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:15.499283, 46893554, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:20.465424, 46899011, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:20.509329, 46899042, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:09:43.394751, 46935288, ICMP, raw, 62, C2S, 10.255.255.5:0, 116.211.239.113:0, 1:449:9, allow +08/21-10:09:43.403453, 46935289, ICMP, raw, 62, C2S, 10.255.255.5:0, 116.211.239.113:0, 1:449:9, allow +08/21-10:09:43.664456, 46935413, ICMP, raw, 62, C2S, 10.255.255.5:0, 116.211.239.113:0, 1:449:9, allow +08/21-10:11:05.954519, 47017815, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-10:11:52.476202, 47088728, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-10:12:03.176612, 47105482, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:14:34.999724, 47402256, ICMP, raw, 120, C2S, 192.178.241.181:0, 185.93.41.55:0, 1:449:9, allow +08/21-10:14:35.005363, 47402258, ICMP, raw, 56, C2S, 192.178.241.146:0, 185.93.41.55:0, 1:449:9, allow +08/21-10:15:11.144187, 47455715, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:17:13.598735, 47687132, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-10:17:26.819265, 47717022, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:20:27.946357, 48117721, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-10:23:53.668410, 48475309, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-10:24:15.149547, 48489446, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-10:24:15.149548, 48489447, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-10:25:08.847603, 48540688, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:25:40.876011, 48577143, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-10:26:09.733618, 48595874, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/21-10:26:09.733619, 48595875, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/21-10:27:08.042061, 48657678, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/21-10:27:15.202268, 48663920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:27:49.505186, 48687258, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-10:28:08.471151, 48702247, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-10:30:41.520647, 48899988, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:30:50.600772, 48908429, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:31:06.291366, 48933527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:31:17.841936, 48947963, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-10:31:19.951943, 48949372, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:31:25.412166, 48959316, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:31:25.742028, 48960199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:31:27.242239, 48963860, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-10:32:08.814039, 49004650, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:32:13.614264, 49008793, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:32:21.354318, 49020647, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:32:30.324639, 49033731, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:32:33.426226, 49042676, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:32:44.955462, 49065697, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:32:47.965359, 49067210, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.143.231:0, 1:399:9, allow +08/21-10:35:42.238198, 49775534, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:42.238199, 49775535, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:42.238199, 49775536, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:42.238199, 49775537, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:42.238199, 49775539, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:48.028392, 49787247, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:48.028392, 49787248, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:48.028393, 49787249, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:48.028393, 49787250, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:48.028393, 49787251, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:51.998529, 49794095, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:51.998529, 49794096, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:51.998529, 49794097, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:51.998529, 49794098, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:51.998529, 49794099, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-10:35:54.002777, 49795785, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:37:16.465967, 50029050, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:37:51.257252, 50147971, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:40:01.003103, 50546939, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:40:02.055445, 50550256, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:40:03.079616, 50556146, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:40:03.079685, 50556149, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.134:0, 1:402:16, allow +08/21-10:44:13.805780, 51234723, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-10:44:13.805832, 51234730, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-10:45:41.995724, 51505654, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-10:47:43.120600, 51932940, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:48:51.233588, 52197947, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:49:31.314639, 52340340, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:53:04.682922, 53689760, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-10:54:13.588247, 54003320, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-10:54:13.588247, 54003321, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.132:0, 1:402:16, allow +08/21-10:55:42.829146, 54562591, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-11:10:23.940202, 10, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:10:23.940202, 10, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:10:23.940203, 11, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:10:23.940203, 11, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:10:23.940473, 12, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:23.940474, 13, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:26.944965, 634, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:10:26.944965, 634, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:10:26.944965, 635, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:10:26.944965, 635, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:10:26.945132, 636, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:26.945132, 637, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:28.270778, 1042, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:10:28.270778, 1042, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:10:29.655920, 1475, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:29.655920, 1475, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:29.656195, 1476, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:31.272704, 2473, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:10:31.272704, 2473, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:10:32.440055, 2950, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:10:32.440055, 2950, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:10:32.440325, 2952, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:10:32.657201, 3028, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:32.657201, 3028, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:32.657327, 3029, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:33.169179, 3219, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:10:33.169179, 3219, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:10:33.169294, 3220, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:10:34.278725, 3557, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:10:34.278725, 3557, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:10:35.658174, 3901, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:35.658174, 3901, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:35.658355, 3902, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:36.940745, 4148, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:10:36.940745, 4148, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:10:36.940823, 4149, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:10:38.089039, 4401, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:10:38.089039, 4401, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:10:38.089269, 4402, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:10:38.255787, 4460, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:10:38.255787, 4460, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:10:39.250850, 4776, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:10:39.250850, 4776, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:10:40.255514, 5047, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:10:40.255514, 5047, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:10:42.613796, 5728, ICMP, raw, 56, C2S, 192.168.12.83:0, 192.168.177.40:0, 1:402:16, allow +08/21-11:10:48.672628, 7290, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:48.672628, 7290, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:48.672629, 7291, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:48.672629, 7291, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:48.672951, 7292, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:48.672951, 7293, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:51.085046, 8395, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:10:51.085046, 8395, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:10:51.085237, 8396, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:10:51.676809, 8671, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:51.676809, 8671, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:51.676809, 8672, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:51.676809, 8672, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:51.677111, 8673, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:51.677112, 8674, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:54.676838, 9745, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:54.676838, 9745, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:54.676838, 9746, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:10:54.676838, 9746, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:10:54.676989, 9747, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:54.676989, 9748, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:10:59.920916, 11041, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:10:59.920916, 11041, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:10:59.921077, 11042, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:02.455295, 11565, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:11:02.455295, 11565, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:11:02.455487, 11568, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:02.924541, 11657, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:02.924541, 11657, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:02.924721, 11658, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:03.182307, 11712, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:11:03.182307, 11712, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:11:03.182587, 11713, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:05.926644, 12241, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:05.926644, 12241, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:05.926881, 12242, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:06.959629, 12556, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:11:06.959629, 12556, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:11:06.959630, 12557, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:08.112449, 12865, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:11:08.112449, 12865, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:11:08.112612, 12866, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:08.270213, 12892, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:11:08.270213, 12892, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:11:09.266429, 13141, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:11:09.266429, 13141, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:11:10.269883, 13410, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:11:10.269883, 13410, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:11:18.930149, 15632, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:18.930149, 15632, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:18.930149, 15633, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:18.930149, 15633, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:18.930149, 15634, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:18.930344, 15635, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:21.101556, 16092, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:11:21.101556, 16092, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:11:21.101789, 16093, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:21.934074, 16280, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:21.934074, 16280, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:21.934075, 16281, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:21.934075, 16281, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:21.934243, 16282, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:21.934243, 16283, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:24.935248, 16994, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:24.935248, 16994, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:24.935248, 16995, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:11:24.935248, 16995, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:11:24.935614, 16996, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:24.935614, 16997, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:11:32.471548, 18866, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:11:32.471548, 18866, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:11:32.471797, 18869, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:33.201989, 19101, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:11:33.201989, 19101, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:11:33.202107, 19102, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:34.421808, 19366, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:34.421808, 19366, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:34.425710, 19367, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:34.425710, 19367, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:35.425727, 19656, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:35.425727, 19656, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:35.549311, 19703, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:35.549311, 19703, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:36.429504, 19944, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:36.429504, 19944, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:36.447786, 19948, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:36.447786, 19948, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:36.975000, 20208, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:11:36.975000, 20208, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:11:36.975113, 20209, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:37.437291, 20360, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:37.437291, 20360, ICMP, raw, 348, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:37.562247, 20386, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/21-11:11:37.562247, 20386, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:384:8, allow +08/21-11:11:38.126842, 20582, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:11:38.126842, 20582, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:11:38.126995, 20583, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:11:38.280200, 20638, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:11:38.280200, 20638, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:11:38.442902, 20732, ICMP, raw, 1368, C2S, 192.168.32.219:0, 192.168.32.1:0, 1:29456:3, allow +08/208/21-11:12:36.505906, 898, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:12:36.505906, 898, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:12:36.506058, 899, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:12:37.657881, 1151, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:12:37.657881, 1151, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:12:37.658012, 1152, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:12:37.817644, 1195, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:12:37.817644, 1195, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:12:38.819870, 1362, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:12:38.819870, 1362, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:12:39.820022, 1579, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:12:39.820022, 1579, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:12:50.650382, 4150, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:12:50.650382, 4150, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:12:50.650617, 4151, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:02.017559, 6809, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:13:02.017559, 6809, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:13:02.017810, 6812, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:02.748098, 7027, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:13:02.748098, 7027, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:13:02.748098, 7028, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:06.517988, 8078, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:13:06.517988, 8078, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:13:06.517988, 8079, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:07.668107, 8326, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:13:07.668107, 8326, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:13:07.668230, 8327, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:07.829369, 8353, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:13:07.829369, 8353, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:13:08.832369, 8646, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:13:08.832369, 8646, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:13:09.835498, 8877, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:13:09.835498, 8877, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:13:12.295652, 9463, ICMP, raw, 56, C2S, 192.168.12.83:0, 192.168.177.40:0, 1:402:16, allow +08/21-11:13:13.598256, 9735, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:13.598256, 9735, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:13.598256, 9736, ICMP, raw, 99, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:13.598256, 9737, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:13.598256, 9737, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:13.598256, 9738, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:13.598256, 9738, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:13.598256, 9739, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:13.598256, 9739, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:16.599409, 10292, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:16.599409, 10292, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:16.599410, 10293, ICMP, raw, 99, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:16.599410, 10294, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:16.599410, 10294, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:16.599410, 10295, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:16.599410, 10295, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:16.599410, 10296, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:16.599410, 10296, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:18.182546, 10611, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:18.182546, 10611, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:18.182546, 10612, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:18.182546, 10612, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:18.182546, 10613, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:18.182546, 10613, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:18.182546, 10614, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:18.182546, 10614, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:18.182735, 10615, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:18.182735, 10616, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:18.182735, 10617, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:18.182736, 10618, ICMP, raw, 103, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:19.595549, 10850, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:19.595549, 10850, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:19.595549, 10851, ICMP, raw, 99, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:19.595549, 10852, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:19.595549, 10852, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:19.595549, 10853, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:19.595549, 10853, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:19.595549, 10854, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:13:19.595549, 10854, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:13:20.667041, 11070, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:13:20.667041, 11070, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:13:20.667254, 11071, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:21.176383, 11173, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:21.176383, 11173, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:21.176384, 11174, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:21.176384, 11174, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:21.176384, 11175, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:21.176384, 11175, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:21.176384, 11176, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:21.176384, 11176, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:21.176743, 11177, ICMP, raw, 103, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:21.176743, 11178, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:21.176743, 11179, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:21.176743, 11180, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:24.182228, 11915, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:24.182228, 11915, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:24.182229, 11916, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:24.182229, 11916, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:24.182229, 11917, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:24.182229, 11917, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:24.182229, 11918, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:13:24.182229, 11918, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:13:24.182492, 11919, ICMP, raw, 103, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:24.182492, 11920, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:24.182492, 11921, ICMP, raw, 99, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:25.048479, 12161, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:25.048479, 12161, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:25.048480, 12162, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:25.048480, 12162, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:25.048480, 12163, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:25.048480, 12163, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:25.048598, 12164, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:25.048598, 12164, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:25.048739, 12165, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:25.048914, 12166, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:25.048914, 12167, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:25.048914, 12168, ICMP, raw, 103, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:27.346967, 12848, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:27.346967, 12848, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:27.346967, 12849, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:27.346967, 12849, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:27.346967, 12850, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:27.346967, 12850, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:27.346967, 12851, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:27.346967, 12851, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:27.347316, 12852, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:27.347316, 12853, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:27.347316, 12854, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:27.347316, 12855, ICMP, raw, 103, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:28.054721, 13025, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:28.054721, 13025, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:28.054722, 13026, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:28.054722, 13026, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:28.054722, 13027, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:28.054722, 13027, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:28.054722, 13028, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:28.054722, 13028, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:28.054935, 13029, ICMP, raw, 103, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:28.054935, 13030, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:28.054935, 13031, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:28.054936, 13032, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:29.640035, 13393, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:29.640035, 13393, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:29.640035, 13394, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:29.640035, 13394, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:29.640035, 13395, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:29.640035, 13395, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:29.640186, 13396, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:29.640186, 13396, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:29.640186, 13397, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:29.640346, 13398, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:29.640346, 13399, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:29.640346, 13400, ICMP, raw, 103, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:30.348523, 13578, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:30.348523, 13578, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:30.348523, 13579, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:30.348523, 13579, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:30.348523, 13580, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:30.348523, 13580, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:30.348523, 13581, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:30.348523, 13581, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:30.348694, 13582, ICMP, raw, 103, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:30.348694, 13583, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:30.348875, 13584, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:30.348875, 13585, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:31.051233, 13766, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:31.051233, 13766, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:31.051233, 13767, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:31.051233, 13767, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:31.051234, 13768, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:31.051234, 13768, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:31.051234, 13769, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:13:31.051234, 13769, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:13:31.051420, 13770, ICMP, raw, 103, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:31.051420, 13771, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:31.051420, 13772, ICMP, raw, 99, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:32.036016, 14003, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:13:32.036016, 14003, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:13:32.036410, 14007, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:32.641897, 14128, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:32.641897, 14128, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:32.641898, 14129, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:32.641898, 14129, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:32.641898, 14130, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:32.641898, 14130, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:32.641898, 14131, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:32.641898, 14131, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:32.642090, 14132, ICMP, raw, 103, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:32.642090, 14133, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:32.642090, 14134, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:32.642090, 14135, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:32.763332, 14166, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:13:32.763332, 14166, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:13:32.763528, 14167, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:13:33.350135, 14283, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:33.350135, 14283, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:33.350135, 14284, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:33.350135, 14284, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:33.350135, 14285, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:33.350135, 14285, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:33.350136, 14286, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:13:33.350136, 14286, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:13:33.350306, 14287, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:33.350307, 14288, ICMP, raw, 103, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:33.350462, 14289, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:33.350462, 14290, ICMP, raw, 99, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:35.650275, 14771, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:35.650275, 14771, UDP, raw, 75, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:35.650275, 14772, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:35.650275, 14772, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:35.650276, 14773, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:35.650276, 14773, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:35.650276, 14774, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:13:35.650276, 14774, UDP, raw, 71, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:13:35.650439, 14775, ICMP, raw, 103, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:35.650581, 14776, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:35.650581, 14777, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:13:35.650581, 14778, ICMP, raw, 99, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:01.838480, 148, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:14:01.838480, 148, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:14:01.838585, 150, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:02.390069, 283, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:02.390069, 283, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:02.390184, 284, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:02.569359, 331, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:14:02.569359, 331, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:14:02.569677, 333, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:06.331365, 1346, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:14:06.331365, 1346, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:14:06.331365, 1347, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:07.490539, 1571, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:14:07.490539, 1571, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:14:07.490539, 1572, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:07.641934, 1614, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:07.641934, 1614, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:08.651489, 1804, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:08.651489, 1804, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:09.648318, 2027, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:09.648318, 2027, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:13.739505, 3467, UDP, raw, 104, S2C, 192.168.177.1:53, 192.168.177.40:62454, 1:254:17, allow +08/21-11:14:15.402566, 4160, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:15.402566, 4160, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:15.402567, 4161, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:15.402567, 4161, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:15.402747, 4162, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:15.402747, 4163, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:18.399339, 5097, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:18.399339, 5097, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:18.399339, 5098, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:18.399339, 5098, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:18.399507, 5099, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:18.399507, 5100, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:20.486763, 5719, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:14:20.486763, 5719, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:14:20.487053, 5720, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:20.902927, 5939, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:20.902927, 5939, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:21.405422, 6367, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:21.405422, 6367, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:21.405422, 6368, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1411:21, allow +08/21-11:14:21.405422, 6368, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.100:161, 1:1417:18, allow +08/21-11:14:21.405772, 6369, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:21.405867, 6370, ICMP, raw, 101, C2S, 192.168.177.100:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:14:23.900127, 7485, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:23.900127, 7485, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:26.909242, 8507, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:26.909242, 8507, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:31.850556, 9660, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:14:31.850556, 9660, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:14:31.850742, 9663, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:32.580370, 9868, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:14:32.580370, 9868, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:14:32.580583, 9869, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:36.348120, 10941, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:14:36.348120, 10941, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:14:36.348120, 10942, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:37.501687, 11247, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:14:37.501687, 11247, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:14:37.501924, 11248, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:14:37.663447, 11308, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:37.663447, 11308, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:38.661318, 11497, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:38.661318, 11497, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:39.662757, 11714, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:14:39.662757, 11714, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:14:39.916207, 11762, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:39.916207, 11762, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:39.916208, 11763, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:39.916208, 11763, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:42.023996, 12269, ICMP, raw, 56, C2S, 192.168.12.83:0, 192.168.177.40:0, 1:402:16, allow +08/21-11:14:42.916350, 12481, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:42.916350, 12481, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:42.916351, 12482, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:42.916351, 12482, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:45.918487, 13155, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:45.918487, 13155, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:45.918487, 13156, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1411:21, allow +08/21-11:14:45.918487, 13156, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.36:161, 1:1417:18, allow +08/21-11:14:50.495869, 14348, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:14:50.495869, 14348, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:14:50.496149, 14349, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:01.861907, 17297, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:15:01.861907, 17297, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:15:01.862057, 17300, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:02.600642, 17466, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:15:02.600642, 17466, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:15:02.600959, 17467, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:06.363272, 18478, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:15:06.363272, 18478, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:15:06.363272, 18479, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:07.517665, 18783, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:15:07.517665, 18783, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:15:07.517665, 18785, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:07.679550, 18840, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:07.679550, 18840, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:08.676201, 19068, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:08.676201, 19068, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:09.677391, 19313, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:09.677391, 19313, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:19.440495, 22089, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:19.440495, 22089, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:19.440702, 22090, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:20.514060, 22501, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:15:20.514060, 22501, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:15:20.514248, 22502, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:22.442400, 23406, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:22.442400, 23406, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:22.442657, 23407, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:25.444788, 24409, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:25.444788, 24409, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:25.445009, 24411, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:26.719871, 24788, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:26.719871, 24788, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:26.719872, 24789, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:26.719872, 24790, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:26.719872, 24790, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:29.717746, 25553, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:29.717746, 25553, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:29.717747, 25554, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:29.717747, 25555, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:29.717747, 25555, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:31.882430, 26559, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:15:31.882430, 26559, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:15:31.882665, 26562, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:32.615458, 26773, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:15:32.615458, 26773, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:15:32.615637, 26775, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:32.725364, 26791, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:32.725364, 26791, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:32.725364, 26792, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:32.725364, 26793, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:32.725364, 26793, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:36.386686, 27883, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:15:36.386686, 27883, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:15:36.386686, 27884, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:37.534238, 28315, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:15:37.534238, 28315, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:15:37.534438, 28316, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:37.695679, 28373, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:37.695679, 28373, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:38.458191, 28544, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:38.458191, 28544, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:38.458191, 28545, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:38.458191, 28545, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:38.458192, 28546, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:38.458192, 28547, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:38.693250, 28617, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:38.693250, 28617, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:39.693201, 28913, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:15:39.693201, 28913, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:15:41.452251, 29445, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:41.452251, 29445, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:41.452251, 29446, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:41.452251, 29446, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:41.452465, 29447, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:41.452465, 29449, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:44.456980, 30431, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:44.456980, 30431, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:44.456980, 30432, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1411:21, allow +08/21-11:15:44.456980, 30432, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.240:161, 1:1417:18, allow +08/21-11:15:44.457265, 30433, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:44.457310, 30434, ICMP, raw, 101, C2S, 192.168.177.240:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:45.731883, 30882, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:45.731883, 30882, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:45.731883, 30883, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:47.136572, 31219, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:15:47.136572, 31219, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:15:47.136851, 31220, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:48.726489, 31569, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:48.726489, 31569, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:48.726489, 31570, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:50.144395, 31935, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:15:50.144395, 31935, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:15:50.144590, 31937, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:50.533598, 32058, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:15:50.533598, 32058, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:15:50.533792, 32059, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:15:51.735048, 32368, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1411:21, allow +08/21-11:15:51.735048, 32368, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.40:161, 1:1417:18, allow +08/21-11:15:51.735049, 32369, ICMP, raw, 101, C2S, 192.168.177.40:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:15:53.139806, 32818, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:15:53.139806, 32818, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:15:53.140058, 32820, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:01.899199, 35421, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:16:01.899199, 35421, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:16:01.899352, 35424, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:02.629007, 35612, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:16:02.629007, 35612, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:16:02.629315, 35613, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:06.153742, 36542, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:06.153742, 36542, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:06.153742, 36543, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:06.153742, 36543, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:06.153982, 36544, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:06.153982, 36545, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:06.401601, 36631, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:16:06.401601, 36631, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:16:06.401601, 36632, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:07.552248, 36946, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:16:07.552248, 36946, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:16:07.552375, 36947, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:07.708327, 36976, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:07.708327, 36976, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:08.708654, 37287, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:08.708654, 37287, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:09.147830, 37402, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:09.147830, 37402, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:09.147830, 37403, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:09.147830, 37403, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:09.148064, 37404, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:09.148064, 37405, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:09.713919, 37559, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:09.713919, 37559, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:12.072204, 38266, ICMP, raw, 56, C2S, 192.168.12.83:0, 192.168.177.40:0, 1:402:16, allow +08/21-11:16:12.148398, 38290, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:12.148398, 38290, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:12.148399, 38291, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1411:21, allow +08/21-11:16:12.148399, 38291, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.242:161, 1:1417:18, allow +08/21-11:16:12.148638, 38292, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:12.148638, 38293, ICMP, raw, 101, C2S, 192.168.177.242:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:17.402963, 39753, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:17.402963, 39753, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:17.403209, 39754, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:20.409442, 40597, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:20.409442, 40597, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:20.409721, 40598, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:20.548491, 40633, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:16:20.548491, 40633, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:16:20.548791, 40634, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:23.406146, 41332, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:23.406146, 41332, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:23.406347, 41334, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:31.912137, 43812, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:16:31.912137, 43812, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:16:31.912415, 43815, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:32.646124, 44035, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:16:32.646124, 44035, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:16:32.646364, 44036, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:36.414243, 45127, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:16:36.414243, 45127, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:16:36.414244, 45128, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:36.414244, 45128, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:36.414244, 45129, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:36.414244, 45129, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:36.414244, 45130, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:36.414443, 45131, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:36.414443, 45132, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:37.572049, 45439, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:16:37.572049, 45439, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:16:37.572164, 45440, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:16:37.726309, 45467, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:37.726309, 45467, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:38.724694, 45646, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:38.724694, 45646, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:39.423038, 45770, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:39.423038, 45770, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:39.423039, 45771, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:39.423039, 45771, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:39.423039, 45772, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:39.423039, 45773, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:39.726077, 45858, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:16:39.726077, 45858, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:16:42.415998, 46511, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:42.415998, 46511, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:42.415998, 46512, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1411:21, allow +08/21-11:16:42.415998, 46512, UDP, raw, 73, C2S, 10.255.255.5:38187, 192.168.177.235:161, 1:1417:18, allow +08/21-11:16:42.416141, 46513, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:16:42.416141, 46514, ICMP, raw, 101, C2S, 192.168.177.235:0, 10.255.255.5:0, 1:402:16, allow +08/21-11:17:20.576501, 3684, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:17:20.576501, 3684, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:17:20.576702, 3685, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:17:28.378098, 6643, UDP, raw, 114, S2C, 192.168.177.1:53, 192.168.177.36:56979, 1:254:17, allow +08/21-11:17:28.379360, 6647, UDP, raw, 114, S2C, 192.168.177.1:53, 192.168.177.36:56979, 1:254:17, allow +08/21-11:17:31.945984, 7765, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:17:31.945984, 7765, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:17:31.946124, 7769, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:17:32.677945, 7953, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:17:32.677945, 7953, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:17:32.678221, 7954, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:17:36.448548, 9365, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:17:36.448548, 9365, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:17:36.448549, 9367, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:17:37.607347, 9886, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:17:37.607347, 9886, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:17:37.607492, 9887, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:17:37.757020, 9950, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:17:37.757020, 9950, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:17:38.757751, 10306, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:17:38.757751, 10306, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:17:39.756251, 10707, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:17:39.756251, 10707, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:17:42.117276, 11577, ICMP, raw, 56, C2S, 192.168.12.83:0, 192.168.177.40:0, 1:402:16, allow +08/21-11:17:50.593816, 13475, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:29456:3, allow +08/21-11:17:50.593816, 13475, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.235:0, 1:384:8, allow +08/21-11:17:50.594095, 13477, ICMP, raw, 56, S2C, 192.168.177.235:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:18:01.962767, 16551, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:29456:3, allow +08/21-11:18:01.962767, 16551, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.242:0, 1:384:8, allow +08/21-11:18:01.962931, 16554, ICMP, raw, 56, S2C, 192.168.177.242:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:18:02.692307, 16741, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:29456:3, allow +08/21-11:18:02.692307, 16741, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.240:0, 1:384:8, allow +08/21-11:18:02.692499, 16742, ICMP, raw, 56, S2C, 192.168.177.240:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:18:06.458923, 17621, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:29456:3, allow +08/21-11:18:06.458923, 17621, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.40:0, 1:384:8, allow +08/21-11:18:06.458923, 17622, ICMP, raw, 56, S2C, 192.168.177.40:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:18:07.625453, 17915, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:29456:3, allow +08/21-11:18:07.625453, 17915, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.100:0, 1:384:8, allow +08/21-11:18:07.625681, 17916, ICMP, raw, 56, S2C, 192.168.177.100:0, 10.255.255.5:0, 1:408:8, allow +08/21-11:18:07.768679, 17946, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:29456:3, allow +08/21-11:18:07.768679, 17946, ICMP, raw, 56, C2S, 10.255.255.5:0, 192.168.177.36:0, 1:384:8, allow +08/21-11:29:07.312148, 6202, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-11:29:11.381683, 10590, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:29:37.109598, 42672, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-11:29:52.553953, 96149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:30:02.403820, 112131, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:30:02.403820, 112131, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:30:02.800432, 112995, ICMP, raw, 62, C2S, 10.255.255.5:0, 119.96.108.84:0, 1:449:9, allow +08/21-11:30:23.080175, 159827, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-11:30:23.490992, 160237, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-11:30:45.454148, 201540, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-11:31:02.438126, 230030, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:31:02.438126, 230030, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:31:02.445215, 230057, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-11:31:02.445215, 230057, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-11:32:02.582406, 323339, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-11:32:02.582406, 323339, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-11:32:31.689395, 374481, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:33:02.508862, 433131, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-11:33:02.508862, 433131, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-11:34:02.548074, 548196, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:34:02.548074, 548196, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:35:02.584169, 663010, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:35:02.584169, 663010, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:35:49.115839, 801249, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:35:54.789310, 810445, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-11:35:54.789337, 810446, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-11:36:02.680369, 830104, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-11:36:02.680369, 830104, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-11:37:02.912924, 970266, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:37:02.912924, 970266, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:39:02.987458, 1255537, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:39:02.987458, 1255537, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:40:03.024692, 1356339, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:40:03.024692, 1356339, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:40:51.949110, 1419241, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:41:03.055218, 1440765, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-11:41:03.055218, 1440765, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-11:41:25.649547, 1495554, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.15:0, 1:402:16, allow +08/21-11:42:03.094650, 1564776, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:42:03.094650, 1564776, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:42:17.726869, 1584953, ICMP, raw, 62, C2S, 10.255.255.5:0, 213.183.62.133:0, 1:449:9, allow +08/21-11:42:17.779942, 1585289, ICMP, raw, 62, C2S, 10.255.255.5:0, 213.183.62.133:0, 1:449:9, allow +08/21-11:42:17.928010, 1586306, ICMP, raw, 62, C2S, 10.255.255.5:0, 213.183.62.133:0, 1:449:9, allow +08/21-11:42:17.930926, 1586323, ICMP, raw, 62, C2S, 10.255.255.5:0, 213.183.62.133:0, 1:449:9, allow +08/21-11:44:03.179854, 1734259, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:44:03.179854, 1734259, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:44:03.947251, 1734917, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.2.132:0, 1:449:9, allow +08/21-11:44:38.635259, 1804350, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-11:45:03.179036, 1857353, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-11:45:03.179036, 1857353, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-11:46:03.205596, 1981479, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-11:46:03.205596, 1981479, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-11:46:03.213439, 1981538, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:46:03.213439, 1981538, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:46:16.403940, 2006285, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-11:47:03.246548, 2127615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:47:03.246548, 2127615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:47:17.657018, 2157740, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-11:48:50.506901, 2432014, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:49:03.315463, 2488300, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:49:03.315463, 2488300, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:50:03.346482, 2799186, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:50:03.346482, 2799186, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:50:48.310372, 3027658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:50:50.091347, 3034734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:51:00.096844, 3089284, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:51:03.371717, 3105106, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-11:51:03.371717, 3105106, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-11:51:03.379449, 3105163, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:51:03.379449, 3105163, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:51:12.903657, 3151316, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-11:51:19.197058, 3182364, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:52:03.405592, 3346609, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-11:52:03.405592, 3346609, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-11:52:03.413544, 3346643, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:52:03.413544, 3346643, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:52:47.684747, 3432516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:53:03.442840, 3457993, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-11:53:03.442840, 3457993, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-11:53:03.450936, 3458041, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-11:53:03.450936, 3458041, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-11:54:03.775800, 3556772, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:55:00.546291, 3652222, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-11:55:08.130347, 3667956, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:55:08.510626, 3668167, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:55:16.705094, 3692373, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-11:56:03.555676, 3795622, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:56:03.555676, 3795622, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:57:20.491732, 3930833, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:58:03.615343, 3992515, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-11:58:03.615343, 3992515, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-11:58:03.617252, 3992524, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-11:58:03.617252, 3992524, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-11:58:52.528583, 4064274, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:58:52.528583, 4064275, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:58:52.528584, 4064276, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:58:52.528584, 4064277, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:58:52.528584, 4064278, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:59:37.385528, 4140642, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-11:59:47.538475, 4156865, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:59:47.538475, 4156866, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:59:47.538475, 4156867, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:59:47.538475, 4156868, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-11:59:47.538509, 4156869, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-12:00:03.673148, 4177839, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-12:00:03.673148, 4177839, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-12:00:32.605431, 4221189, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-12:02:03.740809, 4404599, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-12:02:03.740809, 4404599, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-12:02:03.742667, 4404615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-12:02:03.742667, 4404615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-12:04:03.808845, 4755275, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:04:03.808845, 4755275, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:04:09.612363, 4776114, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:04:49.121652, 4860037, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:05:49.630085, 4977331, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.50.218:0, 1:449:9, allow +08/21-12:06:03.839189, 5018527, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:06:03.839189, 5018527, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:06:14.691091, 5039494, ICMP, raw, 62, C2S, 10.255.255.5:0, 123.184.59.70:0, 1:449:9, allow +08/21-12:06:14.702992, 5039546, ICMP, raw, 62, C2S, 10.255.255.5:0, 123.184.59.70:0, 1:449:9, allow +08/21-12:06:14.704999, 5039557, ICMP, raw, 62, C2S, 10.255.255.5:0, 123.184.59.70:0, 1:449:9, allow +08/21-12:06:14.717963, 5039629, ICMP, raw, 62, C2S, 10.255.255.5:0, 123.184.59.70:0, 1:449:9, allow +08/21-12:06:18.535178, 5057301, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/21-12:06:28.165697, 5073584, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:06:30.543015, 5077660, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:06:31.531900, 5080324, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:07:03.843549, 5128172, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:07:03.843549, 5128172, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:10:07.184228, 5455558, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:11:05.466379, 5607082, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:12:11.769694, 5684880, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:12:44.840327, 5741952, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:13:03.880441, 5773831, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:13:03.880441, 5773831, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:14:03.884690, 5874462, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:14:03.884690, 5874462, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:16:03.872872, 6051769, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-12:16:03.872872, 6051769, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-12:16:08.108238, 6056563, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:17:05.464082, 6122239, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.497768, 6122371, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.501898, 6122375, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.544860, 6122490, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.547796, 6122495, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.559786, 6122557, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.559912, 6122558, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.561730, 6122581, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.578830, 6122686, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.578830, 6122687, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.597619, 6122757, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.619735, 6122880, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.640674, 6122989, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.666425, 6123121, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.670853, 6123127, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.679629, 6123189, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.704352, 6123294, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.741893, 6123540, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.772827, 6123694, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.783723, 6123753, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.824720, 6123868, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.851998, 6123986, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.866188, 6124067, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.884140, 6124095, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.884210, 6124096, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.897982, 6124173, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.910703, 6124275, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.944402, 6124404, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.979590, 6124570, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:05.981519, 6124578, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.006144, 6124817, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.027005, 6124890, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.049615, 6125122, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.051181, 6125128, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.067797, 6125179, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.108708, 6125406, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.139956, 6125611, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.154115, 6125667, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.172969, 6125748, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.202108, 6125991, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.229743, 6126030, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.305768, 6126291, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.370835, 6126435, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.488036, 6126661, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.542878, 6126723, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.551059, 6126751, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.555835, 6126755, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.609982, 6126879, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.666501, 6127004, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.715737, 6127108, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.718829, 6127118, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.747746, 6127146, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.869937, 6127347, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:06.971229, 6127734, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.438933, 6129704, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.707956, 6130915, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.755058, 6131057, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.868116, 6131502, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.871514, 6131523, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.899235, 6131601, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:07.991902, 6131977, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.111834, 6132437, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.124644, 6132474, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.389851, 6133471, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.393945, 6133484, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.522840, 6133998, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.549012, 6134042, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.558860, 6134071, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.634952, 6134327, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.710995, 6134505, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.771061, 6134727, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.840837, 6135069, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.935402, 6135616, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:08.966038, 6135716, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.150961, 6136419, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.435191, 6137491, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.435772, 6137492, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.511514, 6137689, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.565810, 6137932, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.726460, 6138536, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.874272, 6139600, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:09.948998, 6140004, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.099036, 6140619, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.099036, 6140620, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.140033, 6140781, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.243035, 6141154, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.396006, 6141537, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.398413, 6141541, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.559192, 6142088, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.576209, 6142177, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.632790, 6142353, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.654136, 6142456, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.687038, 6142570, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.870338, 6143456, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:10.879465, 6143491, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:11.166995, 6145158, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:11.471095, 6146280, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:11.564246, 6146528, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:11.582271, 6146563, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:11.912097, 6147455, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.351097, 6149759, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.399121, 6149937, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.454836, 6150196, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.646340, 6150903, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.668057, 6150985, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.913228, 6151637, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:12.913228, 6151638, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:13.214205, 6152536, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:13.214205, 6152537, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:13.739264, 6154041, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:13.955460, 6154649, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:14.751395, 6156684, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:14.751540, 6156685, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:14.753966, 6156688, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:14.771417, 6156755, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.003172, 6157266, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.006229, 6157269, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.259826, 6158011, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.464226, 6158585, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.516335, 6158780, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.717329, 6159423, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:15.974341, 6160519, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:17.030413, 6165301, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:17.515517, 6167522, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:17.515517, 6167523, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:17.822022, 6169322, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:17.826321, 6169326, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:18.610536, 6171937, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:19.643486, 6173476, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:20.590554, 6175836, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:23.963893, 6183935, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:23.979811, 6184033, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:24.220091, 6185800, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:24.222354, 6185835, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:24.476136, 6189243, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:25.990801, 6205648, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:26.474063, 6210535, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:26.744077, 6212798, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:27.038269, 6214423, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:27.041756, 6214430, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:27.804029, 6219913, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:28.495021, 6223634, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:28.573892, 6223725, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:28.609570, 6223805, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:29.476887, 6225012, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:30.624117, 6231626, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:31.071138, 6234417, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:31.071165, 6234418, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:36.449418, 6258679, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.909150, 6284904, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.909250, 6284905, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.909299, 6284906, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.909349, 6284907, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.912655, 6284915, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:42.973750, 6285068, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:43.013925, 6285215, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.062985, 6290574, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.267579, 6291237, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.267704, 6291241, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.725846, 6293058, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.931983, 6294025, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.934510, 6294031, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.939765, 6294048, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:45.939765, 6294049, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:47.016000, 6298532, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:47.016000, 6298533, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:47.989588, 6301432, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:47.994042, 6301449, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:17:57.971953, 6342111, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:00.829334, 6347651, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:01.037547, 6349061, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:13.076265, 6404747, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:15.934503, 6408771, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:16.140265, 6409272, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:19.785090, 6414649, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:19.785090, 6414650, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:19.785091, 6414651, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:19.787451, 6414653, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:20.810894, 6417031, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:20.810894, 6417032, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:22.823813, 6423454, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:22.823813, 6423456, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:22.824103, 6423457, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:23.882770, 6426569, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:23.882770, 6426570, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:24.857790, 6428068, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:26.907791, 6433837, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:28.178176, 6435355, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:31.039067, 6439415, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:31.248143, 6440107, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:34.473966, 6449134, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:18:43.281843, 6461416, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:45.104974, 6465626, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:46.362434, 6468023, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:18:58.386555, 6490961, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:01.456639, 6506925, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:03.865427, 6515424, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:19:03.865427, 6515424, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:19:13.493361, 6540985, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:16.563533, 6548263, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:32.701969, 6602079, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:32.701969, 6602080, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:34.495907, 6608009, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:36.543428, 6614298, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:19:42.686545, 6633000, ICMP, raw, 68, C2S, 10.255.255.5:0, 188.116.24.17:0, 1:449:9, allow +08/21-12:20:14.690752, 6698973, ICMP, raw, 62, C2S, 10.255.255.5:0, 129.152.29.126:0, 1:449:9, allow +08/21-12:20:14.925915, 6699480, ICMP, raw, 62, C2S, 10.255.255.5:0, 129.152.29.126:0, 1:449:9, allow +08/21-12:20:14.929710, 6699487, ICMP, raw, 62, C2S, 10.255.255.5:0, 129.152.29.126:0, 1:449:9, allow +08/21-12:20:14.933249, 6699491, ICMP, raw, 62, C2S, 10.255.255.5:0, 129.152.29.126:0, 1:449:9, allow +08/21-12:20:38.868972, 6762603, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:21:03.872026, 6805641, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-12:21:03.872026, 6805641, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-12:22:03.873008, 6925964, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:22:03.873008, 6925964, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:22:12.385531, 6939644, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/21-12:22:12.385569, 6939645, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/21-12:22:12.385569, 6939646, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/21-12:22:12.385618, 6939647, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.21:0, 1:402:16, allow +08/21-12:23:09.784850, 7077688, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:23:24.566227, 7107026, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:23:27.672421, 7116930, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:23:28.208480, 7118062, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:24:58.832567, 7303683, ICMP, raw, 68, C2S, 10.255.255.5:0, 108.157.214.71:0, 1:449:9, allow +08/21-12:27:03.895220, 7602117, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:27:03.895220, 7602117, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:27:09.804331, 7613171, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:28:03.900300, 7718384, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:28:03.900300, 7718384, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:28:16.007476, 7740846, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:29:03.825205, 7822597, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:29:28.529631, 7895183, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:31:03.913983, 8065266, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:31:03.913983, 8065266, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:31:48.975190, 8149032, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:32:03.915064, 8187022, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:32:03.915064, 8187022, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:32:51.891387, 8300245, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-12:34:29.731390, 8478093, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:34:47.374083, 8502298, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:34:50.130203, 8509205, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:34:58.622524, 8519536, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:35:03.918886, 8527558, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:35:03.918886, 8527558, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:36:03.925724, 8626505, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:36:03.925724, 8626505, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:37:03.924649, 8730698, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:37:03.924649, 8730698, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:37:52.395041, 8821056, ICMP, raw, 62, C2S, 10.255.255.5:0, 172.104.94.121:0, 1:449:9, allow +08/21-12:38:51.161697, 8967328, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:40:03.934059, 9188398, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:40:03.934059, 9188398, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:41:04.011985, 9330874, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-12:41:04.011985, 9330874, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-12:43:58.489985, 9758784, ICMP, raw, 68, C2S, 10.255.255.5:0, 178.176.128.128:0, 1:449:9, allow +08/21-12:44:42.725418, 9879362, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:45:03.946871, 9934174, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:45:03.946871, 9934174, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:45:21.487154, 9968434, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:46:52.030564, 10183238, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:48:03.956888, 10312574, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:48:03.956888, 10312574, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:49:03.963626, 10425113, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-12:49:03.963626, 10425113, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-12:49:04.465731, 10426695, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:49:59.917898, 10584006, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:50:06.138323, 10594444, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:50:10.538353, 10607996, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:51:48.564047, 10828134, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:54:24.998275, 11073299, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:55:03.991530, 11140418, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-12:55:03.991530, 11140418, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-12:56:03.991855, 11295514, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:366:11, allow +08/21-12:56:03.991855, 11295514, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:384:8, allow +08/21-12:56:27.843143, 11326193, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-12:56:44.153669, 11357098, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:57:30.830175, 11440864, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-12:58:04.002457, 11525050, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:366:11, allow +08/21-12:58:04.002457, 11525050, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:384:8, allow +08/21-12:58:45.518410, 11614455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-12:59:07.429374, 11691080, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-12:59:12.299518, 11701486, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-12:59:51.601148, 11803409, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-13:00:04.009524, 11836013, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-13:00:04.009524, 11836013, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-13:01:04.013360, 11962410, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:366:11, allow +08/21-13:01:04.013360, 11962410, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:384:8, allow +08/21-13:02:04.017486, 12083041, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-13:02:04.017486, 12083041, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-13:05:04.026210, 12486204, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-13:05:04.026210, 12486204, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-13:05:56.198375, 12612945, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-13:06:04.035686, 12631219, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-13:06:04.035686, 12631219, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-13:06:35.626923, 12706836, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:07:04.039801, 12783584, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-13:07:04.039801, 12783584, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-13:07:46.729699, 12900224, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:11:04.055637, 13462629, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-13:11:04.055637, 13462629, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-13:12:04.057760, 13636685, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-13:12:04.057760, 13636685, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-13:13:04.061608, 13869032, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-13:13:04.061608, 13869032, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-13:13:54.544122, 13981872, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:13:58.964295, 13991919, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.142:0, 1:399:9, allow +08/21-13:18:10.144097, 14478960, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:18:50.715756, 14575468, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:19:26.607240, 14658792, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.66:0, 1:399:9, allow +08/21-13:20:33.631153, 14892657, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-13:21:46.212501, 15052270, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-13:21:56.832878, 15071761, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:24:04.123668, 15390326, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:24:04.123668, 15390326, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:24:31.766046, 15599013, ICMP, raw, 62, C2S, 10.255.255.5:0, 76.8.60.71:0, 1:449:9, allow +08/21-13:24:31.868760, 15599521, ICMP, raw, 62, C2S, 10.255.255.5:0, 76.8.60.71:0, 1:449:9, allow +08/21-13:24:31.870076, 15599524, ICMP, raw, 62, C2S, 10.255.255.5:0, 76.8.60.71:0, 1:449:9, allow +08/21-13:24:32.883154, 15601620, ICMP, raw, 62, C2S, 10.255.255.5:0, 76.8.60.71:0, 1:449:9, allow +08/21-13:24:40.238610, 15620246, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.15:0, 1:402:16, allow +08/21-13:25:04.137671, 15698967, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:25:04.137671, 15698967, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:25:23.023631, 16102, ICMP, raw, 62, C2S, 10.255.255.5:0, 156.59.219.36:0, 1:449:9, allow +08/21-13:25:23.030648, 16115, ICMP, raw, 62, C2S, 10.255.255.5:0, 156.59.219.36:0, 1:449:9, allow +08/21-13:25:23.042603, 16158, ICMP, raw, 62, C2S, 10.255.255.5:0, 156.59.219.36:0, 1:449:9, allow +08/21-13:25:23.283682, 16494, ICMP, raw, 62, C2S, 10.255.255.5:0, 156.59.219.36:0, 1:449:9, allow +08/21-13:25:36.012592, 40854, ICMP, raw, 36, C2S, 192.71.26.73:0, 185.93.41.55:0, 1:29456:3, allow +08/21-13:25:44.319397, 56749, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-13:27:04.122656, 253090, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:27:04.122656, 253090, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:29:18.730288, 642135, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:30:04.133522, 772280, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:30:04.133522, 772280, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:30:44.964212, 875637, ICMP, raw, 120, C2S, 192.178.241.251:0, 185.93.41.55:0, 1:449:9, allow +08/21-13:30:44.972257, 875650, ICMP, raw, 96, C2S, 192.178.241.234:0, 185.93.41.55:0, 1:449:9, allow +08/21-13:31:04.139990, 927877, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:31:04.139990, 927877, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:31:05.244572, 930083, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:31:11.584735, 947854, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.26.143:0, 1:399:9, allow +08/21-13:32:04.143940, 1092029, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:32:04.143940, 1092029, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:32:04.146789, 1092055, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-13:32:18.307511, 1132949, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-13:33:04.154425, 1247295, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:33:04.154425, 1247295, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:33:38.350503, 1336419, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-13:33:45.920769, 1363886, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:34:04.148715, 1420723, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-13:34:04.148715, 1420723, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-13:34:19.480368, 1476653, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.103.186.106:0, 1:449:9, allow +08/21-13:34:24.515612, 1487911, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.103.186.106:0, 1:449:9, allow +08/21-13:35:04.152566, 1591797, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-13:35:04.152566, 1591797, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-13:36:04.165636, 1738606, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.241:0, 1:366:11, allow +08/21-13:36:04.165636, 1738606, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.241:0, 1:384:8, allow +08/21-13:36:19.326799, 1849341, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:36:52.608270, 2129679, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:37:00.949346, 2152624, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-13:37:04.156934, 2159873, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-13:37:04.156934, 2159873, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-13:38:04.170707, 2380302, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-13:38:04.170707, 2380302, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-13:38:14.521316, 2407578, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-13:40:04.162121, 2679002, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-13:40:04.162121, 2679002, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-13:40:04.172954, 2679046, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.241:0, 1:366:11, allow +08/21-13:40:04.172954, 2679046, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.241:0, 1:384:8, allow +08/21-13:40:04.173268, 2679048, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-13:40:04.173268, 2679048, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-13:53:03.103837, 137426, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-13:53:03.103837, 137426, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-13:56:48.005483, 776937, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-13:57:54.542945, 956349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-13:59:46.150027, 1253162, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.11:0, 1:402:16, allow +08/21-13:59:46.150027, 1253163, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.48.11:0, 1:402:16, allow +08/21-14:00:36.860477, 1389853, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:01:58.114460, 1562080, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:02:13.112327, 1616455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:02:34.686816, 1665564, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-14:03:40.989648, 1846859, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:04:31.717046, 2018477, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:04:43.621219, 2042790, ICMP, raw, 68, C2S, 10.255.255.5:0, 46.243.143.156:0, 1:449:9, allow +08/21-14:05:02.703652, 2085649, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:05:10.017672, 2102444, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:05:25.596035, 2148360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:05:32.779931, 2163649, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:06:03.521532, 2254295, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-14:06:03.521532, 2254295, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-14:07:03.552117, 2426836, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-14:07:03.552117, 2426836, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-14:08:03.585984, 2592094, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-14:08:03.585984, 2592094, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-14:08:45.013634, 2712339, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:08:55.849901, 2739047, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:08:55.849901, 2739048, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:08:55.849901, 2739049, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:08:55.849975, 2739050, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:08:55.850051, 2739051, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:08:59.884194, 2748907, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:09:04.014405, 2760757, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:09:12.211035, 2779223, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:09:28.348076, 2818195, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:10:56.900923, 3036781, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-14:10:57.735111, 3041166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.197:0, 1:399:9, allow +08/21-14:12:03.714074, 3230505, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-14:12:03.714074, 3230505, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-14:12:22.058516, 3281835, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-14:12:30.083414, 3301367, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/21-14:12:55.582991, 3366336, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/21-14:13:03.746247, 3402662, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-14:13:03.746247, 3402662, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-14:14:48.019163, 3700844, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:15:15.403950, 3783280, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:15:58.481531, 3874181, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-14:16:03.847109, 3886434, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-14:16:03.847109, 3886434, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-14:16:03.847109, 3886435, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-14:16:03.847109, 3886435, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-14:16:18.417940, 3920963, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:17:51.442585, 4151679, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.0.161:0, 1:449:9, allow +08/21-14:17:52.981144, 4154904, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:17:53.283334, 4155696, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:17:55.302379, 4159689, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:18:51.990740, 4310220, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:19:03.944124, 4342001, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-14:19:03.944124, 4342001, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-14:19:03.945912, 4342004, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:366:11, allow +08/21-14:19:03.945912, 4342004, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.201:0, 1:384:8, allow +08/21-14:19:13.464559, 4366661, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-14:19:13.765519, 4367248, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-14:19:15.794926, 4371319, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-14:20:03.974494, 4512844, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:20:03.974494, 4512844, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:20:49.183772, 4646438, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:20:51.445028, 4653872, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:21:04.008196, 4695116, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:21:04.008196, 4695116, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:22:04.050009, 4879113, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-14:22:04.050009, 4879113, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-14:22:16.627099, 4922864, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-14:22:27.546873, 4954777, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.143:0, 1:399:9, allow +08/21-14:22:50.393914, 5015127, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:22:52.691881, 5022542, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:22:54.491446, 5025801, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:22:55.538723, 5028102, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:22:57.045750, 5033799, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:22:57.045750, 5033800, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:23:02.968569, 5050981, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.137:0, 1:402:16, allow +08/21-14:23:24.067178, 5115207, ICMP, raw, 62, C2S, 10.255.255.5:0, 219.142.106.139:0, 1:449:9, allow +08/21-14:25:06.192274, 5549435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:26:04.163122, 5830628, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:26:04.163122, 5830628, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:26:04.163484, 5830634, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:26:04.163484, 5830634, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:26:12.808191, 5888804, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:26:38.809207, 6000413, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-14:26:38.811991, 6000421, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:26:38.811991, 6000422, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:26:39.114913, 6001354, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:26:41.156200, 6006242, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/21-14:26:41.156200, 6006243, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/21-14:27:04.194181, 6067454, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:27:04.194181, 6067454, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:27:04.194397, 6067458, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:27:04.194397, 6067458, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:27:04.201891, 6067499, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.216:0, 1:366:11, allow +08/21-14:27:04.201891, 6067499, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.216:0, 1:384:8, allow +08/21-14:27:13.721013, 6109112, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:27:50.630206, 6348372, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-14:28:03.006089, 6424904, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:28:04.205795, 6430684, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:28:04.205795, 6430684, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:28:04.206173, 6430685, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:28:04.206173, 6430685, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:29:04.208478, 6687292, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:29:04.208478, 6687292, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:29:04.208893, 6687296, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-14:29:04.208893, 6687296, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-14:30:04.209578, 6949082, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:30:04.209578, 6949082, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:30:04.209925, 6949085, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:30:04.209925, 6949085, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:31:04.216567, 7165610, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-14:31:04.216567, 7165610, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-14:31:05.073347, 7169624, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:31:11.033500, 7191067, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:31:48.984965, 7284897, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:32:04.218130, 7333061, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:32:04.218130, 7333061, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:32:09.286073, 7350471, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:33:04.218213, 7514068, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-14:33:04.218213, 7514068, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-14:33:29.419080, 7592331, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:33:41.349462, 7641172, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:33:53.749851, 7678414, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:34:04.226593, 7712766, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-14:34:04.226593, 7712766, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-14:34:04.234531, 7712808, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.228:0, 1:366:11, allow +08/21-14:34:04.234531, 7712808, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.228:0, 1:384:8, allow +08/21-14:34:04.237591, 7712820, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:34:04.237591, 7712820, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:35:58.874834, 8180778, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:36:04.234287, 8197775, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.238:0, 1:366:11, allow +08/21-14:36:04.234287, 8197775, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.238:0, 1:384:8, allow +08/21-14:36:21.645732, 8251361, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:39:36.420026, 8885391, ICMP, raw, 68, C2S, 10.255.255.5:0, 95.142.204.178:0, 1:449:9, allow +08/21-14:41:55.578753, 9363098, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:42:00.869024, 9377470, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:42:05.059099, 9390055, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:42:54.885613, 9515172, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.169.94:0, 1:449:9, allow +08/21-14:42:58.887304, 9525062, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.169.94:0, 1:449:9, allow +08/21-14:47:15.453187, 10202085, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:15.453187, 10202086, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:17.217192, 10206257, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-14:47:18.463155, 10208221, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:18.463262, 10208222, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:18.463309, 10208223, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:21.473496, 10217880, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:24.483536, 10230746, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:47:33.514034, 10257300, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-14:48:09.133453, 10345168, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:48:09.748832, 10347425, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-14:48:09.748832, 10347425, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-14:50:06.758008, 10603997, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:50:09.743938, 10611750, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-14:50:09.743938, 10611750, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-14:50:41.329418, 10710627, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-14:50:42.879421, 10714752, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:09.747770, 10804042, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:51:09.747770, 10804042, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:51:21.320921, 10842950, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:27.051189, 10863439, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:34.381360, 10888872, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:34.451407, 10889333, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:38.151600, 10901961, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:44.891870, 10922315, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:50.532055, 10937843, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:51:55.842231, 10953326, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:52:00.292397, 10968809, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:52:09.750618, 11003746, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:52:09.750618, 11003746, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:52:31.483726, 11076629, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.212.60.167:0, 1:399:9, allow +08/21-14:54:09.755228, 11483707, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-14:54:09.755228, 11483707, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-14:54:32.488458, 11557644, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:54:49.309049, 11606765, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:57:07.664555, 12035020, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-14:57:09.773018, 12043668, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.211:0, 1:366:11, allow +08/21-14:57:09.773018, 12043668, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.211:0, 1:384:8, allow +08/21-14:57:31.180583, 12116630, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-14:59:02.159037, 12390985, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-14:59:34.774829, 12494614, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-15:00:28.762393, 12662801, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:00:35.802742, 12683320, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:35.802742, 12683322, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:35.802837, 12683323, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687874, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687875, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687876, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687877, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687878, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.482795, 12687879, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.522716, 12687989, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.522716, 12687990, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.532735, 12688023, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:00:37.532735, 12688024, ICMP, raw, 80, C2S, 10.255.255.5:0, 172.232.206.27:0, 1:399:9, allow +08/21-15:02:54.708156, 13109896, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:03:09.412602, 13157142, ICMP, raw, 62, C2S, 10.255.255.5:0, 181.13.244.29:0, 1:449:9, allow +08/21-15:03:09.787243, 13158424, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.238:0, 1:366:11, allow +08/21-15:03:09.787243, 13158424, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.238:0, 1:384:8, allow +08/21-15:04:56.552930, 13519720, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-15:05:09.785295, 13565039, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:05:09.785295, 13565039, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:06:09.785847, 13773435, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:06:09.785847, 13773435, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:06:37.106742, 13920722, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-15:07:09.791520, 14024214, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-15:07:09.791520, 14024214, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-15:08:09.791270, 14225994, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-15:08:09.791270, 14225994, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-15:09:09.793625, 14412755, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:09:09.793625, 14412755, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:10:09.797934, 14596876, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-15:10:09.797934, 14596876, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-15:11:09.798949, 14774241, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:11:09.798949, 14774241, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:12:09.801960, 14965834, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:12:09.801960, 14965834, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:12:42.641080, 15065953, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:13:09.804022, 15149431, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:13:09.804022, 15149431, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:13:10.255156, 15150601, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-15:14:09.809682, 15363071, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:14:09.809682, 15363071, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:14:52.496259, 15510956, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:15:09.817332, 15566964, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-15:15:09.817332, 15566964, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-15:15:46.748358, 15688191, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.130:0, 1:399:9, allow +08/21-15:16:09.820617, 15762860, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-15:16:09.820617, 15762860, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-15:17:09.824850, 15968115, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-15:17:09.824850, 15968115, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-15:17:54.133376, 16114412, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:18:19.914441, 16193836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:19:09.827822, 16344335, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.133:0, 1:366:11, allow +08/21-15:19:09.827822, 16344335, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.133:0, 1:384:8, allow +08/21-15:19:20.226702, 16375159, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:20:09.828827, 16499966, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-15:20:09.828827, 16499966, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-15:20:11.508754, 16504210, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:20:48.060223, 16590162, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:21:09.835521, 16649572, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-15:21:09.835521, 16649572, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-15:21:18.671345, 16685878, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:21:33.561973, 16727255, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:25:09.843857, 17398691, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.141:0, 1:366:11, allow +08/21-15:25:09.843857, 17398691, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.141:0, 1:384:8, allow +08/21-15:27:09.813868, 17697045, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.141:0, 1:366:11, allow +08/21-15:27:09.813868, 17697045, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.141:0, 1:384:8, allow +08/21-15:27:26.605749, 17731871, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:29:09.801698, 17972757, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-15:29:09.801698, 17972757, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-15:30:42.013332, 18212507, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:31:09.833877, 18302350, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:366:11, allow +08/21-15:31:09.833877, 18302350, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:384:8, allow +08/21-15:31:32.355442, 18352609, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-15:31:55.826252, 18420296, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:33:09.862200, 18621980, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-15:33:09.862200, 18621980, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-15:33:34.714763, 18684671, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-15:33:44.690642, 18710485, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:34:09.855396, 18767350, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-15:34:09.855396, 18767350, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-15:36:09.864982, 19090470, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:36:09.864982, 19090470, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:36:21.486695, 19121877, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:37:52.810285, 19373457, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:38:23.751584, 19449518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-15:38:29.431725, 19462090, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:39:05.536228, 19556837, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-15:39:26.544015, 19625127, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:40:09.884952, 19737634, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:40:09.884952, 19737634, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:40:55.610694, 19854612, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-15:41:09.883439, 19916204, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:41:09.883439, 19916204, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:41:13.890600, 19925800, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-15:41:24.848605, 19955847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-15:41:33.570494, 19975393, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-15:42:09.888950, 20054331, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-15:42:09.888950, 20054331, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-15:42:47.751289, 20134869, ICMP, raw, 36, C2S, 172.105.181.89:0, 185.93.41.55:0, 1:29456:3, allow +08/21-15:48:36.645458, 21362669, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-15:49:09.910258, 21470263, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-15:49:09.910258, 21470263, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-15:51:37.952532, 21936144, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:52:43.725233, 22097062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-15:54:15.855034, 22297948, ICMP, raw, 62, C2S, 10.255.255.5:0, 222.180.162.228:0, 1:449:9, allow +08/21-15:55:09.913403, 22403738, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:55:09.913403, 22403738, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:55:09.915653, 22403747, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-15:55:09.915653, 22403747, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-15:56:07.808981, 22521429, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:09.921051, 22525414, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-15:56:09.921051, 22525414, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-15:56:10.829224, 22527009, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:10.829224, 22527010, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:10.829318, 22527011, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:10.829318, 22527012, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:13.849237, 22535439, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:13.849237, 22535440, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:13.849237, 22535441, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:19.870267, 22551945, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:56:25.909827, 22564384, ICMP, raw, 104, C2S, 185.93.41.55:0, 172.212.5.164:0, 1:399:9, allow +08/21-15:57:09.921847, 22654731, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:57:09.921847, 22654731, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:58:09.922672, 22778335, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-15:58:09.922672, 22778335, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-15:58:09.925412, 22778358, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-15:58:09.925412, 22778358, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-15:58:09.930447, 22778377, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.133:0, 1:366:11, allow +08/21-15:58:09.930447, 22778377, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.133:0, 1:384:8, allow +08/21-15:58:30.568832, 22816131, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-15:59:09.930075, 22895673, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-15:59:09.930075, 22895673, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-15:59:43.641659, 22967974, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:00:09.929277, 23017823, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-16:00:09.929277, 23017823, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-16:00:44.484074, 23087509, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:00:51.834267, 23107516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-16:01:09.937073, 23157217, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-16:01:09.937073, 23157217, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-16:01:55.976972, 23282679, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:02:09.937342, 23322683, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-16:02:09.937342, 23322683, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-16:02:09.940114, 23322721, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:02:09.940114, 23322721, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:03:09.939718, 23496225, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-16:03:09.939718, 23496225, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-16:03:09.942527, 23496248, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:03:09.942527, 23496248, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:03:24.570357, 23536175, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-16:04:09.953261, 23665877, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-16:04:09.953261, 23665877, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-16:04:09.958291, 23665918, ICMP, raw, 60, S2C, 185.93.41.55:0, 172.98.87.133:0, 1:366:11, allow +08/21-16:04:09.958291, 23665918, ICMP, raw, 60, S2C, 185.93.41.55:0, 172.98.87.133:0, 1:384:8, allow +08/21-16:05:09.957965, 23838532, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:05:09.957965, 23838532, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:06:09.959998, 24014687, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:06:09.959998, 24014687, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:07:09.964785, 24179177, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:07:09.964785, 24179177, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:08:09.966267, 24297494, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:08:09.966267, 24297494, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:08:11.931652, 24301869, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:09:09.968441, 24405247, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:09:09.968441, 24405247, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:09:40.371438, 24464591, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-16:10:09.971309, 24516355, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:10:09.971309, 24516355, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:10:19.716553, 24531435, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:11:09.975114, 24620383, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:11:09.975114, 24620383, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:12:09.975926, 24722174, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:12:09.975926, 24722174, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:14:09.987244, 24941919, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:14:09.987244, 24941919, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:18:00.094745, 25425037, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:18:09.986204, 25442052, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:18:09.986204, 25442052, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:21:41.813384, 25833040, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:21:44.633498, 25838420, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:22:06.969658, 25878239, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:06.969772, 25878240, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:06.969772, 25878241, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:06.969772, 25878242, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:06.969773, 25878243, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:10.939669, 25884592, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:14.929902, 25891495, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:22.870938, 25904425, ICMP, raw, 80, C2S, 185.93.41.55:0, 192.229.221.95:0, 1:399:9, allow +08/21-16:22:38.529184, 25931167, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-16:22:40.225639, 25934650, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:23:09.996741, 25982270, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:23:09.999499, 25982278, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:23:09.999499, 25982278, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:23:15.476092, 25991229, ICMP, raw, 56, C2S, 10.255.255.2:0, 209.38.180.198:0, 1:449:9, allow +08/21-16:23:15.583068, 25991369, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:16.222593, 25992284, ICMP, raw, 68, C2S, 10.255.255.5:0, 82.163.78.161:0, 1:449:9, allow +08/21-16:23:16.506408, 25992639, ICMP, raw, 68, C2S, 10.255.255.5:0, 139.59.55.11:0, 1:449:9, allow +08/21-16:23:16.606958, 25992778, ICMP, raw, 56, C2S, 10.255.255.2:0, 209.38.180.198:0, 1:449:9, allow +08/21-16:23:18.661916, 25996670, ICMP, raw, 68, C2S, 10.255.255.5:0, 82.163.78.161:0, 1:449:9, allow +08/21-16:23:18.911179, 25996823, ICMP, raw, 56, C2S, 10.255.255.2:0, 209.38.180.198:0, 1:449:9, allow +08/21-16:23:21.490366, 26000631, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.217.199:0, 1:449:9, allow +08/21-16:23:21.637226, 26001091, ICMP, raw, 68, C2S, 10.255.255.5:0, 146.190.4.192:0, 1:449:9, allow +08/21-16:23:21.796534, 26001689, ICMP, raw, 56, C2S, 10.255.255.2:0, 50.116.39.197:0, 1:449:9, allow +08/21-16:23:23.524924, 26004274, ICMP, raw, 68, C2S, 10.255.255.5:0, 82.163.78.161:0, 1:449:9, allow +08/21-16:23:23.639337, 26004455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:31.707899, 26018003, ICMP, raw, 56, C2S, 10.255.255.2:0, 51.89.179.182:0, 1:449:9, allow +08/21-16:23:33.244542, 26020131, ICMP, raw, 68, C2S, 10.255.255.5:0, 82.163.78.161:0, 1:449:9, allow +08/21-16:23:36.461237, 26025880, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:37.440559, 26027378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:38.640022, 26029370, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:41.078037, 26033562, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.232.237.90:0, 1:449:9, allow +08/21-16:23:57.191000, 26064436, ICMP, raw, 62, C2S, 10.255.255.5:0, 47.254.245.116:0, 1:449:9, allow +08/21-16:23:57.191001, 26064437, ICMP, raw, 62, C2S, 10.255.255.5:0, 47.254.245.116:0, 1:449:9, allow +08/21-16:23:57.192972, 26064439, ICMP, raw, 62, C2S, 10.255.255.5:0, 47.254.245.116:0, 1:449:9, allow +08/21-16:23:57.203950, 26064442, ICMP, raw, 62, C2S, 10.255.255.5:0, 47.254.245.116:0, 1:449:9, allow +08/21-16:24:01.548798, 26075161, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:24:09.139209, 26088968, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:24:10.001469, 26090037, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.138:0, 1:366:11, allow +08/21-16:24:10.001469, 26090037, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.138:0, 1:384:8, allow +08/21-16:24:27.409797, 26119990, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:25:09.998969, 26224829, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:25:09.998969, 26224829, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:26:10.001173, 26376472, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:26:10.001173, 26376472, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:26:22.144319, 26443682, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:27:10.002275, 26604449, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:27:10.002275, 26604449, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:27:23.636757, 26634499, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:28:10.005997, 26734567, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:28:10.005997, 26734567, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:29:10.007698, 26845216, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:29:10.007698, 26845216, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:29:15.200976, 26854747, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:29:45.752224, 26915097, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:30:10.012277, 26962476, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:30:10.012277, 26962476, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:31:06.555472, 27074135, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:31:10.015694, 27078206, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:366:11, allow +08/21-16:31:10.015694, 27078206, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.147:0, 1:384:8, allow +08/21-16:31:28.455551, 27101134, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.69:0, 1:449:9, allow +08/21-16:31:29.397844, 27102040, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.78:0, 1:449:9, allow +08/21-16:31:30.864769, 27103692, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.75:0, 1:449:9, allow +08/21-16:32:38.849101, 27202400, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:33:10.025869, 27244888, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:33:10.025869, 27244888, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:33:19.090690, 27257375, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:34:10.028829, 27365480, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:34:10.028829, 27365480, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:35:10.031544, 27455977, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:35:10.031544, 27455977, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:35:15.805359, 27469607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:36:00.652990, 27527438, ICMP, raw, 36, C2S, 172.105.21.17:0, 185.93.41.55:0, 1:29456:3, allow +08/21-16:36:47.645242, 27617594, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-16:37:10.038967, 27646580, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:37:10.038967, 27646580, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:37:50.061367, 27699887, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:37:56.631684, 27707135, ICMP, raw, 62, C2S, 10.255.255.5:0, 211.21.48.186:0, 1:449:9, allow +08/21-16:37:56.633583, 27707136, ICMP, raw, 62, C2S, 10.255.255.5:0, 211.21.48.186:0, 1:449:9, allow +08/21-16:37:56.881602, 27707288, ICMP, raw, 62, C2S, 10.255.255.5:0, 211.21.48.186:0, 1:449:9, allow +08/21-16:37:56.881602, 27707289, ICMP, raw, 62, C2S, 10.255.255.5:0, 211.21.48.186:0, 1:449:9, allow +08/21-16:38:10.042169, 27722519, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-16:38:10.042169, 27722519, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-16:39:10.044281, 27802690, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:39:10.044281, 27802690, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:40:10.048761, 27882253, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:40:10.048761, 27882253, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:42:10.056829, 28124762, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:42:10.056829, 28124762, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:42:54.803279, 28223699, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:43:10.056766, 28242789, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:43:10.056766, 28242789, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:44:10.059881, 28308175, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-16:44:10.059881, 28308175, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-16:45:10.065747, 28367414, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:45:10.065747, 28367414, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:45:44.873757, 28405036, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:44.874615, 28405039, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:44.875820, 28405041, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:45.678480, 28406261, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:45.679761, 28406281, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:45.680164, 28406285, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:46.679909, 28410241, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:46.679909, 28410242, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:47.339480, 28410759, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:47.339480, 28410760, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:49.713884, 28412692, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:49.730605, 28412694, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:50.615826, 28414370, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:50.615827, 28414371, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:54.714150, 28419467, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:54.714150, 28419468, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/21-16:45:58.247752, 28422770, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:58.247752, 28422771, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:45:58.636687, 28424171, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/21-16:46:10.069932, 28445778, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:46:10.069932, 28445778, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:46:15.101402, 28452942, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-16:46:16.811280, 28453663, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-16:46:23.841575, 28459992, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:46:33.371772, 28473222, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-16:48:10.076221, 28553380, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:48:10.076221, 28553380, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:48:51.097017, 28582261, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-16:49:09.164839, 28596284, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-16:49:10.079965, 28596668, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:49:10.079965, 28596668, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:49:19.226495, 28607391, ICMP, raw, 64, C2S, 10.255.255.5:0, 175.6.22.149:0, 1:449:9, allow +08/21-16:50:10.082572, 28690423, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:50:10.082572, 28690423, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:50:25.780967, 28703522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-16:50:44.221602, 28718843, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:51:10.084644, 28739283, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:51:10.084644, 28739283, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:52:10.087954, 28788861, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:52:10.087954, 28788861, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:52:40.456301, 28807574, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-16:53:10.089478, 28828423, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-16:53:10.089478, 28828423, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-16:54:10.093026, 28893481, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-16:54:10.093026, 28893481, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-16:55:10.094013, 28938776, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:55:10.094013, 28938776, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:56:10.096840, 28982585, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:56:10.096840, 28982585, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:56:16.504989, 28994012, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:57:10.100741, 29044615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-16:57:10.100741, 29044615, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-16:57:29.457786, 29061519, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:57:59.828713, 29085190, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-16:59:23.462282, 29152422, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:00:10.106355, 29192161, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:00:10.106355, 29192161, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:00:10.114718, 29192200, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.134:0, 1:366:11, allow +08/21-17:00:10.114718, 29192200, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.134:0, 1:384:8, allow +08/21-17:00:26.684476, 29207235, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:01:32.067163, 29278972, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:02:10.113353, 29308875, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:02:10.113353, 29308875, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:02:33.259572, 29325352, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:03:10.116623, 29352507, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:03:10.116623, 29352507, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:03:10.124866, 29352554, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.134:0, 1:366:11, allow +08/21-17:03:10.124866, 29352554, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.134:0, 1:384:8, allow +08/21-17:03:14.482695, 29355732, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-17:04:10.119407, 29393407, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:04:10.119407, 29393407, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:05:10.127312, 29437411, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-17:05:10.127312, 29437411, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-17:05:10.129405, 29437419, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:05:10.129405, 29437419, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:06:06.097991, 29483273, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-17:06:14.182485, 29489492, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-17:06:49.869601, 29515593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:07:10.135869, 29531430, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:07:10.135869, 29531430, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:07:23.160735, 29541218, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:08:10.138529, 29577658, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:08:10.138529, 29577658, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:08:38.863854, 29601683, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-17:09:10.144772, 29631112, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:09:10.144772, 29631112, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:09:11.295001, 29632710, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:10:10.144260, 29705745, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-17:10:10.144260, 29705745, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-17:10:10.147115, 29705761, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:10:10.147115, 29705761, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:10:42.245417, 29748507, ICMP, raw, 62, C2S, 10.255.255.5:0, 115.227.49.23:0, 1:449:9, allow +08/21-17:11:10.149882, 29807099, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:11:10.149882, 29807099, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:11:16.177295, 29815984, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:16.485376, 29816404, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:17.100789, 29819950, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:17.100789, 29819951, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:18.251115, 29822345, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:18.251115, 29822346, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:20.586267, 29831229, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:20.586317, 29831230, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:25.249430, 29844677, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:25.250548, 29844678, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:34.620562, 29868490, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:34.620562, 29868491, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.7:0, 1:402:16, allow +08/21-17:11:36.640862, 29871711, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:12:33.462952, 29978030, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:14:14.526908, 30198645, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:14:52.648493, 30256763, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:15:02.728813, 30272601, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:15:09.889036, 30283600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:15:33.650038, 30323838, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:15:42.590393, 30337682, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:02.231207, 30370500, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:02.831281, 30371622, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:10.166693, 30383603, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:16:10.166693, 30383603, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:16:10.167374, 30383608, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-17:16:10.167374, 30383608, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-17:16:16.101668, 30394483, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:23.311989, 30405223, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:27.872152, 30413104, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:32.152360, 30419604, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:49.533035, 30445553, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.207.226:0, 1:399:9, allow +08/21-17:16:58.425927, 30460979, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-17:17:10.170428, 30479816, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-17:17:10.170428, 30479816, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-17:17:49.665518, 30547419, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:18:10.170943, 30579776, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.131:0, 1:366:11, allow +08/21-17:18:10.170943, 30579776, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.131:0, 1:384:8, allow +08/21-17:20:10.179588, 30773495, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-17:20:10.179588, 30773495, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-17:21:10.181715, 30879435, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:21:10.181715, 30879435, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:21:34.274286, 30924773, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:22:10.184024, 30984014, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:22:10.184024, 30984014, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:22:35.246602, 31024670, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:23:06.961877, 31075621, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-17:23:10.188178, 31080862, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.186:0, 1:366:11, allow +08/21-17:23:10.188178, 31080862, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.186:0, 1:384:8, allow +08/21-17:23:10.189817, 31080871, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:23:10.189817, 31080871, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:23:10.190398, 31080876, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-17:23:10.190398, 31080876, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-17:23:13.378090, 31086040, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:24:10.187957, 31177358, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.131:0, 1:366:11, allow +08/21-17:24:10.187957, 31177358, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.131:0, 1:384:8, allow +08/21-17:24:10.189880, 31177372, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:24:10.189880, 31177372, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:24:29.354583, 31209016, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-17:25:10.187502, 31276538, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:25:10.187502, 31276538, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:26:10.193788, 31375411, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:26:10.193788, 31375411, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:27:10.192520, 31469589, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:27:10.192520, 31469589, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:28:10.194776, 31562984, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:28:10.194776, 31562984, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:29:10.199814, 31757332, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:29:10.199814, 31757332, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:30:07.055102, 31962240, ICMP, raw, 36, C2S, 172.233.161.194:0, 185.93.41.55:0, 1:29456:3, allow +08/21-17:30:10.200694, 31967482, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:30:10.200694, 31967482, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:30:24.904906, 31994898, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:30:51.856049, 32039219, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:31:10.205309, 32070494, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:31:10.205309, 32070494, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:31:17.391848, 32083157, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/21-17:31:20.397934, 32087733, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/21-17:32:10.210049, 32168448, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-17:32:10.210049, 32168448, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-17:33:10.210875, 32273425, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:33:10.210875, 32273425, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:33:18.921820, 32287952, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:33:55.313219, 32352729, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:34:10.214430, 32376670, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-17:34:10.214430, 32376670, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-17:34:27.244544, 32402218, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:35:10.226185, 32478669, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-17:35:10.226185, 32478669, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-17:35:39.596981, 32530668, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:35:39.598830, 32530669, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:35:39.599714, 32530670, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:35:39.600712, 32530672, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:35:39.654676, 32530727, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:35:39.674879, 32530750, ICMP, raw, 576, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/21-17:36:39.079879, 32622920, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/21-17:38:01.642854, 32759404, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:38:10.235897, 32773862, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-17:38:10.235897, 32773862, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-17:39:10.233368, 32878398, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-17:39:10.233368, 32878398, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-17:39:43.506827, 33030777, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:41:10.249779, 33992095, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-17:41:10.249779, 33992095, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-17:41:41.211457, 34109310, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:41:58.582437, 34128102, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:42:02.592241, 34132309, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:42:10.242580, 34138900, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-17:42:10.242580, 34138900, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-17:42:10.251268, 34138938, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-17:42:10.251268, 34138938, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-17:42:22.897335, 34147533, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:22.897335, 34147534, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:22.897335, 34147535, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:22.897335, 34147536, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:22.897335, 34147537, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:22.897335, 34147538, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:26.917340, 34150336, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:26.917340, 34150337, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:32.347505, 34154746, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:36.067817, 34156350, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:42:36.067818, 34156351, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-17:43:10.256694, 34194022, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:366:11, allow +08/21-17:43:10.256694, 34194022, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.14:0, 1:384:8, allow +08/21-17:43:28.235655, 34212465, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-17:44:05.637165, 34242199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:45:10.250618, 34300659, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-17:45:10.250618, 34300659, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-17:45:25.146311, 34316568, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-17:46:06.587126, 34349707, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-17:47:10.257167, 34411137, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-17:47:10.257167, 34411137, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-17:47:45.175639, 34449419, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:48:10.261370, 34480064, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-17:48:10.261370, 34480064, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-17:49:33.660130, 34562222, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:50:39.339037, 34620268, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.116.78.151:0, 1:449:9, allow +08/21-17:50:39.598760, 34620339, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.116.78.151:0, 1:449:9, allow +08/21-17:50:39.601680, 34620340, ICMP, raw, 62, C2S, 10.255.255.5:0, 103.116.78.151:0, 1:449:9, allow +08/21-17:51:28.825172, 34657886, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-17:54:55.092571, 34808293, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:56:09.925638, 34859210, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-17:57:43.439308, 34929043, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-17:59:12.233873, 34994345, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-17:59:24.208414, 35005562, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-17:59:25.311464, 35006547, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-17:59:33.543503, 35011485, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:00:13.505113, 35046396, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:00:14.277274, 35046887, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.95.146.203:0, 1:449:9, allow +08/21-18:00:14.280889, 35046888, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.95.146.203:0, 1:449:9, allow +08/21-18:00:14.287097, 35046891, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.95.146.203:0, 1:449:9, allow +08/21-18:00:14.289039, 35046892, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.95.146.203:0, 1:449:9, allow +08/21-18:01:08.255599, 35083910, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:08.616635, 35084531, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:09.591305, 35085381, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:09.591305, 35085382, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:12.636583, 35086667, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:12.636583, 35086668, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:17.709116, 35091814, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:17.711355, 35091815, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:01:22.638527, 35096270, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.94.6:0, 1:402:16, allow +08/21-18:03:22.092424, 35183775, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:03:29.702726, 35192725, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:03:45.803414, 35206668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:05:03.236554, 35279313, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:07:10.324656, 35376013, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-18:07:10.324656, 35376013, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-18:07:34.002395, 35392536, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:09:10.331296, 35466290, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:09:10.331296, 35466290, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:09:21.926555, 35473294, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:10:27.149170, 35518551, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:11:10.338227, 35543110, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-18:11:10.338227, 35543110, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-18:11:22.101294, 35549340, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:12:10.339971, 35582164, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-18:12:10.339971, 35582164, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-18:12:10.342273, 35582179, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:12:10.342273, 35582179, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:13:10.344366, 35619076, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-18:13:10.344366, 35619076, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-18:13:53.784082, 35652501, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.240.64:0, 1:449:9, allow +08/21-18:13:53.794204, 35652503, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.240.64:0, 1:449:9, allow +08/21-18:13:53.814935, 35652510, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.240.64:0, 1:449:9, allow +08/21-18:14:10.347582, 35663920, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:366:11, allow +08/21-18:14:10.347582, 35663920, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.15:0, 1:384:8, allow +08/21-18:15:30.001159, 35721645, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:16:10.349321, 35754948, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:16:10.349321, 35754948, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:16:55.434328, 35790655, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:17:10.349355, 35803523, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:17:10.349355, 35803523, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:18:10.360034, 35850169, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:18:10.360034, 35850169, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:18:59.489406, 35884259, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:20:10.379214, 35939613, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:20:10.379214, 35939613, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:21:42.335612, 36002413, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:23:10.369211, 36061616, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:23:10.369211, 36061616, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:25:44.905542, 36162182, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:26:29.208113, 36193280, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-18:27:10.376035, 36224375, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:366:11, allow +08/21-18:27:10.376035, 36224375, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:384:8, allow +08/21-18:28:21.061282, 36269789, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:28:30.231708, 36274297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:29:10.391239, 36300523, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-18:29:10.391239, 36300523, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-18:29:11.003279, 36300808, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:30:28.936295, 36453428, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:31:13.638028, 36495098, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:32:10.405726, 36533307, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:366:11, allow +08/21-18:32:10.405726, 36533307, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.146:0, 1:384:8, allow +08/21-18:32:23.600702, 36541861, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:33:10.392854, 36573608, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:366:11, allow +08/21-18:33:10.392854, 36573608, ICMP, raw, 60, C2S, 185.93.41.55:0, 172.98.87.145:0, 1:384:8, allow +08/21-18:36:10.403658, 36700054, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:36:10.403658, 36700054, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:36:39.160024, 36716383, ICMP, raw, 98, C2S, 10.255.255.5:0, 202.112.237.201:0, 1:449:9, allow +08/21-18:37:10.404865, 36734708, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:37:10.404865, 36734708, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:37:32.092983, 36748866, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:38:10.409539, 36775085, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:38:10.409539, 36775085, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:38:48.515792, 36816530, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:39:10.411031, 36832657, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:39:10.411031, 36832657, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:39:32.037674, 36845710, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:40:10.413556, 36869919, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:40:10.413556, 36869919, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:41:40.852725, 36924872, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:43:24.716718, 37005520, ICMP, raw, 88, C2S, 10.255.255.5:0, 192.141.9.110:0, 1:399:9, allow +08/21-18:44:05.328273, 37031525, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:44:10.420942, 37035016, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:366:11, allow +08/21-18:44:10.420942, 37035016, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.154:0, 1:384:8, allow +08/21-18:44:11.538485, 37035455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:45:46.222394, 37098913, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:47:10.434688, 37161060, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:47:10.434688, 37161060, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:48:10.436844, 37206594, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:48:10.436844, 37206594, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:50:00.512200, 37281357, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:50:26.853209, 37299721, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:50:30.903335, 37301290, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:53:10.450404, 37402677, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:53:10.450404, 37402677, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:54:46.913496, 37471086, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:54:47.803601, 37471327, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:55:10.453762, 37487481, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:366:11, allow +08/21-18:55:10.453762, 37487481, ICMP, raw, 60, C2S, 185.93.41.55:0, 192.142.227.20:0, 1:384:8, allow +08/21-18:55:34.625353, 37510785, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-18:56:25.037275, 37544711, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:57:10.459626, 37571344, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:57:10.459626, 37571344, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:57:47.733416, 37592301, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-18:57:59.140992, 37599593, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-18:58:10.462199, 37607810, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:58:10.462199, 37607810, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-18:58:41.342695, 37634160, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-18:59:10.463409, 37653988, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:366:11, allow +08/21-18:59:10.463409, 37653988, ICMP, raw, 60, S2C, 185.93.41.55:0, 192.142.226.153:0, 1:384:8, allow +08/21-19:00:49.157616, 37730931, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:02:36.311871, 37807838, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:04:24.156114, 37874835, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:05:03.367552, 37898755, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:05:19.808713, 37910768, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:05:29.108575, 37916734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:05:46.329423, 37929931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:05:47.209514, 37930277, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:05:59.679858, 37938552, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:06:03.119993, 37940990, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:06:12.010239, 37945869, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:06:17.350410, 37949693, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:06:42.091450, 37965749, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:06:59.892231, 37974652, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:07:07.922722, 37978708, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.110.206:0, 1:399:9, allow +08/21-19:09:31.868109, 38063908, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:09:38.427016, 38069092, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-19:10:26.100429, 38101152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:12:27.585050, 38179710, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:13:57.298617, 38226710, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:14:40.030282, 38249494, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:40.710312, 38249733, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:41.060329, 38249854, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:41.140300, 38249883, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:41.390316, 38249967, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:41.410220, 38249979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:41.600285, 38250019, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:42.040435, 38250155, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:42.100284, 38250177, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:42.150428, 38250187, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:42.420368, 38250322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:42.880528, 38250498, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:43.110377, 38250587, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:43.290370, 38250627, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:44.670467, 38252124, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:44.690416, 38252143, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:44.720464, 38252160, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:44.970493, 38252206, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:45.760686, 38252347, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:46.070530, 38252428, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:46.890783, 38252630, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:47.200560, 38252737, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:47.210575, 38252742, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:47.640592, 38252882, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:48.950558, 38253908, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:51.090617, 38254961, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:51.640688, 38255136, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:51.770710, 38255182, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:51.950696, 38255211, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:52.290763, 38255318, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:52.821076, 38255481, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:53.360841, 38255766, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:54.450759, 38257256, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:56.180984, 38258306, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:57.320896, 38258835, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:57.470994, 38258876, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:57.780981, 38258952, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:57.980978, 38259003, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:58.250926, 38259407, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:14:59.461046, 38260385, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:00.441244, 38260759, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:00.601060, 38260816, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:01.091043, 38260920, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:01.561092, 38261068, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:01.631072, 38261083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:01.671089, 38261096, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:02.251248, 38261304, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:02.601049, 38261429, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:03.521198, 38262845, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:03.641202, 38262931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:04.021261, 38263048, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:04.121181, 38263092, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:04.891219, 38263594, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:05.471345, 38263737, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:07.951361, 38266037, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:08.041367, 38266076, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:08.461395, 38266263, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:09.911398, 38266884, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:10.101528, 38266931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:10.131482, 38266939, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:10.241585, 38266975, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:11.211554, 38267255, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:11.591672, 38267397, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:13.051702, 38268923, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:14.271586, 38269667, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:15.361624, 38270062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:15.451625, 38270086, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:16.141649, 38270300, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:16.651640, 38270480, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:17.261745, 38271501, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:17.281618, 38271505, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:17.781782, 38271677, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:17.861749, 38271704, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:18.021822, 38271747, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:18.331768, 38271822, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:18.431803, 38271841, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:18.711883, 38271914, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:18.811778, 38271951, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:19.571842, 38272193, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:20.991847, 38272632, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:21.711811, 38273709, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:21.821907, 38273755, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:21.891838, 38273774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:22.561977, 38273979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:22.852188, 38274064, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:22.901974, 38274098, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:23.832004, 38274502, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:24.161981, 38274649, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:15:24.582050, 38274892, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:24.902043, 38275024, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:25.422070, 38275159, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:27.252124, 38276747, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:27.682172, 38277081, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:27.802182, 38277286, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:28.482203, 38278133, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:28.492240, 38278160, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:29.442254, 38279717, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:30.882197, 38281068, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:31.462283, 38281522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:32.422249, 38281784, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:33.342262, 38282106, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:33.652454, 38282171, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:34.162446, 38282292, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:35.522517, 38282740, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:36.112496, 38282865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:36.312508, 38282921, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:36.392480, 38282943, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:36.852482, 38283042, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:37.662544, 38283355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:38.452620, 38283571, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:38.692550, 38283631, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:39.592508, 38284695, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:40.072589, 38285703, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:40.202684, 38285767, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:40.642647, 38285873, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:41.252743, 38286040, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:41.752741, 38286252, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:42.662715, 38286561, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:42.662716, 38286562, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:43.132756, 38286719, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:43.272741, 38286766, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:43.482753, 38286814, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:43.492777, 38286817, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:44.402701, 38288065, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:44.792752, 38288517, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:45.042748, 38288584, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:45.632803, 38288760, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:46.322770, 38288944, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:46.462810, 38288978, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:47.502886, 38289295, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:47.612901, 38289317, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:48.303909, 38289473, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:49.363008, 38290755, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:50.022983, 38290964, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:50.113027, 38290995, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:50.403019, 38291075, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:50.693022, 38291157, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:51.233087, 38291282, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:52.473188, 38291712, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:52.933184, 38291836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:54.243210, 38293326, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:54.303184, 38293348, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:54.343263, 38293355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:54.453403, 38293397, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:57.263180, 38294552, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:57.453181, 38294613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:57.953310, 38294767, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:58.993526, 38295874, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:59.033487, 38295895, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:15:59.133361, 38295931, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:00.823477, 38296487, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:01.053383, 38296540, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:02.373461, 38296913, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:02.743462, 38297371, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:02.893422, 38297839, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:03.033636, 38298137, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:03.563569, 38298328, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:04.243460, 38298591, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:05.853681, 38299181, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:05.873642, 38299187, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:05.983798, 38299212, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:06.093816, 38299263, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:06.973629, 38299729, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:07.433622, 38300367, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:07.983616, 38300863, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:08.173862, 38300933, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:08.983700, 38301271, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:09.773739, 38301621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:11.033826, 38302033, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:11.493867, 38302158, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:13.343908, 38303674, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:14.583935, 38304321, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:14.863991, 38304425, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:16.653938, 38305820, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:17.204061, 38306111, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:17.704065, 38306334, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:18.604124, 38306604, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:18.614231, 38306607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:18.854250, 38306668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:19.144187, 38306735, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:19.564188, 38306848, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:20.044198, 38307071, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:20.174182, 38307119, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:20.624228, 38307283, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:21.444202, 38309048, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:21.464216, 38309092, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:21.644217, 38309613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:22.114258, 38309811, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:22.664260, 38309984, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:23.784284, 38310277, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:23.964286, 38310326, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:24.384362, 38310452, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:24.534400, 38310492, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:24.904417, 38310702, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:25.974390, 38311331, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:26.334490, 38312316, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:27.204468, 38312747, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:27.544550, 38312838, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:27.644442, 38312865, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:28.754480, 38313163, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:28.784457, 38313183, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:29.724509, 38313446, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.164557, 38313612, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.304585, 38313651, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.374806, 38313684, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.394576, 38313691, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.624737, 38313782, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:30.834588, 38314246, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:31.254735, 38315272, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:32.534655, 38315615, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:32.924632, 38315748, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:33.754851, 38316085, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:34.204720, 38316209, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:34.224844, 38316212, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:36.224761, 38318159, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:38.174828, 38318683, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:38.384845, 38318736, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:38.584964, 38318803, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:39.844973, 38319297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:40.134965, 38319433, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:40.775149, 38319652, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:40.985054, 38319692, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:41.084889, 38319721, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:41.114943, 38319734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:41.375003, 38319793, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:42.305325, 38320118, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:43.075032, 38320385, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:16:43.105025, 38320394, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:43.975132, 38320726, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:45.125104, 38322360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:45.475066, 38322521, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:45.495109, 38322525, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:45.605308, 38322573, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:46.095230, 38322762, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:46.555187, 38322913, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:47.165225, 38323116, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:48.825347, 38323868, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:49.045182, 38324379, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:49.155311, 38324784, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:49.185257, 38324886, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:49.835358, 38325378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:50.855389, 38325645, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:52.045440, 38325940, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:52.255378, 38325991, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:16:52.315427, 38326010, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.206.148.15:0, 1:399:9, allow +08/21-19:18:13.478723, 38379112, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-19:21:38.496619, 38512592, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:23:51.320794, 38597391, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-19:24:02.492414, 38605014, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:24:28.489588, 38622258, ICMP, raw, 64, C2S, 10.255.255.5:0, 182.100.46.196:0, 1:449:9, allow +08/21-19:24:31.478770, 38624560, ICMP, raw, 64, C2S, 10.255.255.5:0, 182.100.46.196:0, 1:449:9, allow +08/21-19:24:32.490870, 38624903, ICMP, raw, 64, C2S, 10.255.255.5:0, 182.100.46.196:0, 1:449:9, allow +08/21-19:24:35.481891, 38627484, ICMP, raw, 64, C2S, 10.255.255.5:0, 182.100.46.196:0, 1:449:9, allow +08/21-19:26:19.395051, 38692519, ICMP, raw, 64, C2S, 10.255.255.5:0, 117.33.161.69:0, 1:449:9, allow +08/21-19:26:20.928319, 38692971, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:26:23.397095, 38693790, ICMP, raw, 64, C2S, 10.255.255.5:0, 117.33.161.69:0, 1:449:9, allow +08/21-19:26:23.406393, 38693794, ICMP, raw, 64, C2S, 10.255.255.5:0, 117.33.161.69:0, 1:449:9, allow +08/21-19:26:27.408458, 38696438, ICMP, raw, 64, C2S, 10.255.255.5:0, 117.33.161.69:0, 1:449:9, allow +08/21-19:31:44.000380, 38878830, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:32:59.353271, 38936630, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:33:42.594959, 38962774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:33:47.205136, 38975344, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:34:09.356185, 39029516, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:35:49.708463, 39086635, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-19:42:06.324693, 39366834, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:45:44.503331, 39505124, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:45:45.433592, 39505337, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:52:51.980085, 39755781, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:53:08.680740, 39767579, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:54:14.461109, 39833877, ICMP, raw, 72, C2S, 10.255.255.5:0, 168.235.81.158:0, 1:449:9, allow +08/21-19:54:19.465366, 39837254, ICMP, raw, 72, C2S, 10.255.255.5:0, 168.235.81.158:0, 1:449:9, allow +08/21-19:54:48.964723, 39866830, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-19:55:19.656078, 39898226, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-19:56:10.237987, 39932366, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-19:58:45.354195, 40026288, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-20:01:36.260740, 40126123, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:01:44.420951, 40131419, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:02:25.822083, 40158075, ICMP, raw, 62, C2S, 10.255.255.5:0, 172.232.32.15:0, 1:449:9, allow +08/21-20:02:25.824030, 40158080, ICMP, raw, 62, C2S, 10.255.255.5:0, 172.232.32.15:0, 1:449:9, allow +08/21-20:02:25.824955, 40158081, ICMP, raw, 62, C2S, 10.255.255.5:0, 172.232.32.15:0, 1:449:9, allow +08/21-20:06:09.978120, 40334773, ICMP, raw, 62, C2S, 10.255.255.5:0, 37.120.149.150:0, 1:449:9, allow +08/21-20:06:09.978120, 40334774, ICMP, raw, 62, C2S, 10.255.255.5:0, 37.120.149.150:0, 1:449:9, allow +08/21-20:06:09.978120, 40334775, ICMP, raw, 62, C2S, 10.255.255.5:0, 37.120.149.150:0, 1:449:9, allow +08/21-20:06:09.978120, 40334776, ICMP, raw, 62, C2S, 10.255.255.5:0, 37.120.149.150:0, 1:449:9, allow +08/21-20:10:01.110429, 40471527, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:10:51.011841, 40503754, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:11:04.018448, 40511780, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:15:18.702921, 40663210, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:15:32.043427, 40670367, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-20:17:54.119055, 40760771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-20:18:32.900551, 40783403, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-20:20:32.374232, 40938797, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.1.161:0, 1:449:9, allow +08/21-20:21:05.385844, 40957001, ICMP, raw, 62, C2S, 10.255.255.5:0, 50.116.23.150:0, 1:449:9, allow +08/21-20:21:05.636719, 40957109, ICMP, raw, 62, C2S, 10.255.255.5:0, 50.116.23.150:0, 1:449:9, allow +08/21-20:21:06.646928, 40957656, ICMP, raw, 62, C2S, 10.255.255.5:0, 50.116.23.150:0, 1:449:9, allow +08/21-20:21:06.900874, 40957882, ICMP, raw, 62, C2S, 10.255.255.5:0, 50.116.23.150:0, 1:449:9, allow +08/21-20:21:07.726832, 40958243, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:27:28.658884, 41213461, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-20:30:21.098323, 41313728, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:30:39.468879, 41321936, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-20:31:46.443112, 41365317, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:31:47.951063, 41365695, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:32:37.303502, 41395582, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.104.96.108:0, 1:449:9, allow +08/21-20:32:37.303502, 41395583, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.104.96.108:0, 1:449:9, allow +08/21-20:32:37.312353, 41395585, ICMP, raw, 88, C2S, 10.255.255.5:0, 172.104.96.108:0, 1:449:9, allow +08/21-20:33:13.555296, 41416116, ICMP, raw, 72, C2S, 10.255.255.5:0, 167.88.125.122:0, 1:449:9, allow +08/21-20:33:18.565502, 41418930, ICMP, raw, 72, C2S, 10.255.255.5:0, 167.88.125.122:0, 1:449:9, allow +08/21-20:34:43.440796, 41468068, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-20:34:53.998919, 41473617, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:35:52.461291, 41508793, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-20:39:08.888976, 41616708, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-20:39:40.658372, 41632728, ICMP, raw, 72, C2S, 10.255.255.5:0, 75.80.136.51:0, 1:449:9, allow +08/21-20:39:45.688526, 41635979, ICMP, raw, 72, C2S, 10.255.255.5:0, 75.80.136.51:0, 1:449:9, allow +08/21-20:39:51.328774, 41638903, ICMP, raw, 72, C2S, 10.255.255.5:0, 75.80.136.51:0, 1:449:9, allow +08/21-20:41:40.744887, 41713380, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/21-20:44:19.721070, 41815652, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-20:44:50.192250, 41838037, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:46:22.543443, 41897292, TCP, stream_tcp, 211, C2S, 107.175.242.95:43852, 185.93.41.55:80, 1:59948:1, allow +08/21-20:48:42.186717, 41982346, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-20:52:26.276603, 42121203, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:52:37.360273, 42125172, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-20:53:01.332008, 42141398, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-20:55:45.187896, 42230039, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-20:58:01.529558, 42291978, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:01.529558, 42291979, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:01.529558, 42291980, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:01.529558, 42291981, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:01.529559, 42291982, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:01.529559, 42291983, ICMP, raw, 80, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:05.049727, 42293657, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:05.049728, 42293658, ICMP, raw, 119, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:399:9, allow +08/21-20:58:11.573691, 42296630, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-20:58:19.274085, 42300256, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:00:42.470102, 42386559, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.66:0, 1:449:9, allow +08/21-21:00:44.444211, 42387162, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.59:0, 1:449:9, allow +08/21-21:00:44.602386, 42387276, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.60:0, 1:449:9, allow +08/21-21:02:55.014732, 42451344, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:03:06.254651, 42456186, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.187.227.119:0, 1:449:9, allow +08/21-21:03:11.255472, 42458585, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.187.227.119:0, 1:449:9, allow +08/21-21:03:26.865245, 42465098, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-21:05:04.806905, 42512974, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-21:05:14.050204, 42517353, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:10:03.091672, 42656769, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:10:46.173561, 42677231, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.187.227.121:0, 1:449:9, allow +08/21-21:10:51.209814, 42680064, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.187.227.121:0, 1:449:9, allow +08/21-21:13:28.459848, 42765926, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:13:33.395145, 42768444, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-21:15:10.372727, 42818976, ICMP, raw, 62, C2S, 10.255.255.5:0, 50.116.23.150:0, 1:449:9, allow +08/21-21:16:02.975826, 42845320, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:17:11.940709, 42875956, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-21:18:18.287912, 42907227, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-21:18:56.292666, 42922494, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:19:01.674254, 42924773, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-21:20:42.144048, 42976866, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-21:21:02.097643, 42988052, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:21:04.835036, 42990727, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-21:21:13.807943, 42995744, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:22:50.541846, 43043094, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:23:57.734488, 43080915, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.130.26:0, 1:449:9, allow +08/21-21:23:58.733724, 43081154, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.130.26:0, 1:449:9, allow +08/21-21:24:01.739903, 43081504, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.130.26:0, 1:449:9, allow +08/21-21:24:02.739714, 43082806, ICMP, raw, 64, C2S, 10.255.255.5:0, 163.171.130.26:0, 1:449:9, allow +08/21-21:25:39.558319, 43126078, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:28:33.595320, 43220140, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.70.75.102:0, 1:449:9, allow +08/21-21:28:33.599694, 43220142, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.70.75.102:0, 1:449:9, allow +08/21-21:28:33.603128, 43220143, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.70.75.102:0, 1:449:9, allow +08/21-21:28:33.603462, 43220144, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.70.75.102:0, 1:449:9, allow +08/21-21:28:40.615436, 43223388, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:29:06.766377, 43235504, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:30:49.820417, 43290578, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:34:45.920008, 43408637, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:34:51.709964, 43410967, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:34:56.960227, 43413910, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:35:03.510884, 43420314, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:37:29.976415, 43461606, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:37:50.617021, 43468797, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:39:48.811625, 43499677, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:39:56.461834, 43502595, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:42:06.796923, 43530975, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:44:20.242225, 43556012, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:44:21.202314, 43556160, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:48:18.551524, 43606164, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:49:03.663463, 43613729, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:49:32.994458, 43619169, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:52:11.600846, 43656118, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:52:54.752360, 43664149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-21:54:12.085524, 43678347, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-21:54:20.685760, 43680265, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-21:56:45.596609, 43706033, ICMP, raw, 62, C2S, 10.255.255.5:0, 125.39.141.133:0, 1:449:9, allow +08/21-21:56:45.600725, 43706037, ICMP, raw, 62, C2S, 10.255.255.5:0, 125.39.141.133:0, 1:449:9, allow +08/21-21:56:45.605584, 43706038, ICMP, raw, 62, C2S, 10.255.255.5:0, 125.39.141.133:0, 1:449:9, allow +08/21-21:56:45.616540, 43706041, ICMP, raw, 62, C2S, 10.255.255.5:0, 125.39.141.133:0, 1:449:9, allow +08/21-21:57:10.382526, 43710455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:00:41.590798, 43749705, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-22:01:22.602499, 43760831, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:02:27.684962, 43773165, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:02:39.685391, 43775183, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:04:53.305657, 43800082, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-22:05:49.823386, 43813940, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-22:06:03.293533, 43816144, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:07:10.506147, 43829143, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:08:26.979021, 43842765, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:08:50.810072, 43846509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:09:08.540688, 43850604, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:10:52.194818, 43872345, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:11:03.635320, 43874392, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:11:48.356962, 43881518, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:14:16.812615, 43908658, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.47.254.178:0, 1:449:9, allow +08/21-22:14:21.827711, 43909554, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.47.254.178:0, 1:449:9, allow +08/21-22:14:52.476267, 43915855, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-22:17:45.903901, 43948992, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.147:0, 1:449:9, allow +08/21-22:17:45.907717, 43948993, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.147:0, 1:449:9, allow +08/21-22:17:45.914715, 43948994, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.147:0, 1:449:9, allow +08/21-22:17:45.915519, 43948995, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.57.9.147:0, 1:449:9, allow +08/21-22:18:26.312655, 43956061, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:18:48.113441, 43963387, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:19:21.124694, 43970371, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:24:15.506442, 44033861, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:24:48.377656, 44040742, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:26:35.941669, 44063283, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:27:00.921954, 44067498, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-22:29:14.078042, 44093349, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:29:58.369538, 44101497, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:31:32.493506, 44123402, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:36:47.435937, 44196391, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:37:33.987596, 44204775, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:39:07.261320, 44220244, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:42:27.399195, 44268943, ICMP, raw, 62, C2S, 10.255.255.5:0, 194.195.122.95:0, 1:449:9, allow +08/21-22:43:27.331366, 44313347, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:43:30.522169, 44315628, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.181.191.16:0, 1:449:9, allow +08/21-22:43:35.540339, 44319257, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.181.191.16:0, 1:449:9, allow +08/21-22:45:56.407283, 44388509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:46:45.679405, 44398342, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-22:47:05.719919, 44402235, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:49:53.606550, 44434465, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:51:29.541114, 44455005, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.179.83:0, 1:449:9, allow +08/21-22:51:29.541114, 44455006, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.179.83:0, 1:449:9, allow +08/21-22:51:33.543420, 44456076, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.179.83:0, 1:449:9, allow +08/21-22:51:33.543420, 44456077, ICMP, raw, 64, C2S, 10.255.255.5:0, 157.185.179.83:0, 1:449:9, allow +08/21-22:52:44.183401, 44469189, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-22:52:44.983276, 44469318, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:53:26.555107, 44478083, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:53:44.615672, 44481062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-22:54:56.824589, 44495025, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-22:55:18.947410, 44499610, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/21-22:56:09.247926, 44511153, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.91.107.75:0, 1:449:9, allow +08/21-22:56:14.250121, 44512135, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.91.107.75:0, 1:449:9, allow +08/21-22:56:39.722484, 44516360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:56:40.662663, 44516507, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:56:46.653365, 44517285, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:11.724029, 44522794, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:12.663882, 44522932, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:25.174404, 44525811, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:40.994924, 44528760, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:44.114989, 44529201, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:54.145487, 44530852, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:57:54.305422, 44530909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:58:19.756633, 44535967, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:58:25.546703, 44536879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.168.40.211:0, 1:399:9, allow +08/21-22:58:26.786878, 44536987, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-22:59:45.009817, 44550822, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:00:54.692448, 44562374, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:01:08.140797, 44564663, ICMP, raw, 62, C2S, 10.255.255.5:0, 170.39.227.143:0, 1:449:9, allow +08/21-23:01:08.140797, 44564664, ICMP, raw, 62, C2S, 10.255.255.5:0, 170.39.227.143:0, 1:449:9, allow +08/21-23:01:08.142727, 44564665, ICMP, raw, 62, C2S, 10.255.255.5:0, 170.39.227.143:0, 1:449:9, allow +08/21-23:01:08.142727, 44564666, ICMP, raw, 62, C2S, 10.255.255.5:0, 170.39.227.143:0, 1:449:9, allow +08/21-23:01:37.757130, 44570360, ICMP, raw, 72, C2S, 10.255.255.5:0, 198.148.92.176:0, 1:449:9, allow +08/21-23:01:40.114484, 44570710, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:01:42.759041, 44571166, ICMP, raw, 72, C2S, 10.255.255.5:0, 198.148.92.176:0, 1:449:9, allow +08/21-23:01:44.494480, 44571587, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:03:38.618963, 44601794, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:04:20.906273, 44610844, ICMP, raw, 72, C2S, 10.255.255.5:0, 184.75.215.61:0, 1:449:9, allow +08/21-23:04:25.908407, 44611728, ICMP, raw, 72, C2S, 10.255.255.5:0, 184.75.215.61:0, 1:449:9, allow +08/21-23:04:43.116423, 44614621, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:05:39.323807, 44625101, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-23:06:07.824731, 44631896, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:06:40.749041, 44639820, ICMP, raw, 72, C2S, 10.255.255.5:0, 23.111.254.249:0, 1:449:9, allow +08/21-23:06:45.750316, 44640761, ICMP, raw, 72, C2S, 10.255.255.5:0, 23.111.254.249:0, 1:449:9, allow +08/21-23:08:57.860834, 44666635, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.152.33.91:0, 1:449:9, allow +08/21-23:09:02.862123, 44667845, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.152.33.91:0, 1:449:9, allow +08/21-23:09:54.737591, 44678916, ICMP, raw, 72, C2S, 10.255.255.5:0, 43.157.136.212:0, 1:449:9, allow +08/21-23:09:55.738592, 44679148, ICMP, raw, 72, C2S, 10.255.255.5:0, 43.157.136.212:0, 1:449:9, allow +08/21-23:09:57.555670, 44679549, ICMP, raw, 72, C2S, 10.255.255.5:0, 43.157.136.212:0, 1:449:9, allow +08/21-23:09:58.556387, 44679715, ICMP, raw, 72, C2S, 10.255.255.5:0, 43.157.136.212:0, 1:449:9, allow +08/21-23:12:22.349139, 44707770, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.169.251:0, 1:449:9, allow +08/21-23:12:27.350195, 44708474, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.169.251:0, 1:449:9, allow +08/21-23:15:21.410980, 44742007, ICMP, raw, 98, C2S, 10.255.255.5:0, 176.124.32.11:0, 1:449:9, allow +08/21-23:16:29.719190, 44753369, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.118.42.254:0, 1:399:9, allow +08/21-23:16:56.450380, 44757569, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:19:53.257173, 44791161, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:23:41.716075, 44844053, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:24:37.068464, 44853887, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:24:56.628981, 44857218, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:25:40.940985, 44865217, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:25:52.211207, 44866713, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:28:00.047306, 44891574, ICMP, raw, 72, C2S, 10.255.255.5:0, 162.220.51.35:0, 1:449:9, allow +08/21-23:28:05.049432, 44892247, ICMP, raw, 72, C2S, 10.255.255.5:0, 162.220.51.35:0, 1:449:9, allow +08/21-23:29:38.060282, 44908150, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:30:44.752596, 44935680, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:30:57.273359, 44948960, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:31:01.603501, 44949880, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:32:14.656295, 45061121, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:35:49.264701, 45287274, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:36:13.415585, 45291487, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:36:34.325751, 45295052, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-23:37:19.868490, 45302813, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:40:06.114806, 45337024, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:41:00.426979, 45346393, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:42:30.270493, 45362392, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.241.129.61:0, 1:399:9, allow +08/21-23:47:14.481545, 45421641, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:49:17.546383, 45449296, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:50:14.188792, 45461569, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:50:34.849401, 45465434, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/21-23:51:28.871679, 45481885, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/21-23:51:40.321721, 45485115, ICMP, raw, 112, C2S, 10.255.255.5:0, 104.166.182.132:0, 1:449:9, allow +08/21-23:53:12.005648, 45506863, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:53:28.486313, 45509835, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:54:25.878689, 45521285, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:54:50.949420, 45527758, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/21-23:55:16.060450, 45536228, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/21-23:55:39.741613, 45541836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:58:39.028359, 45575781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/21-23:59:36.415262, 45586540, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.236.16.163:0, 1:449:9, allow +08/21-23:59:36.415435, 45586541, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.236.16.163:0, 1:449:9, allow +08/21-23:59:36.418119, 45586543, ICMP, raw, 62, C2S, 10.255.255.5:0, 124.236.16.163:0, 1:449:9, allow +08/22-00:01:34.445181, 45900192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:04:01.641199, 45936640, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:04:38.500332, 45945823, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:04:43.504538, 45947119, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:05:38.194841, 45961534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:06:00.629105, 45968931, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:08:10.450835, 45998085, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:08:19.917113, 46000712, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.1.162:0, 1:449:9, allow +08/22-00:09:45.174533, 46019129, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:10:50.907188, 46035534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:11:00.407508, 46037779, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:13:44.704130, 46074389, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:14:20.473107, 46083508, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.149.234:0, 1:449:9, allow +08/22-00:14:25.473077, 46084682, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.149.234:0, 1:449:9, allow +08/22-00:15:05.267242, 46093243, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:16:01.589309, 46105663, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:17:57.341686, 46132979, ICMP, raw, 112, C2S, 10.255.255.5:0, 8.45.52.133:0, 1:449:9, allow +08/22-00:18:26.503124, 46139923, ICMP, raw, 62, C2S, 10.255.255.5:0, 113.200.63.216:0, 1:449:9, allow +08/22-00:19:52.804384, 46160374, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:20:04.144978, 46163609, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:21:38.702659, 46186238, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:21:44.202873, 46187041, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:24:07.078396, 46216595, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:24:43.419870, 46224837, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:26:15.483351, 46243270, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:26:23.493763, 46244868, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:26:42.984484, 46248310, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:26:50.904873, 46249684, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:27:19.505964, 46256491, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:27:21.185935, 46256854, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:27:33.226444, 46259291, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:27:34.536613, 46259442, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:28:41.149184, 46275494, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:29:10.340392, 46282053, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:29:26.571016, 46286002, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:29:28.660960, 46286256, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:29:36.571325, 46287622, ICMP, raw, 66, C2S, 10.255.255.5:0, 172.206.142.100:0, 1:399:9, allow +08/22-00:31:38.243535, 46312744, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-00:35:21.690697, 46449896, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/22-00:36:32.216348, 46461163, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.115.216.137:0, 1:449:9, allow +08/22-00:36:37.217396, 46461752, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.115.216.137:0, 1:449:9, allow +08/22-00:37:11.369241, 46468045, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:37:53.550730, 46473896, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-00:42:39.242030, 46522523, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:42:55.102676, 46524585, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:43:00.303116, 46525351, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-00:45:25.408488, 46547228, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:46:34.663704, 46557504, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:34.667095, 46557505, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:38.666395, 46558010, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:38.670397, 46558011, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:46.666854, 46559076, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:50.667827, 46559675, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:51.677963, 46559874, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:46:55.678485, 46560531, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:47:03.700726, 46561677, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:47:07.702674, 46562215, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:47:12.703216, 46563246, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:47:16.703368, 46564082, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.162.238.1:0, 1:449:9, allow +08/22-00:55:35.922510, 46650260, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:57:23.847056, 46668128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-00:58:20.705683, 46676616, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.131.213:0, 1:449:9, allow +08/22-00:59:26.181683, 46686740, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-01:01:00.744201, 46704669, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-01:02:07.485460, 46721304, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.31.22.136:0, 1:449:9, allow +08/22-01:02:12.488643, 46722619, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.31.22.136:0, 1:449:9, allow +08/22-01:02:18.738520, 46724354, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:06:11.067410, 46771564, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:10:15.849916, 46818297, ICMP, raw, 72, C2S, 10.255.255.5:0, 167.160.93.230:0, 1:449:9, allow +08/22-01:10:21.031129, 46819181, ICMP, raw, 72, C2S, 10.255.255.5:0, 167.160.93.230:0, 1:449:9, allow +08/22-01:10:40.368193, 46821995, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:12:29.402337, 46856945, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:12:46.473056, 46859551, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:13:08.783819, 46867824, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:13:30.054673, 46871512, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:13:41.385322, 46873078, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:15:30.579535, 46893872, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:16:35.112755, 46904922, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.135.148.140:0, 1:449:9, allow +08/22-01:16:40.114883, 46905489, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.135.148.140:0, 1:449:9, allow +08/22-01:17:38.148008, 46915743, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.247.207:0, 1:449:9, allow +08/22-01:17:44.609361, 46916808, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.247.207:0, 1:449:9, allow +08/22-01:19:09.228087, 46931063, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:23:55.720900, 46990082, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.57.205:0, 1:449:9, allow +08/22-01:25:08.682337, 47002104, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:26:50.693832, 47017641, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-01:28:08.569063, 47033444, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:28:46.430666, 47039010, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:29:14.911823, 47044376, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:29:58.838119, 47052312, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.224.14.198:0, 1:449:9, allow +08/22-01:30:02.841135, 47053630, ICMP, raw, 64, C2S, 10.255.255.5:0, 183.224.14.198:0, 1:449:9, allow +08/22-01:30:03.143729, 47053660, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:33:57.122841, 47302959, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:35:30.586580, 47378664, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:36:05.857782, 47387464, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:37:55.862104, 47404593, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:38:17.752996, 47408505, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:40:32.938256, 47434104, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:41:27.340433, 47442875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:41:29.680500, 47443354, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:42:42.820719, 47455481, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.133.64.19:0, 1:449:9, allow +08/22-01:42:43.123917, 47455509, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.133.64.19:0, 1:449:9, allow +08/22-01:42:43.367838, 47455520, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.133.64.19:0, 1:449:9, allow +08/22-01:42:43.369689, 47455523, ICMP, raw, 62, C2S, 10.255.255.5:0, 23.133.64.19:0, 1:449:9, allow +08/22-01:42:55.823911, 47457417, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:43:23.434963, 47462872, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:44:41.009660, 47476085, ICMP, raw, 72, C2S, 10.255.255.5:0, 145.14.131.156:0, 1:449:9, allow +08/22-01:44:46.012848, 47476805, ICMP, raw, 72, C2S, 10.255.255.5:0, 145.14.131.156:0, 1:449:9, allow +08/22-01:44:53.378420, 47477822, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:48:42.097316, 47529860, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:48:48.773077, 47530746, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.245.214.186:0, 1:449:9, allow +08/22-01:48:53.778060, 47531441, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.245.214.186:0, 1:449:9, allow +08/22-01:49:12.088910, 47535028, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:50:51.352459, 47551128, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:51:11.518088, 47554260, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.145.196:0, 1:449:9, allow +08/22-01:51:15.083590, 47554694, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-01:51:42.575267, 47558785, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.69:0, 1:449:9, allow +08/22-01:51:43.125805, 47558850, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.75:0, 1:449:9, allow +08/22-01:51:43.471728, 47558880, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.78:0, 1:449:9, allow +08/22-01:53:50.069494, 47579359, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-01:53:55.719576, 47580352, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-01:55:26.513181, 47598407, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:02:25.702583, 47713814, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.31.22.170:0, 1:449:9, allow +08/22-02:02:30.704670, 47714885, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.31.22.170:0, 1:449:9, allow +08/22-02:02:37.710094, 47715885, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:02:43.320438, 47716706, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:02:43.920244, 47716770, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/22-02:05:38.567167, 47753115, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:05:46.117404, 47754628, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:07:12.061006, 47771983, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:08:39.972898, 47791209, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.223.228:0, 1:449:9, allow +08/22-02:08:45.383238, 47792321, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.223.228:0, 1:449:9, allow +08/22-02:10:00.967588, 47806823, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:11:36.671102, 47831637, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:11:48.091471, 47833272, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:12:55.464248, 47851059, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:16:57.783890, 47900340, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:18:55.377513, 47924102, ICMP, raw, 62, C2S, 10.255.255.5:0, 118.113.198.159:0, 1:449:9, allow +08/22-02:18:55.389480, 47924103, ICMP, raw, 62, C2S, 10.255.255.5:0, 118.113.198.159:0, 1:449:9, allow +08/22-02:18:55.404537, 47924107, ICMP, raw, 62, C2S, 10.255.255.5:0, 118.113.198.159:0, 1:449:9, allow +08/22-02:18:55.651514, 47924186, ICMP, raw, 62, C2S, 10.255.255.5:0, 118.113.198.159:0, 1:449:9, allow +08/22-02:19:09.338777, 47927004, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:21:02.183168, 47949777, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:22:59.717787, 47976372, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:23:07.418129, 47977695, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:23:38.339308, 47984463, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:24:03.756968, 47989657, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/22-02:24:40.582053, 47997758, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:25:06.673005, 48003122, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:27:38.778759, 48028098, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:28:11.920389, 48032752, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:31:40.008379, 48065551, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:32:32.700741, 48074447, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-02:32:32.700741, 48074448, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-02:33:27.202362, 48178915, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:36:28.461115, 48206270, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-02:36:41.670337, 48208171, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:36:49.040533, 48209378, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:37:10.411264, 48212629, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:40:43.117899, 48246419, ICMP, raw, 92, C2S, 10.255.255.5:0, 78.47.43.201:0, 1:449:9, allow +08/22-02:43:40.626527, 48271895, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:45:42.971303, 48290014, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:46:13.239238, 48294261, ICMP, raw, 72, C2S, 10.255.255.5:0, 205.209.152.106:0, 1:449:9, allow +08/22-02:46:18.241480, 48295150, ICMP, raw, 72, C2S, 10.255.255.5:0, 205.209.152.106:0, 1:449:9, allow +08/22-02:48:53.328774, 48319657, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:50:09.551684, 48332540, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:50:39.863058, 48337608, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:50:53.186269, 48339240, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-02:50:56.313831, 48339783, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:51:38.075439, 48345596, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:52:14.066630, 48351814, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:53:18.309190, 48362109, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:53:36.889817, 48364979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:53:39.480065, 48365282, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-02:54:06.762673, 48380181, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.223.186:0, 1:449:9, allow +08/22-02:54:12.068045, 48390825, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.63.223.186:0, 1:449:9, allow +08/22-02:54:31.321978, 48433628, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-02:54:48.092564, 48436424, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:54:59.548780, 48438169, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.3.163.136:0, 1:449:9, allow +08/22-02:55:04.548851, 48438780, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.3.163.136:0, 1:449:9, allow +08/22-02:57:21.078698, 48459560, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-02:59:55.684579, 48484057, ICMP, raw, 62, C2S, 10.255.255.5:0, 120.232.252.226:0, 1:449:9, allow +08/22-02:59:55.684579, 48484058, ICMP, raw, 62, C2S, 10.255.255.5:0, 120.232.252.226:0, 1:449:9, allow +08/22-03:00:04.014810, 48485575, ICMP, raw, 72, C2S, 10.255.255.5:0, 144.208.127.177:0, 1:449:9, allow +08/22-03:00:09.023120, 48486442, ICMP, raw, 72, C2S, 10.255.255.5:0, 144.208.127.177:0, 1:449:9, allow +08/22-03:00:27.105932, 48489943, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:27.336179, 48489996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:29.005962, 48490229, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:29.246097, 48490267, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:30.106199, 48490404, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:30.436076, 48490419, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:30.746247, 48490459, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:30.996215, 48490476, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:31.116246, 48490494, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:31.486384, 48490545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:31.506035, 48490557, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:33.896252, 48490966, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:34.166217, 48490993, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:35.436380, 48491155, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:35.946483, 48491257, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.096334, 48491283, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.106529, 48491286, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.456304, 48491320, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.536488, 48491327, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.806354, 48491361, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.816317, 48491363, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.846436, 48491366, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:36.986381, 48491393, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:37.296391, 48491461, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:37.696634, 48491516, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:38.677101, 48491732, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:39.606354, 48492174, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:39.676495, 48492184, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:40.196463, 48492282, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:00:40.237346, 48492286, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:40.416487, 48492318, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:40.906694, 48492416, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:40.966644, 48492423, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:41.596548, 48492521, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:41.656609, 48492529, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:43.176845, 48492774, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:43.596625, 48492844, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:44.206692, 48492933, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:47.266764, 48493432, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:47.736800, 48493508, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:48.166854, 48493592, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:48.546858, 48493645, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:48.967163, 48493694, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:49.726845, 48493844, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:49.756877, 48493849, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:50.107174, 48493891, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:50.336835, 48493922, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:51.886965, 48494195, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:51.947012, 48494204, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:52.676944, 48494301, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:52.876958, 48494322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:54.407090, 48494536, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:54.476989, 48494544, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:54.967205, 48494648, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:55.847192, 48494847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:55.887223, 48494850, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:56.997221, 48495118, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:57.677117, 48495236, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:57.747253, 48495248, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:57.907255, 48495282, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:57.937190, 48495289, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:58.041046, 48495295, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:58.677229, 48495397, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:00:59.977420, 48495691, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:00.677215, 48495793, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:01.067261, 48495875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:01.957348, 48496079, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:02.077472, 48496092, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:02.637470, 48496188, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:02.827373, 48496210, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:03.047333, 48496232, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:03.247494, 48496255, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:03.567355, 48496306, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:04.727388, 48496436, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:05.807675, 48496604, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:05.927695, 48496617, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:06.447467, 48496732, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:06.627509, 48496749, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:07.017510, 48496838, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:07.117577, 48496845, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:07.897560, 48496967, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:08.477547, 48497049, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:09.677568, 48497435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:10.477766, 48497543, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:10.657697, 48497592, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:11.337760, 48497724, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:11.667745, 48497806, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:11.677668, 48497807, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:11.697733, 48497808, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:12.067786, 48497860, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:12.587746, 48497942, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:12.607965, 48497948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:12.827786, 48497970, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:12.847897, 48497983, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.267880, 48498192, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.337778, 48498205, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.448092, 48498214, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.707790, 48498249, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.877991, 48498346, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:14.897798, 48498352, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:16.227811, 48498613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:16.577916, 48498692, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:16.677973, 48498703, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:16.998060, 48498728, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:17.488001, 48498782, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:17.747836, 48498836, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:19.287943, 48499166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:19.758064, 48499266, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:20.528096, 48499413, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:20.777938, 48499452, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:21.458278, 48499577, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:22.538182, 48499892, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:23.048183, 48499994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:23.118247, 48500003, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:23.488194, 48500051, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:24.158247, 48500144, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:25.178182, 48500262, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:25.398378, 48500303, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:25.538206, 48500322, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:26.328364, 48500417, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:26.928267, 48500508, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:26.989252, 48500513, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:27.278259, 48500553, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:27.408520, 48500565, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:27.958644, 48500639, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:28.538284, 48500699, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:29.548611, 48500825, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:30.478624, 48500984, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:30.638469, 48501012, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:31.848567, 48501197, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:31.978700, 48501211, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:32.018601, 48501214, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:33.218675, 48501422, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:33.348725, 48501450, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:34.268582, 48501648, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:35.228613, 48501744, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:35.308582, 48501758, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:36.228611, 48501851, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:38.068750, 48502172, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:38.148815, 48502181, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:38.288802, 48502202, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:39.268704, 48502380, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:39.348708, 48502404, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:41.318856, 48502733, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:41.818973, 48502826, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:41.919023, 48502862, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:43.108962, 48503053, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:43.298997, 48503073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:43.339009, 48503081, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:44.288963, 48503188, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:45.399021, 48503312, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:45.669111, 48503345, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:45.829207, 48503364, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:46.089115, 48503427, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:47.399210, 48503588, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:48.419181, 48503769, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:48.659232, 48503819, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:49.009344, 48503903, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:50.739301, 48504190, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:50.789291, 48504198, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:51.239262, 48504249, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:51.429595, 48504296, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:51.489314, 48504309, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:51.749427, 48504379, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:52.179516, 48504421, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:52.279225, 48504433, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:52.429489, 48504461, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:52.509413, 48504467, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:52.959331, 48504548, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:53.139321, 48504574, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:53.149362, 48504575, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:55.719415, 48505058, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:56.859561, 48505325, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:57.239430, 48505379, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:58.189467, 48505840, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:59.809607, 48506487, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:01:59.989566, 48506533, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:00.499660, 48506658, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:00.579682, 48506696, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:01.529678, 48506957, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:01.639673, 48506999, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:02.359833, 48507284, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:02.759928, 48507429, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:02.879688, 48507508, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:03.439741, 48507702, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:04.260000, 48507919, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:04.489769, 48507979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:04.619779, 48508038, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:04.709789, 48508057, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:05.179859, 48508210, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:05.889944, 48508538, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:06.409764, 48508881, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:07.090020, 48509071, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:07.549968, 48509167, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:08.730052, 48509545, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:10.700263, 48510305, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:12.450192, 48510681, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:12.850113, 48510989, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:13.120246, 48511046, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:13.140165, 48511052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:13.230381, 48511064, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:13.240195, 48511065, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:14.010174, 48511250, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:14.220193, 48511300, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:14.490317, 48511354, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:15.880391, 48511792, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:16.050233, 48511818, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:16.530533, 48511893, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:16.790463, 48511951, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:17.400346, 48512034, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:18.800406, 48512457, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:19.740339, 48512607, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:20.330462, 48512688, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:20.480364, 48512711, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:20.880426, 48512790, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:21.100429, 48512866, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:22.080436, 48512994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:22.750802, 48513112, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:23.050535, 48513198, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:24.500542, 48513402, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:24.640537, 48513432, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:24.680601, 48513439, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:25.161256, 48513555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:25.520624, 48513681, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:26.430640, 48513866, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:26.900669, 48513996, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:27.000645, 48514004, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:27.220668, 48514050, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:27.520706, 48514073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.060728, 48514149, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.390762, 48514199, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.440684, 48514205, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.520755, 48514215, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.590655, 48514235, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:28.860753, 48514288, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:30.520772, 48514568, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:31.110836, 48514617, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:31.380957, 48514651, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:31.660899, 48514754, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:31.940822, 48514798, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:32.520883, 48514892, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:32.651081, 48514902, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:33.331142, 48514999, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:33.470837, 48515044, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:34.210962, 48515139, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:36.041812, 48515355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:36.511027, 48515425, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:37.531243, 48515534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:37.901247, 48515600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:02:38.011035, 48515689, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.183:0, 1:399:9, allow +08/22-03:03:05.864049, 48520349, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.26.37.242:0, 1:449:9, allow +08/22-03:03:06.885245, 48520493, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.26.37.242:0, 1:449:9, allow +08/22-03:03:09.867205, 48521293, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.26.37.242:0, 1:449:9, allow +08/22-03:03:10.891057, 48521432, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.26.37.242:0, 1:449:9, allow +08/22-03:04:08.578953, 48532050, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.143.128.127:0, 1:449:9, allow +08/22-03:04:13.580143, 48534415, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.143.128.127:0, 1:449:9, allow +08/22-03:06:47.950896, 48559468, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:07:10.311816, 48563578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:07:43.493076, 48569286, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:08:38.015303, 48607555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:11:02.390948, 48632398, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:13:23.499897, 48659291, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.143.128.123:0, 1:449:9, allow +08/22-03:13:28.505935, 48659911, ICMP, raw, 72, C2S, 10.255.255.5:0, 37.143.128.123:0, 1:449:9, allow +08/22-03:15:41.521956, 48683551, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:17:57.658400, 48710447, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.255.123.224:0, 1:449:9, allow +08/22-03:17:57.660898, 48710448, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.255.123.224:0, 1:449:9, allow +08/22-03:17:57.668579, 48710449, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.255.123.224:0, 1:449:9, allow +08/22-03:17:57.673264, 48710450, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.255.123.224:0, 1:449:9, allow +08/22-03:18:52.268068, 48725138, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-03:21:25.585370, 48927429, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:23:09.436855, 48944325, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.186.85:0, 1:449:9, allow +08/22-03:23:16.117024, 48946118, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.186.85:0, 1:449:9, allow +08/22-03:23:23.017323, 48947297, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.38.186.85:0, 1:449:9, allow +08/22-03:23:36.000506, 48949266, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-03:25:04.533962, 49029895, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:25:25.725035, 49033360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:26:48.948033, 49048873, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:27:37.300224, 49057780, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:28:15.401445, 49063579, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:30:18.644039, 49084290, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:30:18.662045, 49084294, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:30:18.679989, 49084296, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:31:11.127638, 49092827, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:31:11.128791, 49092828, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:31:11.133664, 49092829, ICMP, raw, 88, C2S, 10.255.255.5:0, 145.239.89.233:0, 1:449:9, allow +08/22-03:33:07.884716, 49112336, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.123.44.172:0, 1:449:9, allow +08/22-03:33:08.122884, 49112369, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:33:12.888832, 49113614, ICMP, raw, 72, C2S, 10.255.255.5:0, 190.123.44.172:0, 1:449:9, allow +08/22-03:33:18.934961, 49114746, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:35:35.220043, 49145052, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.47.253.31:0, 1:449:9, allow +08/22-03:35:40.220262, 49145778, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.47.253.31:0, 1:449:9, allow +08/22-03:39:05.256856, 49182525, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:39:35.678176, 49187614, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:39:45.618479, 49189239, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:40:15.279689, 49193748, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:45:34.725657, 49315110, ICMP, raw, 112, C2S, 10.255.255.5:0, 47.246.23.195:0, 1:449:9, allow +08/22-03:46:54.195289, 49335532, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:48:33.969305, 49352884, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:49:12.250739, 49359161, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:51:00.535121, 49377538, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:54:12.292747, 49475447, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-03:55:26.715550, 49505710, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-03:56:43.938565, 49548262, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-03:57:48.020992, 49586130, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:57:59.011468, 49592801, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-03:59:15.084440, 49629044, ICMP, raw, 72, C2S, 10.255.255.5:0, 165.22.156.107:0, 1:449:9, allow +08/22-03:59:20.086481, 49631515, ICMP, raw, 72, C2S, 10.255.255.5:0, 165.22.156.107:0, 1:449:9, allow +08/22-04:03:01.343234, 49711706, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:04:19.726463, 49729624, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:04:44.227578, 49733809, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:06:34.002039, 49752567, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.3.163.246:0, 1:449:9, allow +08/22-04:06:39.019026, 49753296, ICMP, raw, 72, C2S, 10.255.255.5:0, 74.3.163.246:0, 1:449:9, allow +08/22-04:06:49.522366, 49755000, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:07:56.386514, 49775963, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.56.118.127:0, 1:449:9, allow +08/22-04:08:01.839279, 49776919, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.56.118.127:0, 1:449:9, allow +08/22-04:08:58.457387, 49789717, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:12:21.905361, 49843286, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/22-04:17:58.798800, 49912086, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-04:19:41.502672, 49933153, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:22:38.729623, 49963441, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:23:49.517341, 49979389, ICMP, raw, 72, C2S, 10.255.255.5:0, 144.208.127.136:0, 1:449:9, allow +08/22-04:23:55.456715, 49980276, ICMP, raw, 72, C2S, 10.255.255.5:0, 144.208.127.136:0, 1:449:9, allow +08/22-04:27:45.801534, 50095396, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:30:39.958652, 50130559, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-04:30:59.829195, 50134188, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-04:31:19.201827, 50138586, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-04:31:30.800371, 50140301, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:31:35.380750, 50141009, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:36:07.281295, 50377517, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:41:03.622715, 50428646, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.51.74.12:0, 1:449:9, allow +08/22-04:41:04.862859, 50428829, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:41:07.625714, 50429383, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.51.74.12:0, 1:449:9, allow +08/22-04:41:08.651679, 50429603, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.51.74.12:0, 1:449:9, allow +08/22-04:41:12.658918, 50430624, ICMP, raw, 64, C2S, 10.255.255.5:0, 111.51.74.12:0, 1:449:9, allow +08/22-04:41:54.094858, 50436483, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-04:43:23.458302, 50450898, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:43:59.423364, 50456937, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.144.104.141:0, 1:449:9, allow +08/22-04:44:04.552312, 50457611, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.144.104.141:0, 1:449:9, allow +08/22-04:46:57.146617, 50498943, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:47:02.646849, 50504436, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:51:09.056556, 50618959, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:51:39.927818, 50625377, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:52:34.249921, 50639656, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:56:22.458841, 50692858, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:56:38.089494, 50695801, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-04:57:53.972496, 50716671, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:58:29.243977, 50725445, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:59:42.886693, 50741110, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-04:59:43.906828, 50741250, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:00:01.488304, 50745055, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:00:42.898819, 50760565, ICMP, raw, 112, C2S, 10.255.255.5:0, 163.181.131.213:0, 1:449:9, allow +08/22-05:01:57.080699, 50777149, ICMP, raw, 72, C2S, 10.255.255.5:0, 138.68.51.158:0, 1:449:9, allow +08/22-05:02:02.081636, 50778329, ICMP, raw, 72, C2S, 10.255.255.5:0, 138.68.51.158:0, 1:449:9, allow +08/22-05:04:51.243010, 50883022, ICMP, raw, 72, C2S, 10.255.255.5:0, 31.40.212.224:0, 1:449:9, allow +08/22-05:04:56.245438, 50884348, ICMP, raw, 72, C2S, 10.255.255.5:0, 31.40.212.224:0, 1:449:9, allow +08/22-05:05:05.429622, 50886281, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:08:37.839501, 50933425, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.32.191.35:0, 1:449:9, allow +08/22-05:08:37.841320, 50933426, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.32.191.35:0, 1:449:9, allow +08/22-05:08:37.845294, 50933427, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.32.191.35:0, 1:449:9, allow +08/22-05:08:37.845376, 50933428, ICMP, raw, 62, C2S, 10.255.255.5:0, 152.32.191.35:0, 1:449:9, allow +08/22-05:09:32.669925, 50945656, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-05:09:50.850554, 50949146, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:10:24.411890, 50959078, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:11:34.084705, 50974458, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:14:17.890302, 51014705, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-05:14:32.981606, 51018249, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:16:03.875398, 51036725, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:19:01.702298, 51067710, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.155.120:0, 1:399:9, allow +08/22-05:21:55.379133, 51105364, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:22:34.270798, 51112110, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:22:54.101345, 51114819, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.3.59.207:0, 1:399:9, allow +08/22-05:23:42.553280, 51122591, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:24:40.955467, 51132431, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:28:01.068824, 51165048, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-05:28:06.708308, 51165646, ICMP, raw, 72, C2S, 10.255.255.5:0, 209.182.225.160:0, 1:449:9, allow +08/22-05:28:10.143776, 51166095, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:28:11.709392, 51166749, ICMP, raw, 72, C2S, 10.255.255.5:0, 209.182.225.160:0, 1:449:9, allow +08/22-05:28:41.175057, 51171625, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-05:29:03.868033, 51175039, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.71.158.71:0, 1:449:9, allow +08/22-05:29:08.875257, 51175800, ICMP, raw, 72, C2S, 10.255.255.5:0, 45.71.158.71:0, 1:449:9, allow +08/22-05:29:48.718248, 51182136, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:31:00.870279, 51197297, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:34:11.801226, 51347226, ICMP, raw, 72, C2S, 10.255.255.5:0, 91.148.134.246:0, 1:449:9, allow +08/22-05:34:16.813380, 51348433, ICMP, raw, 72, C2S, 10.255.255.5:0, 91.148.134.246:0, 1:449:9, allow +08/22-05:35:50.731758, 51365110, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-05:36:33.653421, 51372524, ICMP, raw, 72, C2S, 10.255.255.5:0, 203.29.240.224:0, 1:449:9, allow +08/22-05:36:38.763569, 51373226, ICMP, raw, 72, C2S, 10.255.255.5:0, 203.29.240.224:0, 1:449:9, allow +08/22-05:36:39.153809, 51373275, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:36:42.503839, 51373771, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:38:50.228955, 51394307, ICMP, raw, 88, C2S, 10.255.255.5:0, 192.241.149.109:0, 1:399:9, allow +08/22-05:38:50.228955, 51394308, ICMP, raw, 88, C2S, 10.255.255.5:0, 192.241.149.109:0, 1:399:9, allow +08/22-05:41:34.395440, 51455676, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:34.495373, 51455687, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:34.585300, 51455700, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:35.200298, 51455790, ICMP, raw, 62, C2S, 10.255.255.5:0, 192.71.26.103:0, 1:449:9, allow +08/22-05:41:35.247309, 51455799, ICMP, raw, 62, C2S, 10.255.255.5:0, 192.71.26.103:0, 1:449:9, allow +08/22-05:41:35.486270, 51455818, ICMP, raw, 62, C2S, 10.255.255.5:0, 192.71.26.103:0, 1:449:9, allow +08/22-05:41:35.550323, 51455825, ICMP, raw, 62, C2S, 10.255.255.5:0, 192.71.26.103:0, 1:449:9, allow +08/22-05:41:35.985288, 51455877, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:36.285423, 51455930, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:42.215617, 51456720, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:44.835882, 51457019, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:49.405875, 51457712, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:54.456173, 51458518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:55.038501, 51458659, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:55.511246, 51458844, ICMP, raw, 64, C2S, 10.255.255.5:0, 36.101.206.21:0, 1:449:9, allow +08/22-05:41:55.518199, 51458847, ICMP, raw, 64, C2S, 10.255.255.5:0, 36.101.206.21:0, 1:449:9, allow +08/22-05:41:57.266382, 51459141, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:57.516240, 51459206, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:59.156468, 51459376, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:41:59.513492, 51459410, ICMP, raw, 64, C2S, 10.255.255.5:0, 36.101.206.21:0, 1:449:9, allow +08/22-05:41:59.520384, 51459412, ICMP, raw, 64, C2S, 10.255.255.5:0, 36.101.206.21:0, 1:449:9, allow +08/22-05:42:00.996321, 51459613, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:01.626550, 51459757, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:05.666448, 51461583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:05.766746, 51461589, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:07.946820, 51461759, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:11.886728, 51462513, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:12.956765, 51463000, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:15.896965, 51463512, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:17.566983, 51464435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:23.617219, 51465358, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:23.877443, 51465390, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:25.547375, 51465625, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:28.227399, 51465957, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:28.727462, 51466006, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:28.847605, 51466014, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:29.847629, 51466115, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:31.187685, 51466387, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:32.227507, 51467204, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:32.727474, 51468030, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:33.397828, 51468255, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:33.397828, 51468256, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:36.117743, 51469019, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:37.427763, 51469177, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:37.677710, 51469238, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:39.187969, 51469954, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:39.567774, 51470033, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:39.687869, 51470073, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:39.707805, 51470076, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:39.987850, 51470148, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:40.657802, 51470258, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:41.667918, 51471142, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:43.018022, 51471958, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:44.178063, 51472128, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:45.328012, 51472459, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:45.388082, 51472490, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:46.618225, 51472875, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:48.038358, 51473436, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:48.198288, 51473462, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:48.598189, 51473534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:48.608353, 51473536, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:48.618182, 51473538, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.028338, 51473846, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.038784, 51473847, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.078293, 51473855, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.678356, 51473958, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.758435, 51473964, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:49.808400, 51473971, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:50.118278, 51474891, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:50.518264, 51475804, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:51.068457, 51475921, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:51.348459, 51475972, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:51.468332, 51475979, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:51.679139, 51475994, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:51.938336, 51476096, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:52.278360, 51476146, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:52.388621, 51476166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:52.868403, 51476222, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:53.138437, 51476304, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:53.178498, 51476306, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:53.918480, 51476416, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:54.088415, 51476433, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:54.328517, 51476468, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:54.788625, 51476512, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:56.988732, 51476909, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:58.638608, 51477261, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:58.728684, 51477273, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:59.078701, 51477310, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:42:59.148868, 51477330, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:01.328881, 51477734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:01.328882, 51477735, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:02.148816, 51477832, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:03.149004, 51477923, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:03.808866, 51478016, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:03.999375, 51478062, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:05.129218, 51478245, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:05.158872, 51478247, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:05.178915, 51478248, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:05.378908, 51478298, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:05.998889, 51478366, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:06.588954, 51478419, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:06.988974, 51478474, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:07.178897, 51478504, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:07.358895, 51478530, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:07.558836, 51478547, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:07.579084, 51478549, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:07.848938, 51478571, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:10.129297, 51478961, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:10.269118, 51478976, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:11.389346, 51479145, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:12.539114, 51479511, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:12.789117, 51479578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:13.379373, 51479697, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:13.569215, 51479712, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:13.889218, 51479804, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:14.269220, 51479872, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:14.549255, 51479908, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:15.489236, 51480118, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:16.209455, 51480333, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:16.509362, 51480406, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:16.879246, 51480435, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:17.129217, 51480509, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:17.289497, 51480578, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:17.309228, 51480583, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:18.069536, 51480781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:18.209333, 51480882, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:18.549335, 51480948, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:18.729477, 51480968, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:18.789389, 51480993, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:20.139623, 51481190, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:20.619527, 51481318, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:21.029711, 51481355, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:21.699674, 51481476, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:22.119491, 51481520, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:23.779558, 51481781, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:25.419589, 51482046, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:26.119860, 51482152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:26.349647, 51482177, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:26.799823, 51482213, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:27.589652, 51482411, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:27.669678, 51482421, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:28.099740, 51482479, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:28.419705, 51482512, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-05:43:29.189754, 51482588, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:29.669943, 51482633, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:29.699976, 51482639, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:29.819784, 51482668, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:30.649901, 51482908, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:32.650084, 51483230, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:32.850053, 51483275, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:33.349892, 51483370, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:33.459895, 51483387, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:33.520007, 51483391, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:33.929980, 51483554, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:34.560173, 51483699, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:35.090046, 51483776, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:35.719998, 51484011, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:36.340171, 51484070, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:36.350066, 51484071, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:36.860193, 51484141, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:38.000205, 51484239, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:38.260316, 51484305, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:38.490065, 51484371, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:38.840221, 51484408, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:39.070264, 51484455, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:39.280143, 51484505, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:39.470307, 51484527, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:40.240294, 51484592, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:40.280210, 51484595, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:40.640314, 51484662, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:40.930214, 51484734, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:41.310120, 51484787, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:41.360313, 51484804, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:41.880271, 51484862, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:43.043468, 51485067, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:43.480306, 51485107, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:43.840339, 51485166, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:44.160438, 51485195, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:44.360375, 51485225, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:43:44.760482, 51485259, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.169.6.55:0, 1:399:9, allow +08/22-05:44:11.701464, 51489678, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-05:45:06.603614, 51498848, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:47:51.274882, 51527883, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.76.52:0, 1:449:9, allow +08/22-05:47:55.112470, 51528370, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.76.52:0, 1:449:9, allow +08/22-05:47:55.136944, 51528385, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.76.52:0, 1:449:9, allow +08/22-05:47:55.190211, 51528427, ICMP, raw, 62, C2S, 10.255.255.5:0, 185.186.76.52:0, 1:449:9, allow +08/22-05:48:26.941445, 51540655, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:49:38.634492, 51555408, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:51:48.929614, 51579766, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-05:55:44.172624, 51688916, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-05:55:44.172624, 51688917, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-05:55:44.172625, 51688918, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-05:55:44.172625, 51688919, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-05:55:46.316682, 51689391, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-05:55:55.238979, 51691437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:56:28.990490, 51701721, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:58:16.814638, 51744222, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:58:47.215875, 51766821, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-05:59:12.918942, 51772023, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.105.19.188:0, 1:449:9, allow +08/22-05:59:19.263997, 51773499, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.105.19.188:0, 1:449:9, allow +08/22-06:01:39.982527, 51809769, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:03:30.888445, 51831307, ICMP, raw, 72, C2S, 10.255.255.5:0, 197.140.142.65:0, 1:449:9, allow +08/22-06:03:35.890559, 51832228, ICMP, raw, 72, C2S, 10.255.255.5:0, 197.140.142.65:0, 1:449:9, allow +08/22-06:06:47.324023, 51871796, ICMP, raw, 62, C2S, 10.255.255.5:0, 117.144.213.77:0, 1:449:9, allow +08/22-06:14:23.682598, 52049410, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:15:39.045635, 52068879, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:16:32.909185, 52089383, ICMP, raw, 72, C2S, 10.255.255.5:0, 87.121.99.10:0, 1:449:9, allow +08/22-06:16:37.910396, 52090022, ICMP, raw, 72, C2S, 10.255.255.5:0, 87.121.99.10:0, 1:449:9, allow +08/22-06:17:23.009560, 52101586, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:23:54.571894, 52223793, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-06:25:47.181729, 52313852, ICMP, raw, 62, C2S, 10.255.255.5:0, 61.147.171.3:0, 1:449:9, allow +08/22-06:25:47.430689, 52313900, ICMP, raw, 62, C2S, 10.255.255.5:0, 61.147.171.3:0, 1:449:9, allow +08/22-06:31:52.383712, 52483437, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:32:23.784909, 52496508, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:34:16.330021, 52525400, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-06:35:59.917860, 52661063, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.155.10:0, 1:449:9, allow +08/22-06:36:04.920103, 52661896, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.155.10:0, 1:449:9, allow +08/22-06:39:15.993866, 52935841, ICMP, raw, 88, C2S, 10.255.255.5:0, 23.92.27.91:0, 1:449:9, allow +08/22-06:39:15.993866, 52935842, ICMP, raw, 88, C2S, 10.255.255.5:0, 23.92.27.91:0, 1:449:9, allow +08/22-06:39:16.070981, 52935850, ICMP, raw, 88, C2S, 10.255.255.5:0, 23.92.27.91:0, 1:449:9, allow +08/22-06:39:51.297467, 52944324, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.192.124.207:0, 1:449:9, allow +08/22-06:39:56.299669, 52946036, ICMP, raw, 72, C2S, 10.255.255.5:0, 185.192.124.207:0, 1:449:9, allow +08/22-06:40:27.686116, 52955172, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/22-06:41:05.858289, 52965832, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.59.71:0, 1:449:9, allow +08/22-06:41:05.860945, 52965842, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.59.71:0, 1:449:9, allow +08/22-06:41:05.865330, 52965844, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.59.71:0, 1:449:9, allow +08/22-06:41:05.867040, 52965845, ICMP, raw, 62, C2S, 10.255.255.5:0, 38.54.59.71:0, 1:449:9, allow +08/22-06:41:20.655028, 52972184, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:20.897847, 52972240, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.223.102.33:0, 1:449:9, allow +08/22-06:41:21.652973, 52972405, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:22.673123, 52972596, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:22.673123, 52972597, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:25.748529, 52976230, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:25.748529, 52976231, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:26.596999, 52976358, ICMP, raw, 72, C2S, 10.255.255.5:0, 92.223.102.33:0, 1:449:9, allow +08/22-06:41:30.645915, 52977268, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:30.645915, 52977269, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-06:41:50.479277, 52985604, ICMP, raw, 72, C2S, 10.255.255.5:0, 51.81.233.95:0, 1:449:9, allow +08/22-06:41:55.479470, 52987674, ICMP, raw, 72, C2S, 10.255.255.5:0, 51.81.233.95:0, 1:449:9, allow +08/22-06:42:25.456127, 52999361, ICMP, raw, 62, C2S, 10.255.255.5:0, 150.109.186.152:0, 1:449:9, allow +08/22-06:42:25.552972, 52999396, ICMP, raw, 62, C2S, 10.255.255.5:0, 150.109.186.152:0, 1:449:9, allow +08/22-06:42:25.604336, 52999421, ICMP, raw, 62, C2S, 10.255.255.5:0, 150.109.186.152:0, 1:449:9, allow +08/22-06:42:26.787068, 53000380, ICMP, raw, 62, C2S, 10.255.255.5:0, 150.109.186.152:0, 1:449:9, allow +08/22-06:44:28.203306, 53032826, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:46:39.498430, 53067854, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/22-06:47:09.789610, 53076138, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:47:38.610876, 53089664, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-06:47:43.200929, 53091357, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/22-06:47:54.911544, 53093978, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:48:11.012164, 53100727, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:49:21.264817, 53123759, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-06:49:59.986401, 53135729, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-06:51:16.199304, 53158904, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-06:51:53.592991, 53168900, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.175.82.15:0, 1:449:9, allow +08/22-06:51:58.596251, 53170482, ICMP, raw, 72, C2S, 10.255.255.5:0, 107.175.82.15:0, 1:449:9, allow +08/22-06:52:51.993069, 53186152, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-06:54:58.248346, 53262787, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:02:20.060729, 53492717, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:21.062563, 53493117, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:22.059589, 53493415, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:22.059589, 53493416, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:25.059093, 53494629, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:25.059093, 53494630, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:30.052901, 53495816, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:30.052901, 53495817, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:02:35.061951, 53497610, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.135:0, 1:402:16, allow +08/22-07:08:52.340770, 53646204, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-07:09:29.153802, 53655227, ICMP, raw, 72, C2S, 10.255.255.5:0, 146.185.214.51:0, 1:449:9, allow +08/22-07:09:34.155720, 53657261, ICMP, raw, 72, C2S, 10.255.255.5:0, 146.185.214.51:0, 1:449:9, allow +08/22-07:12:12.558886, 53801554, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:12:16.568880, 53803892, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.104.210.244:0, 1:399:9, allow +08/22-07:12:24.389046, 53807052, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:13:33.791773, 53864690, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.105.149.4:0, 1:399:9, allow +08/22-07:13:38.579694, 53866122, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:14:50.904764, 53915816, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/22-07:14:53.907748, 53916308, ICMP, raw, 72, C2S, 10.255.255.5:0, 8.28.0.17:0, 1:449:9, allow +08/22-07:15:34.736558, 53937265, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.104.13.193:0, 1:399:9, allow +08/22-07:15:59.957824, 53951541, ICMP, raw, 72, C2S, 10.255.255.5:0, 192.241.130.226:0, 1:399:9, allow +08/22-07:18:06.416278, 54011681, ICMP, raw, 72, C2S, 10.255.255.5:0, 147.78.1.203:0, 1:449:9, allow +08/22-07:18:12.009729, 54013946, ICMP, raw, 72, C2S, 10.255.255.5:0, 147.78.1.203:0, 1:449:9, allow +08/22-07:19:15.283067, 54038053, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-07:19:30.365851, 54043406, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:23:08.370462, 54138171, ICMP, raw, 72, C2S, 10.255.255.5:0, 147.78.1.36:0, 1:449:9, allow +08/22-07:23:13.416667, 54140375, ICMP, raw, 72, C2S, 10.255.255.5:0, 147.78.1.36:0, 1:449:9, allow +08/22-07:24:00.829083, 54157775, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.204.24.58:0, 1:449:9, allow +08/22-07:24:05.878200, 54159130, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.204.24.58:0, 1:449:9, allow +08/22-07:25:53.110851, 54194323, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.172.30.71:0, 1:399:9, allow +08/22-07:31:02.773015, 54303400, ICMP, raw, 72, C2S, 10.255.255.5:0, 172.104.13.193:0, 1:399:9, allow +08/22-07:32:01.818591, 54330140, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/22-07:32:14.564393, 54338207, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:15.562948, 54338457, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:16.569827, 54338958, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:16.569828, 54338959, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:19.542006, 54339984, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:19.543050, 54339986, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:24.516722, 54342733, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:24.516722, 54342734, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:29.548866, 54344675, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.135:0, 1:402:16, allow +08/22-07:32:39.949598, 54349352, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-07:32:42.388230, 54351369, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.217758, 54355491, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.233205, 54355492, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.234342, 54355494, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.249684, 54355496, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.308168, 54355524, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.312108, 54355527, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:51.314356, 54355528, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:32:52.306015, 54355817, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:32:52.310954, 54355820, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:32:52.311858, 54355821, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:32:52.320519, 54355822, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:32:52.728321, 54355873, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-07:33:18.068275, 54363725, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:34:40.236404, 54407553, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-07:40:04.510542, 54575575, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:40:05.512499, 54575829, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.134:0, 1:402:16, allow +08/22-07:40:30.722733, 54587928, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.722900, 54587929, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.723361, 54587930, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.724334, 54587935, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.725950, 54587936, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.785538, 54588007, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.795277, 54588019, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.796568, 54588020, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.796568, 54588021, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.955376, 54588206, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:30.955377, 54588207, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.043250, 54588315, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.048235, 54588325, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.048235, 54588326, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.348747, 54589296, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.348811, 54589298, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.500496, 54589765, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.500496, 54589766, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:40:31.500496, 54589767, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.64.41.3:0, 1:402:16, allow +08/22-07:44:11.396864, 54693251, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.59.201:0, 1:449:9, allow +08/22-07:44:17.153176, 54695458, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.59.201:0, 1:449:9, allow +08/22-07:46:09.343583, 54873079, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.59.207:0, 1:449:9, allow +08/22-07:46:14.343766, 54948265, ICMP, raw, 72, C2S, 10.255.255.5:0, 38.54.59.207:0, 1:449:9, allow +08/22-07:46:53.328860, 55229972, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-07:52:45.214201, 55499518, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:53:47.590221, 55531690, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:53:47.590221, 55531691, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.133:0, 1:402:16, allow +08/22-07:54:55.779200, 55603091, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-07:59:32.660232, 55826170, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:00:22.154806, 55858979, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-08:00:40.782668, 55870537, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-08:02:06.175819, 55926094, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-08:08:28.361105, 57218057, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:09:49.694332, 57289544, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:13:20.212390, 57533735, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:14:26.673282, 57583321, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-08:19:00.225787, 58030826, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:21:27.881479, 58555103, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:22:06.647809, 58682465, ICMP, raw, 62, C2S, 10.255.255.5:0, 8.213.192.144:0, 1:449:9, allow +08/22-08:22:06.697742, 58682615, ICMP, raw, 62, C2S, 10.255.255.5:0, 8.213.192.144:0, 1:449:9, allow +08/22-08:22:10.694895, 58695343, ICMP, raw, 62, C2S, 10.255.255.5:0, 8.213.192.144:0, 1:449:9, allow +08/22-08:22:10.697056, 58695350, ICMP, raw, 62, C2S, 10.255.255.5:0, 8.213.192.144:0, 1:449:9, allow +08/22-08:23:14.435730, 58806185, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:25:37.155553, 58973112, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:38.158922, 58974303, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:39.155082, 58975160, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:39.155083, 58975161, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:42.154019, 58977637, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:42.154800, 58977638, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:43.611652, 58978617, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:25:47.224196, 58980485, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:47.224196, 58980486, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:25:52.241638, 58982422, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.20:0, 1:402:16, allow +08/22-08:26:14.412901, 58995717, ICMP, raw, 68, C2S, 10.255.255.5:0, 192.144.232.182:0, 1:399:9, allow +08/22-08:28:24.507926, 59099529, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:29:03.890390, 59132760, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.84.194.210:0, 1:449:9, allow +08/22-08:29:08.893523, 59135432, ICMP, raw, 72, C2S, 10.255.255.5:0, 139.84.194.210:0, 1:449:9, allow +08/22-08:31:24.686285, 59272515, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.69:0, 1:449:9, allow +08/22-08:31:25.645748, 59273122, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.78:0, 1:449:9, allow +08/22-08:31:27.150059, 59274322, ICMP, raw, 72, C2S, 10.255.255.5:0, 69.25.7.75:0, 1:449:9, allow +08/22-08:36:10.056075, 59488534, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:40:26.756855, 59807867, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.49.13:0, 1:402:16, allow +08/22-08:40:29.610383, 59824655, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-08:40:29.917735, 59826577, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-08:40:31.950359, 59838251, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-08:41:26.698535, 59968339, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:42:47.181675, 60129555, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:43:15.778411, 60145863, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/22-08:43:16.085045, 60146045, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/22-08:43:17.443072, 60147061, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:43:18.098054, 60147412, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.8.8:0, 1:449:9, allow +08/22-08:43:24.686428, 60150882, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-08:43:44.154002, 60163506, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:48:45.035939, 60478649, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:50:02.308762, 60636337, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:51:24.942020, 60728360, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.238.162:0, 1:399:9, allow +08/22-08:52:07.674013, 60775081, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-08:52:07.674014, 60775082, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.132:0, 1:402:16, allow +08/22-08:53:12.376270, 60814522, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-08:55:44.132204, 60929600, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-08:55:48.736354, 60933718, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-08:55:48.736354, 60933719, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-08:55:58.426337, 60975501, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.208.241.142:0, 1:449:9, allow +08/22-08:56:03.430565, 60991777, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.208.241.142:0, 1:449:9, allow +08/22-08:56:29.398017, 61020235, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.66.188.179:0, 1:449:9, allow +08/22-08:56:36.387366, 61025002, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.66.188.179:0, 1:449:9, allow +08/22-08:56:54.553303, 61040979, ICMP, raw, 72, C2S, 10.255.255.5:0, 47.129.37.88:0, 1:449:9, allow +08/22-08:57:00.658392, 61043407, ICMP, raw, 72, C2S, 10.255.255.5:0, 47.129.37.88:0, 1:449:9, allow +08/22-08:59:10.846928, 61113466, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.210.39.95:0, 1:449:9, allow +08/22-08:59:15.863305, 61116585, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.210.39.95:0, 1:449:9, allow +08/22-08:59:22.710860, 61121243, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-09:01:06.398506, 61222738, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.228.56.113:0, 1:449:9, allow +08/22-09:01:11.450736, 61226241, ICMP, raw, 72, C2S, 10.255.255.5:0, 15.228.56.113:0, 1:449:9, allow +08/22-09:01:13.252579, 61227087, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.66:0, 1:449:9, allow +08/22-09:01:13.423302, 61227159, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.60:0, 1:449:9, allow +08/22-09:01:14.266224, 61227979, ICMP, raw, 72, C2S, 10.255.255.5:0, 64.94.45.59:0, 1:449:9, allow +08/22-09:01:35.021001, 61241176, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.177.229.94:0, 1:449:9, allow +08/22-09:01:40.022032, 61250507, ICMP, raw, 72, C2S, 10.255.255.5:0, 54.177.229.94:0, 1:449:9, allow +08/22-09:02:32.775887, 61292865, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-09:02:33.084697, 61293011, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-09:02:35.148610, 61294259, ICMP, raw, 88, C2S, 10.255.255.5:0, 8.8.4.4:0, 1:449:9, allow +08/22-09:03:50.807619, 61348165, ICMP, raw, 72, C2S, 10.255.255.5:0, 35.182.126.227:0, 1:449:9, allow +08/22-09:03:56.624912, 61352141, ICMP, raw, 72, C2S, 10.255.255.5:0, 35.182.126.227:0, 1:449:9, allow +08/22-09:06:58.739478, 61573423, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-09:06:58.739479, 61573425, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.40.137:0, 1:402:16, allow +08/22-09:06:59.472192, 61573859, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/22-09:06:59.472193, 61573860, ICMP, raw, 56, C2S, 185.93.41.55:0, 172.224.39.133:0, 1:402:16, allow +08/22-09:08:44.268098, 61650430, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.36.177.71:0, 1:449:9, allow +08/22-09:08:49.272181, 61655404, ICMP, raw, 72, C2S, 10.255.255.5:0, 13.36.177.71:0, 1:449:9, allow +08/22-09:09:09.537513, 61669053, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.169.170.185:0, 1:449:9, allow +08/22-09:09:15.533994, 61672006, ICMP, raw, 88, C2S, 10.255.255.5:0, 192.141.9.110:0, 1:399:9, allow +08/22-09:09:15.813733, 61672100, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.169.170.185:0, 1:449:9, allow +08/22-09:09:24.493985, 61676509, ICMP, raw, 98, C2S, 10.255.255.5:0, 94.141.120.83:0, 1:449:9, allow +08/22-09:09:32.814763, 61683398, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.104.138.223:0, 1:399:9, allow +08/22-09:10:21.032849, 61759871, ICMP, raw, 98, C2S, 10.255.255.5:0, 178.215.236.84:0, 1:449:9, allow +08/22-09:10:50.139417, 61782433, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.90.145.138:0, 1:449:9, allow +08/22-09:10:55.146418, 61788626, ICMP, raw, 72, C2S, 10.255.255.5:0, 52.90.145.138:0, 1:449:9, allow +08/22-09:11:25.339484, 61825864, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.229.94:0, 1:449:9, allow +08/22-09:11:25.354135, 61825885, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.229.94:0, 1:449:9, allow +08/22-09:11:25.360047, 61825935, ICMP, raw, 88, C2S, 10.255.255.5:0, 139.162.229.94:0, 1:449:9, allow +08/22-09:12:14.109633, 61873571, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.153.115:0, 1:449:9, allow +08/22-09:12:19.577815, 61877436, ICMP, raw, 72, C2S, 10.255.255.5:0, 208.72.153.115:0, 1:449:9, allow +08/22-09:13:17.243525, 61919370, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-09:15:32.989098, 62011335, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-09:16:01.590660, 62039427, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.217.215.27:0, 1:449:9, allow +08/22-09:16:06.658632, 62042315, ICMP, raw, 72, C2S, 10.255.255.5:0, 18.217.215.27:0, 1:449:9, allow +08/22-09:17:23.853301, 62112219, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow +08/22-09:18:02.370482, 62147540, ICMP, raw, 72, C2S, 10.255.255.5:0, 169.255.56.68:0, 1:449:9, allow +08/22-09:18:07.398464, 62150713, ICMP, raw, 72, C2S, 10.255.255.5:0, 169.255.56.68:0, 1:449:9, allow +08/22-09:18:39.566191, 62171842, ICMP, raw, 68, C2S, 10.255.255.5:0, 172.255.0.6:0, 1:399:9, allow diff --git a/logs/alert_fast.txt b/logs/alert_fast.txt new file mode 100644 index 0000000..62d9593 --- /dev/null +++ b/logs/alert_fast.txt @@ -0,0 +1,6144 @@ +08/20-14:36:58.690508 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-14:37:01.892076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-14:37:47.866887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:41:24.883688 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:41:41.402712 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:43:28.272545 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.20.141.223 +08/20-14:45:51.377380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:45:58.106794 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 193.1.33.5 +08/20-14:46:03.168656 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 193.1.33.5 +08/20-14:46:08.252375 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 193.1.33.5 +08/20-14:47:43.562720 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 20.57.167.96 +08/20-14:47:46.175057 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 20.57.167.96 +08/20-14:47:46.424144 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 20.57.167.96 +08/20-14:47:46.434337 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 20.57.167.96 +08/20-14:48:25.087201 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.087201 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.292151 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.497218 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.497218 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.907018 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:25.907018 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:26.349429 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:26.349429 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:27.444599 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:27.444640 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:29.417451 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:29.417451 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:33.489551 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:33.489552 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:38.818987 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:47.014237 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:48:47.014238 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/20-14:50:42.884467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:53:19.368884 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:54:36.620514 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-14:54:39.011727 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:55:19.007757 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-14:55:25.222215 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/20-14:56:11.261414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-14:57:13.875142 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/20-14:58:09.895435 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:59:04.334925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-14:59:10.558352 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:00:27.071363 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.37 +08/20-15:00:27.071363 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.37 +08/20-15:00:27.293283 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.37 +08/20-15:00:27.320483 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.37 +08/20-15:01:19.317625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:02:24.462613 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:02:54.108464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:03:21.020954 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:21.035345 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:21.841251 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.162.190.194 +08/20-15:03:21.850301 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.162.190.194 +08/20-15:03:24.276732 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:24.276733 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:25.846509 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.162.190.194 +08/20-15:03:25.853462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.162.190.194 +08/20-15:03:29.077633 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:29.077633 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:34.200567 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:03:48.566349 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.148.154 +08/20-15:04:01.233554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.148.154 +08/20-15:04:03.856191 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:04:04.255025 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.148.154 +08/20-15:05:46.521473 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:05:51.233952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:05:59.030162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:05:59.030162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:05:59.030162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:05:59.030162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:06:02.131594 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:06:02.131594 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:06:05.303546 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:06:09.553812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-15:06:14.718836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-15:06:29.864797 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:06:40.820767 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:09:38.295779 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-15:10:24.591592 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:11:19.040499 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:13:54.674470 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:14:22.899818 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:21:30.972647 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-15:21:30.973950 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-15:22:35.341750 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-15:23:27.774665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:25:01.618389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.129.61 +08/20-15:27:49.668199 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.84.133.3 +08/20-15:27:49.668199 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.84.133.3 +08/20-15:27:53.670185 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.84.133.3 +08/20-15:27:53.671157 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.84.133.3 +08/20-15:27:55.565282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:01.845281 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:20.838268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:20.838268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:20.838268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:20.838268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:20.838268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:23.326522 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:28:31.046433 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:34.456570 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:41.906876 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:43.456954 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:44.429289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:44.429289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:44.429289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:44.429327 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:44.429369 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-15:28:45.267030 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:46.667098 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:28:54.097465 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:29:06.227788 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:29:15.578262 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:29:26.668734 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:29:41.839206 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.230 +08/20-15:30:16.550603 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:31:34.727825 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.13 +08/20-15:31:51.993014 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/20-15:32:15.005267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:34:15.203148 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.126.237.183 +08/20-15:34:20.203092 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.126.237.183 +08/20-15:34:25.232478 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.126.237.183 +08/20-15:34:39.825314 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.153.254.103 +08/20-15:34:39.878184 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.153.254.103 +08/20-15:34:39.878890 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.153.254.103 +08/20-15:34:39.913273 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.153.254.103 +08/20-15:41:13.666220 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:43:05.950645 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:43:08.762224 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:09.763220 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:10.815808 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:10.815808 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:13.785574 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:13.785574 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:18.803549 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:18.803549 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:23.764813 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/20-15:43:29.881675 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:44:18.183393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:46:18.448216 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:47:03.739918 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:48:18.013397 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.9.77.120 +08/20-15:48:20.096626 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.9.77.120 +08/20-15:48:24.923739 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.9.77.120 +08/20-15:48:25.282702 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.9.77.120 +08/20-15:50:02.766952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:50:15.510176 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.153.224 +08/20-15:50:21.115401 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.153.224 +08/20-15:50:26.384334 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.153.224 +08/20-15:54:56.508444 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-15:56:30.291664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:30.291664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:30.291665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:30.291665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:30.291665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:30.291705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:30.291705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:30.291705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:34.601726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:34.601726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:34.601726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:34.601726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:39.641902 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:39.641903 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:39.641903 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:39.641903 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:56:43.082344 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-15:56:43.082344 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/20-15:57:00.933195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:57:13.793853 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-15:57:46.046256 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.148.98.30 +08/20-15:57:46.303374 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.148.98.30 +08/20-15:57:46.356532 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.148.98.30 +08/20-15:57:46.550268 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.148.98.30 +08/20-15:58:41.397298 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:00:34.636553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:34.636553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:34.636553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:34.636553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:34.636553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:38.496532 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:42.307105 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:00:49.987559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-16:01:28.136230 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.4 +08/20-16:01:28.136231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.4 +08/20-16:01:28.136231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.4 +08/20-16:01:28.136231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.4 +08/20-16:01:28.136231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.4 +08/20-16:02:08.475357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:02:31.729406 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.104.100.28 -> 185.93.41.55 +08/20-16:04:27.291949 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-16:05:31.823598 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:05:41.543621 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:06:34.655912 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:07:13.847310 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:10:53.206123 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-16:11:28.428369 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:11:29.424524 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:11:29.425402 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:11:32.422704 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:11:32.422705 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:11:42.427753 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-16:12:41.420267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:13:20.601752 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:13:38.282381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:16:26.468959 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:16:55.850188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:56.060122 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:56.610347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:57.090226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:57.160312 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:57.450226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:58.650340 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:16:58.750314 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:59.380222 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:16:59.990289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:00.500423 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:01.010518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:01.220533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:01.230326 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:01.460403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:02.480487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:02.550436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:03.500505 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:03.610571 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:03.760504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:04.780535 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:04.930468 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:05.400518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:06.590536 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:06.661632 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-16:17:06.930497 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:07.710538 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:08.150607 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:08.160616 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:08.860611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:17:10.220652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:11.040814 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:11.070626 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:11.560727 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:11.790732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:12.020736 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:12.920727 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:12.931157 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:13.650809 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:14.390835 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:14.800970 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:15.310860 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:15.830981 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:16.791232 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:17.090938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:17.641109 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:18.731039 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:18.821064 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:18.891118 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:19.211252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:19.781065 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:20.741239 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:20.931282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:21.111245 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:22.631311 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:23.431416 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:23.721333 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:25.751290 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:27.261274 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:27.351334 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:27.561327 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:28.711399 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:28.751414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:29.701564 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:29.801738 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:30.391427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:30.451612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:30.581655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:31.001485 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:31.201460 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:31.531507 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:31.961567 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:32.051743 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:32.311541 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:32.461566 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:33.441667 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:34.041702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:34.621668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:34.851949 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:35.731832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:35.811764 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:36.021712 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:36.611854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:37.792022 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:38.091752 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:39.231842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:39.591929 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:40.181917 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:40.591869 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:40.742056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:41.301838 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:41.441825 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:41.781941 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:43.291905 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:43.361878 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:43.732007 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:44.211984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:44.631955 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:45.731978 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:46.151975 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:47.382234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:48.032119 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:48.472166 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:48.662158 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:49.622116 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:50.792313 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:51.312284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:51.322392 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:52.532205 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:53.022366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:53.152352 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:53.572309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:53.682360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:54.062471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:54.362514 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:54.802663 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:55.172580 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:56.122496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:56.742554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:57.092517 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:57.322809 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:57.492612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:57.692571 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:57.962559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:58.842676 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:17:59.792687 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:00.822568 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:01.803087 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:03.892740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:04.292812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:04.662842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:05.003023 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:05.112906 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:05.542998 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:06.842840 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:07.722953 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:07.883141 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:08.342915 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:08.353047 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:09.243243 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:09.513169 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:11.263200 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:11.503152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:11.813159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:12.563341 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:12.993328 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:13.833252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.073263 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.373240 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.393365 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.423210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.603160 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:14.963492 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:15.403238 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:15.803270 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:16.093384 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:16.449969 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:17.603459 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:17.693456 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:17.903298 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:20.023470 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:20.123403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.023472 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.093576 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.223452 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.303554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.393737 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:21.583507 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:22.803555 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:23.163573 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:23.833525 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:24.743528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:26.153789 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:26.673757 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:29.803767 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:30.123813 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:30.954037 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:31.043986 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:31.843965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:32.203915 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:33.103996 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:33.644137 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:33.874000 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:34.134023 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:34.383990 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:34.544131 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:34.694046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:35.063970 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:35.974147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:36.744214 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:36.754027 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:36.754027 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:36.994326 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:37.624171 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:38.164162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:38.464278 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:38.744419 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:38.864167 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:39.204145 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:41.064202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:41.404257 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:41.934291 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:42.204339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:42.294335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:42.804403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:42.974408 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:43.924347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:44.134389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:44.324380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:44.634446 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:45.674415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:46.264450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:46.554501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:46.614496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:47.674460 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:47.784449 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:48.104553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:49.194850 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:49.314777 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:49.954844 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:50.294547 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:50.394656 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:50.704641 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:51.164601 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:52.404842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:53.204606 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:54.074683 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:54.114691 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:54.825268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:55.954794 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:56.424891 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:56.924787 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:57.444901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:58.294805 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:58.414917 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:18:58.885016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:00.124979 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:00.705119 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:01.295165 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:01.504987 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:02.255038 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:03.105253 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:03.465256 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:03.485081 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:03.875297 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:04.025108 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:04.505159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:04.615168 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:05.445231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:05.495184 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:05.965288 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:06.215173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:07.165252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:19:07.205321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.227 +08/20-16:27:21.234860 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:29:34.809998 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:30:48.547683 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-16:31:20.284281 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:33:24.640973 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.116.74 +08/20-16:33:29.747211 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.116.74 +08/20-16:33:34.811569 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.116.74 +08/20-16:36:32.086434 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:37:04.217603 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:37:16.888191 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:37:18.648271 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:42:19.499941 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:44:30.995039 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:44:38.405521 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:45:17.758485 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-16:46:37.360141 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.99.83.178 +08/20-16:46:52.322313 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 206.53.48.61 +08/20-16:46:57.323343 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 206.53.48.61 +08/20-16:47:02.325493 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 206.53.48.61 +08/20-16:47:35.472248 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:51:15.879207 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-16:52:18.943800 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:18.943800 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:18.943801 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/20-16:52:18.943801 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/20-16:52:18.943801 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/20-16:52:19.149668 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/20-16:52:19.149668 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:19.149668 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:19.151261 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:19.151261 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:19.153536 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:19.153536 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:21.406423 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:21.408449 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:21.410757 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:21.412932 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:26.524897 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:26.524897 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:26.526533 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:26.526533 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:27.503977 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-16:52:31.361599 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-16:52:31.361599 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-16:52:49.154574 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:53:14.434997 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 44.198.182.22 +08/20-16:53:19.748743 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 44.198.182.22 +08/20-16:53:24.928436 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 44.198.182.22 +08/20-16:53:47.316862 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:54:26.671567 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:26.965269 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:27.509842 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:27.674462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:28.478946 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:29.742353 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:54:30.204029 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 17.57.163.28 +08/20-16:57:31.560862 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.252.231.161 +08/20-16:57:36.375882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-16:57:36.562252 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.252.231.161 +08/20-16:57:41.563259 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.252.231.161 +08/20-17:01:18.204619 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-17:03:43.640254 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:11:36.388763 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-17:11:39.682398 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-17:12:06.616709 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-17:12:18.090366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-17:22:24.255145 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.168.164.86 +08/20-17:22:29.294230 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.168.164.86 +08/20-17:22:33.394449 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:22:34.298509 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.168.164.86 +08/20-17:29:49.611442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:30:35.183384 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:32:19.127341 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:32:47.678392 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-17:34:07.931557 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.129.61 +08/20-17:34:43.492995 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:43:02.402674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.99.83.178 +08/20-17:43:32.631312 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-17:46:12.971347 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 204.137.14.122 +08/20-17:46:18.015428 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 204.137.14.122 +08/20-17:46:23.073776 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 204.137.14.122 +08/20-17:52:37.095119 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/20-17:53:11.946302 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-17:55:26.551882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-17:56:30.994234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:05:40.985655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:07:10.009334 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-18:08:07.265349 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-18:08:27.406323 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-18:10:00.173896 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 212.71.233.247 +08/20-18:10:00.184871 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 212.71.233.247 +08/20-18:10:00.195862 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 212.71.233.247 +08/20-18:10:15.776487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:12:32.842472 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 200.25.15.74 +08/20-18:12:37.843490 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 200.25.15.74 +08/20-18:12:42.863303 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 200.25.15.74 +08/20-18:13:55.844971 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:17:35.563823 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-18:17:54.554449 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:19:37.525438 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-18:19:47.901947 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-18:19:49.287363 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.103.186.106 +08/20-18:19:54.298227 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.103.186.106 +08/20-18:19:58.389308 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:21:31.242887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:25:17.521724 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:27:49.597705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:29:31.862892 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/20-18:29:34.869193 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/20-18:37:59.138968 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-18:38:23.165192 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-18:40:29.037501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:40:55.418596 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:42:31.732331 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:45:13.288629 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-18:45:52.154717 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.48.236 +08/20-18:46:36.231586 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 114.32.68.247 +08/20-18:46:36.233549 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 114.32.68.247 +08/20-18:46:36.738694 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 114.32.68.247 +08/20-18:46:36.742782 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 114.32.68.247 +08/20-18:47:12.030426 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-18:49:53.719947 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:49:59.919830 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:58:19.769394 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-18:59:43.122806 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.99.83.178 +08/20-19:00:41.464879 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:01:27.778439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:27.778439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:27.778439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:27.778439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:27.778440 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:31.518271 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:35.228493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:01:42.649015 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/20-19:02:48.039953 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:03:20.528672 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-19:05:04.235161 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:07:55.492039 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:09:43.414526 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:43.802969 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:43.909321 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:44.131695 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:44.416586 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:44.416961 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:44.797982 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:44.798214 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:44.910174 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:44.914428 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:45.128168 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:45.128347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:47.412737 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:47.412850 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:47.799941 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:47.799941 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:47.905654 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:47.907188 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:48.128342 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:48.128343 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:52.407336 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:52.407466 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:52.792192 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:52.792323 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:52.899615 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:52.899786 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:53.135236 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:53.135236 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:09:57.414635 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/20-19:09:57.798751 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/20-19:09:57.909676 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/20-19:09:58.130789 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/20-19:10:20.716845 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.110.136.82 +08/20-19:10:21.947616 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:10:25.759150 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.110.136.82 +08/20-19:10:30.822346 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.110.136.82 +08/20-19:12:27.652727 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:13:22.984728 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:13:34.385491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:13:42.255463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:13:43.825467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:05.626369 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:08.807318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:12.386586 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:13.916661 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:15.109380 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 12.129.92.192 +08/20-19:14:15.867267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:20.266483 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-19:14:21.037276 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:21.557071 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:14:24.117243 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:27.711924 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.146 +08/20-19:14:28.177632 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.111.244 +08/20-19:14:28.309040 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.146 +08/20-19:14:28.519813 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.146 +08/20-19:14:35.345173 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-19:14:49.817905 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-19:14:51.438233 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.99.83.178 +08/20-19:14:53.746155 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-19:16:12.531496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:17:40.414633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:18:47.457354 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:20:15.541150 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:20:35.681654 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:23:27.678199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:25:03.499471 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.84.134.245 +08/20-19:25:06.000410 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.118.164.158 +08/20-19:25:08.500765 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.84.134.245 +08/20-19:25:13.500777 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.84.134.245 +08/20-19:25:34.793294 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:28:42.915912 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-19:29:53.793375 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:35:09.121343 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-19:35:26.293718 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-19:40:42.178612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:41:24.600364 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:42:03.186304 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-19:44:43.818193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:45:19.489597 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.99.83.178 +08/20-19:45:19.989515 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:45:53.942339 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.20.208 +08/20-19:51:23.233693 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-19:51:36.534146 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:54:33.361046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-19:56:05.667462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.152.223.22 +08/20-19:56:13.155856 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.152.223.22 +08/20-19:56:14.218832 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.152.223.22 +08/20-19:56:21.328058 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.152.223.22 +08/20-19:57:51.138848 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:51.172467 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-19:57:52.639024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:53.028870 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:53.189149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:54.149139 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:54.998921 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:55.709066 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:56.389208 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:56.459267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:56.859137 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:58.019050 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:58.629138 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:58.759040 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:57:59.739197 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:00.129377 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:00.219213 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:00.489222 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:00.659263 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:01.639213 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:01.949439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:02.089450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:02.879277 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:04.189457 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:05.369556 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:06.089358 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:06.479366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:06.559260 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:07.239486 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:07.309383 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:07.739567 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:08.269464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:08.569528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:08.629446 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:09.259646 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:10.149590 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:10.179525 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:10.809724 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:12.759658 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:13.699690 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:14.849699 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:15.109787 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:15.159715 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:15.829831 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:15.999779 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:16.099771 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:16.299865 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:16.399900 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:17.289801 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:18.199922 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:18.569999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:19.279896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:21.019992 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:21.940001 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:22.380289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:22.850028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:23.430260 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:24.580182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:24.700167 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:25.170271 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:25.170272 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:25.840364 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:26.140245 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:26.580245 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:27.240165 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:28.220404 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:28.350259 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:28.870337 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:29.730372 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:30.550590 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:31.210339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:32.490448 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:32.820385 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:34.060566 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:35.180568 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:35.420755 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:35.730562 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:36.460670 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:36.630866 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:36.650572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:37.100728 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:37.460640 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:37.510677 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:38.170704 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:40.810812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:41.090722 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:41.731038 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:41.860862 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:42.950956 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:42.980872 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:43.770929 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:43.830835 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:44.590984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:45.410965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:46.330945 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:46.890987 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:47.051160 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:47.711068 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:47.801033 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:50.081180 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:50.281156 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:50.411199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:50.911148 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:51.411162 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:52.691172 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:52.791204 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:52.991226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:53.391490 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:53.791415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:54.231479 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:54.301270 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:54.821510 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:54.981420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:55.221519 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:55.381357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.351424 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.711370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.731381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.771575 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.821373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:56.971494 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:58.231478 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:58.291429 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:58:59.381521 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:00.411499 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:01.121596 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:02.501869 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:02.981725 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:03.481768 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:04.401755 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:05.191799 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:05.231927 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:05.451788 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:05.872002 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:05.951684 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:08.871837 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:09.221935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:09.904936 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:10.402178 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:11.061935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:11.382024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:11.812029 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:12.112230 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:13.192152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:14.042142 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:14.332324 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:15.192129 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:17.022351 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:17.182274 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:17.562303 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:17.762320 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:17.842381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:18.282183 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:19.132381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:19.292210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:19.382362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:20.102333 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:20.582527 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:21.102450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:21.652402 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:21.752591 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:22.282344 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:22.412591 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:22.522515 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:22.962460 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:23.012405 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:23.542421 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:23.932499 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:24.022564 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:24.542609 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:24.672474 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:25.262659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:25.712563 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:25.892381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:26.182620 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:26.522513 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:26.542671 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:26.922604 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:27.242745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:27.292529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:27.472544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:27.612548 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:28.212632 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:28.262587 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:28.812669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:30.682638 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:31.122708 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:31.172713 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:31.732745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:32.392750 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:34.142967 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:34.162852 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:35.202898 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:35.213036 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:35.612869 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:35.902907 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:36.042934 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:38.683032 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:39.953262 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:40.213143 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:40.213144 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:40.563220 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:40.663279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:41.143129 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:41.793365 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:42.013267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:42.403321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:42.593368 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:42.873231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:43.143239 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:44.233283 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:44.613234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:44.703342 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:44.723275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:45.263371 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:45.453313 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:45.533529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:45.683541 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:46.593311 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:47.023600 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:47.683441 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:48.253573 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:48.603479 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:50.073543 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:50.313523 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:50.907408 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:51.443490 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:51.993759 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:52.043591 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:52.773669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:53.233811 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:53.423597 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:54.133647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:54.703598 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:54.953604 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:54.973691 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:55.783663 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:55.893736 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:55.913913 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:56.013885 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:56.463677 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:57.893768 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:58.583804 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-19:59:59.763869 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:00:00.293914 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:00:01.343907 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:00:01.673888 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:00:02.674016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:00:03.104016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.202.246.146 +08/20-20:03:11.531427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:04:47.005031 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.38.121.219 +08/20-20:06:11.668450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:09:13.032916 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.132.43 +08/20-20:09:14.029028 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.132.43 +08/20-20:09:17.034182 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.132.43 +08/20-20:09:18.032315 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.132.43 +08/20-20:15:34.360613 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:16:20.170710 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-20:18:05.136604 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-20:18:36.878420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-20:18:36.878420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-20:18:36.878421 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-20:18:36.878421 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/20-20:22:27.856720 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:23:40.703362 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-20:28:07.150208 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-20:28:20.380714 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:28:35.981290 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:28:37.241349 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:28:37.691217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:29:15.942740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:29:29.093257 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:29:40.823715 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:29:44.823839 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:30:01.284652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:30:04.274590 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:30:20.545406 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:30:28.445742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:30:31.775701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.165 +08/20-20:32:01.579378 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-20:35:46.623192 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.0.35.128 +08/20-20:36:29.111594 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-20:36:44.955507 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-20:36:52.574602 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 193.232.180.118 +08/20-20:38:08.673527 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.220 +08/20-20:52:27.387774 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.89.72.86 +08/20-20:52:28.437749 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.89.72.86 +08/20-20:52:31.897003 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.89.72.86 +08/20-20:52:32.932149 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.89.72.86 +08/20-20:53:07.958957 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:55:16.253529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-20:55:20.613814 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:55:25.634075 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-20:56:13.745926 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-20:56:45.500532 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-20:57:09.965586 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-20:59:23.233547 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:00:45.516685 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-21:01:44.938863 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:04:03.568736 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.218.40 +08/20-21:04:03.581628 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-21:04:03.645677 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.218.40 +08/20-21:04:03.648534 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.218.40 +08/20-21:04:04.149620 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-21:07:14.411645 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-21:09:29.856988 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-21:09:29.856989 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:10:09.148758 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:15:22.221076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:16:51.874243 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:17:20.535373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:18:14.107510 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-21:18:30.238285 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-21:19:55.191395 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:21:01.744167 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:21:02.122255 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 112.95.75.94 +08/20-21:22:20.857136 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:28:50.682542 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:29:16.437480 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.137.46.18 +08/20-21:29:16.437869 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.137.46.18 +08/20-21:29:16.444391 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.137.46.18 +08/20-21:29:16.456148 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.137.46.18 +08/20-21:29:35.543971 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:30:51.947217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:08.047689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:08.477719 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:31:13.007982 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:18.828414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:42.179040 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:46.239523 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-21:31:47.054998 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-21:31:51.469513 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:54.289708 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:31:58.959852 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:32:12.770335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:32:15.750429 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:32:31.781037 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:32:47.721665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:32:49.631824 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.62 +08/20-21:33:39.213379 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-21:34:25.695646 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:37:18.280990 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-21:38:07.694348 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:08.774318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:09.144298 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:09.154177 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:09.685194 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:11.784318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:12.404681 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:12.784415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:12.874515 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:13.784461 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:14.394435 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:14.644461 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:14.784478 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:16.344543 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:16.994581 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:17.434600 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:17.994872 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:18.154611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:18.674659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:19.414790 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:19.794691 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:20.894698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:21.564731 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:22.695058 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:22.934795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:23.654837 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:23.674873 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:25.694876 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:25.724974 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:25.805017 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:26.264999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:27.374887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:27.735049 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:28.645008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:29.625272 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:29.895209 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:29.915016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:30.305052 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:32.005173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:32.235398 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:32.735136 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:33.295324 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:33.905418 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:34.395229 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:34.415356 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:34.875355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:35.155349 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:35.655539 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:36.745309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:37.995411 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:38.475664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:39.375589 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:39.855587 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:40.945565 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/20-21:38:41.365512 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:42.285583 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:42.775635 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:45.065771 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:45.155738 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:45.625734 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:45.715730 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:46.915928 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:48.835796 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:50.416010 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:50.795950 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:51.005832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:51.186031 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:51.266053 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:51.815949 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:52.205965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:53.146048 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:54.636246 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:54.866115 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:55.076070 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:56.676309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:57.636455 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:57.866149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:58.726233 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:38:59.426237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:00.766312 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:00.866286 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:01.406309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:01.796281 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:01.956827 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:01.966746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:02.606349 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:03.156537 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:03.196617 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:03.386369 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:04.226448 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:04.446681 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:04.746436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:05.296842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:05.546560 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:05.626721 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:05.666588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:05.926511 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:06.026442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:06.456456 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:06.836578 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:07.536650 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:08.876559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:10.016705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:11.216664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:11.646758 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:11.756702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:11.976737 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:13.456774 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:13.746770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:13.776779 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:13.926797 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:14.026849 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:14.656935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:14.746970 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:15.177144 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:15.466898 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:15.667022 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.106949 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.616921 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.686890 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.846944 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.866925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:16.966975 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:17.226942 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:17.256925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:17.347211 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:17.996974 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:18.057207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:18.567028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:20.097284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:20.777214 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:21.007124 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:21.177159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:21.507461 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:21.817140 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:24.177337 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:24.257422 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:26.157353 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:26.177289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:27.447476 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:27.467329 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:27.747699 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:28.007415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:28.447404 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:28.817395 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:29.077551 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:29.687548 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:39:31.787551 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:31.877474 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:32.267478 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:32.507592 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:34.097584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:34.567590 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:34.767663 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:34.897633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:36.827708 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:36.937842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:38.067764 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:38.997744 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:39.267834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:39.577997 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:39.697893 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:39.697893 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:40.447894 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:40.968891 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:41.157813 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:41.267965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:41.367947 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:42.098118 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:42.617960 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:42.957890 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:44.027887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:44.738224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:44.988173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:45.028024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:45.638007 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:46.428127 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:46.918211 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:47.658222 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:48.198205 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:50.248291 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:50.948223 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:51.498301 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:51.818302 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:51.888287 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:51.908251 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:51.938396 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:52.058250 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.118394 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.318355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.358381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.378480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.518499 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:53.978362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:54.058497 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:54.458376 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:54.658279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.108448 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.188678 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.298615 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.618428 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.678542 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:57.798802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:58.368543 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:58.698471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:39:58.978586 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:00.408693 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:01.018671 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:01.358625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:01.498630 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:01.828682 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:01.978796 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:02.468729 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:03.068698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:03.078761 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:04.018772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:04.398714 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:04.838812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:04.858753 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:05.048826 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:05.078888 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:05.238745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:08.139128 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:08.839143 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:08.889045 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:09.209005 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:10.409239 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:10.539057 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:11.359130 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:12.599207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:12.749147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:12.829152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:13.099187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:13.529321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:13.699256 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:14.519422 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:15.409496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:15.949408 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:16.519356 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:16.979261 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:17.039231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:18.039523 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:40:18.809399 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.41.190 +08/20-21:43:23.426532 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:47:35.986414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:48:28.008471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:49:11.010245 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:52:12.767298 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-21:53:31.090674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-21:57:07.002276 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-21:59:29.072168 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-22:00:18.666437 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:02:51.082160 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.145.195 +08/20-22:06:02.059984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:07:39.253598 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:11:05.561888 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:11:07.911805 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:21:51.957268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:25:30.242059 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.236.126.215 +08/20-22:25:30.242060 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.236.126.215 +08/20-22:27:18.099984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:33:00.313644 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:37:24.234037 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.161.88.35 +08/20-22:37:24.261932 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.161.88.35 +08/20-22:37:24.507155 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.161.88.35 +08/20-22:37:24.510818 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.161.88.35 +08/20-22:40:21.050572 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-22:42:22.265343 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:45:11.852086 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:48:40.040206 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:51:01.392105 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 207.211.214.162 +08/20-22:51:01.393945 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 207.211.214.162 +08/20-22:51:01.397996 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 207.211.214.162 +08/20-22:51:01.399999 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 207.211.214.162 +08/20-22:53:01.290425 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:53:13.741056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-22:53:16.851046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:53:44.932170 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-22:54:23.475046 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-22:54:34.098786 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-22:54:53.874919 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:56:27.711347 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-22:57:17.690463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-22:57:50.990996 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-22:59:29.077280 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-23:00:16.724473 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/20-23:01:28.398198 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 175.153.165.221 +08/20-23:01:28.567503 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 175.153.165.221 +08/20-23:01:28.572007 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 175.153.165.221 +08/20-23:01:28.572910 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 175.153.165.221 +08/20-23:03:21.124812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-23:03:28.554925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:04:50.088202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:05:31.209867 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/20-23:07:57.605652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:08:05.135774 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:12:07.690604 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.234.213.135 +08/20-23:12:07.690605 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.234.213.135 +08/20-23:12:07.690605 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.234.213.135 +08/20-23:12:07.690605 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.234.213.135 +08/20-23:16:46.306316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:18:59.831602 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:19:01.261597 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:21:28.191347 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/20-23:21:42.517967 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:24:35.689630 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.199.53.212 +08/20-23:24:35.690620 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.199.53.212 +08/20-23:24:35.693637 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.199.53.212 +08/20-23:24:35.693637 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.199.53.212 +08/20-23:30:27.658729 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:34:15.627689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:36:23.922536 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:36:30.893922 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-23:36:31.793198 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/20-23:42:55.121117 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 41.77.138.90 +08/20-23:43:47.899948 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:48:31.420906 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:49:32.093483 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:50:25.665624 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/20-23:53:10.861851 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:54:08.854161 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/20-23:54:42.822804 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.169.64.13 +08/20-23:58:27.285579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 110.164.35.48 +08/20-23:58:27.292834 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 110.164.35.48 +08/20-23:58:31.289096 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 110.164.35.48 +08/20-23:58:31.297908 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 110.164.35.48 +08/20-23:58:52.565270 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:02:48.584515 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:03:46.076940 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:16:04.155812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:16:27.998985 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-00:16:29.018068 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-00:16:30.325124 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-00:17:01.557803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:20:30.176037 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:22:29.420664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:23:24.372732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:26:55.341147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:27:10.231639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:31:43.582584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:33:20.616133 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:33:55.147573 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:35:58.102520 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:39:07.049780 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:41:22.025133 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:41:43.424438 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.58.168.107 +08/21-00:42:58.274201 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.44.2 +08/21-00:43:14.659537 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:43:15.052756 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-00:43:28.170358 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-00:44:11.711845 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-00:44:36.432775 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:44:46.170491 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.160.2 +08/21-00:45:51.605646 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:45:55.713924 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.166.2 +08/21-00:48:01.556019 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.91.47.2 +08/21-00:49:38.494876 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.58.118.202 +08/21-00:50:09.058278 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.114.144 +08/21-00:50:09.062265 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.114.144 +08/21-00:50:09.117389 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.114.144 +08/21-00:50:09.323369 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.114.144 +08/21-00:52:04.225283 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.161.2 +08/21-00:52:16.240741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:53:21.653373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-00:56:02.082131 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.91.46.2 +08/21-00:56:06.289050 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-00:57:46.462177 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.45.2 +08/21-00:58:56.016506 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-00:59:13.534817 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.47.2 +08/21-01:00:40.264847 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.162.2 +08/21-01:02:07.134254 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.163.2 +08/21-01:03:48.258066 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.160.2 +08/21-01:05:22.953982 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 158.58.172.238 +08/21-01:06:04.483165 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:07:19.591833 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.38.121.194 +08/21-01:08:53.081291 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.161.2 +08/21-01:10:05.592580 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-01:10:57.464647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-01:11:32.116010 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:12:26.778224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-01:14:26.462674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:16:15.987185 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-01:16:22.047355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:19:03.103620 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:23:19.463928 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-01:27:27.733348 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:27:31.653454 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:30:30.600487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:35:17.391692 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-01:44:50.994300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-01:48:51.393639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-01:50:15.502165 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.189.207.28 +08/21-01:50:15.505269 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.189.207.28 +08/21-01:50:15.508379 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.189.207.28 +08/21-01:50:15.508380 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.189.207.28 +08/21-01:52:51.443222 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-01:55:55.526998 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-02:00:16.821160 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-02:03:08.578046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:04:26.450426 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:04:43.081210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:12:52.720186 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:15:59.932724 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-02:16:16.983542 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-02:16:26.288538 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:23:50.435894 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:50.735894 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:50.915825 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:51.005976 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:51.435936 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:52.136111 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:53.236024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:53.395984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:53.436003 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:53.745994 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:54.416185 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:55.476137 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:55.866281 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.116202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.226210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.336276 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.446139 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.606229 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.616199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.766249 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:56.876300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:57.226226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:57.296193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:23:59.816363 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:00.276245 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:00.506436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:01.656383 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:02.116491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:02.306360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:02.406348 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:03.306483 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:04.066547 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:04.586433 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:04.806501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:04.926612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:05.236721 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:05.726506 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.066742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.166622 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.406518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.446491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.476604 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:07.896793 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:08.276698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:08.876637 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:09.606673 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:09.736861 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:09.886705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:10.726762 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:11.186703 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:11.466659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:11.916701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:13.196924 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:14.096854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:14.706878 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:14.856790 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:15.146846 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:15.316844 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:15.746877 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:16.417016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:16.486952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:16.757147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:17.936952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:18.747003 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:18.907218 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:18.937060 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:19.587170 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:19.787028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:20.187158 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:20.187158 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:20.737161 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:20.767253 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:21.767279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:22.277204 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:22.367163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:22.497339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:22.907367 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:22.997188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:23.747389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:23.797192 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:24.477191 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:24.527461 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:24.757217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:26.557388 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:26.707357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:27.617572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:27.677366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:27.707336 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:27.897430 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:28.757484 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:28.807563 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:29.617523 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:30.727579 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:32.157777 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:32.767637 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:34.327600 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:35.237756 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:36.057882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:37.267972 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:37.307861 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:37.777798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:38.297929 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:38.737854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:39.077938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:39.517872 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:39.687836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:40.107896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:41.347957 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:41.367904 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:41.737965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:41.958056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:43.448169 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:44.468057 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:44.848033 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:44.968132 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:45.008070 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:45.968275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:46.248170 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:46.278163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:47.208147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:47.348177 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:48.148159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:48.298407 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:50.118347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:50.348294 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:50.368352 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:50.828305 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:52.358366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:53.588441 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:54.898471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:55.538571 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:55.818519 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:56.048453 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:56.568572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:57.098662 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:57.228540 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:57.568586 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:59.508540 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:59.628850 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:24:59.928584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:00.118659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:01.548832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:01.818856 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:02.248701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:02.488930 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:03.388676 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:05.898887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:06.108806 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:06.168987 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:06.699034 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:06.758903 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:06.958984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:07.179179 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:08.248944 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:08.318965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:08.839025 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:10.739020 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:11.039175 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:11.359020 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:12.589190 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:12.689160 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:14.559209 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:14.819357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:14.939236 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:14.969257 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:15.719317 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:16.229212 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:16.499488 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:16.989420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:17.059315 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:17.379314 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:17.669381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:18.719554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:18.829412 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:19.349482 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:19.459393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:20.899407 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:21.909496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:22.519597 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:22.769611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:22.839768 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:23.469719 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:23.539526 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:23.739602 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:24.279618 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:25.529607 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:25.679648 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:26.079669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:26.249853 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:28.759756 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:29.129703 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:30.309843 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:31.739976 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:32.049843 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:33.509932 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:34.439983 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:34.989983 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:35.089997 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:35.379999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:36.619982 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:37.181172 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:38.490166 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:39.160323 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:39.440293 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:39.480316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:40.380422 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:41.520275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:41.620316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:42.420511 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:43.130540 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:43.340509 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:44.490567 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:46.590724 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:48.400500 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:49.150557 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:50.070570 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:50.290563 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:50.500588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:51.340680 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:51.370659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:51.510659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:51.900838 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:52.100678 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:53.020952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:53.440671 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:54.270802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:54.320735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:55.770932 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:56.031127 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:56.110888 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:56.531004 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:57.240925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:57.600906 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:58.540970 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:58.661029 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:58.710986 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:58.741015 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:58.971030 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:59.160986 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:25:59.601088 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:26:00.221218 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:26:00.511221 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:26:00.861259 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.205.214 +08/21-02:28:33.789810 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-02:30:32.301512 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-02:31:35.224146 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:33:18.187013 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-02:36:29.935770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:37:48.838677 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-02:42:15.629195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-02:44:23.924142 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:45:30.935988 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-02:51:09.860604 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-02:51:44.931447 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-02:54:50.148677 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-02:55:42.809123 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-02:58:28.797394 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-02:59:37.929836 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-03:00:23.461994 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:02:23.566541 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:02:31.908296 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:04:02.830348 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.141.9.110 +08/21-03:08:41.531383 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:10:42.132618 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:10:46.140815 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:10:57.177323 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:10:58.159396 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:01.177534 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:02.158732 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:13.193244 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:13.194006 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:17.202930 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:11:17.202931 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.122.145.90 +08/21-03:13:27.654729 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-03:13:42.765127 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-03:13:47.437792 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:16:10.979022 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-03:16:36.539962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:17:09.111207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:20:28.597502 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-03:24:05.987603 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:26:41.093702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:27:51.456387 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:28:46.928650 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:33:59.530836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-03:36:21.796553 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:37:57.480189 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:38:55.562380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:41:59.785201 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:42:01.971217 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:43:47.733750 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:44:41.616005 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:47:40.107710 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:48:17.234342 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:48:49.135656 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:50:14.758960 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-03:51:53.992850 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:52:31.434438 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-03:53:13.611309 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:53:17.783426 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:53:20.540780 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-03:57:24.462453 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-03:58:22.968054 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-03:58:58.769130 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:00:15.252631 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:00:45.243588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:01:07.204589 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:01:27.705279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:03:01.449023 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/21-04:05:09.974030 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:05:21.564578 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:08:34.491999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:10:11.515918 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:10:16.278568 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:11:07.879033 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-04:12:34.081559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:12:45.102128 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:13:52.664539 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:17:14.672438 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:17:36.193219 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:19:43.508324 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:21:14.311695 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:21:23.224941 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:21:35.844139 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:23:52.608197 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:24:35.293029 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-04:26:31.406858 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-04:29:33.501584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-04:31:43.608833 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-04:31:43.608834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-04:31:43.608834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-04:31:43.608834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-04:31:43.608834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-04:31:44.596639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:31:58.417269 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:32:50.039254 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:32:55.614902 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:37:01.929147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:38:36.169687 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:39:39.495187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:40:07.916355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:45:15.278274 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:46:05.630272 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-04:51:45.693799 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-04:55:29.372003 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:55:32.420162 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-04:58:25.764676 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-04:58:35.359657 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-04:58:48.307571 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-05:01:09.730686 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-05:01:13.469830 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-05:03:33.221303 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:05:00.614746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:06:54.211863 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-05:07:08.159730 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:08:12.585843 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-05:08:16.342412 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:09:15.694762 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-05:10:28.591839 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.60.22.67 +08/21-05:10:28.597559 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.60.22.67 +08/21-05:10:32.593796 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.60.22.67 +08/21-05:10:32.598732 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.60.22.67 +08/21-05:12:21.442049 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:13:13.644202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:13:36.165198 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:19:38.129119 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:20:35.181357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:21:54.376668 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 164.113.200.5 +08/21-05:21:59.396588 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 164.113.200.5 +08/21-05:22:04.456921 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 164.113.200.5 +08/21-05:22:43.416603 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:22:51.246878 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:23:51.667254 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-05:24:52.631862 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:26:10.827146 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.150.112.182 +08/21-05:26:11.081148 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.150.112.182 +08/21-05:27:35.937911 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:28:04.848965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:29:15.601762 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:29:27.614034 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-05:29:57.103666 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:30:57.635820 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:32:22.779408 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/21-05:34:33.214344 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:37:47.831450 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:47.950792 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:48.130272 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:48.428486 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:48.895350 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:52.263139 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:52.562241 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:53.163828 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:54.364386 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:54.587162 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:55.211329 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:55.310433 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:56.288288 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:56.637063 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:57.338982 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:57.710337 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:58.310465 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:58.434985 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:37:58.740242 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:01.411891 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:01.506834 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:01.558253 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:04.513538 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:04.607649 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:07.147775 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:07.610724 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:07.710788 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:10.711889 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:38:10.812146 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 142.251.39.106 +08/21-05:39:12.000224 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-05:44:37.367905 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-05:52:07.300407 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-05:52:50.827279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:53:16.178401 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-05:58:43.401208 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:58:46.951301 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:58:54.851595 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:59:04.352188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:59:10.500416 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-05:59:11.682275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:59:43.443485 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-05:59:58.543972 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-06:00:06.704436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-06:00:09.574620 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-06:00:41.745804 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.61.171 +08/21-06:03:28.518225 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:11:50.272010 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:14:48.527127 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:15:28.900666 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:15:31.520739 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:18:26.147633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:21:50.635616 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:24:20.095840 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-06:24:20.095840 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-06:24:25.841769 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-06:26:03.351368 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:26:59.867542 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-06:27:57.209868 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:33:11.772209 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:36:42.740275 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-06:36:42.740275 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-06:37:24.592384 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:38:01.760162 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.209.59.230 +08/21-06:38:01.965275 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.209.59.230 +08/21-06:38:01.965275 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.209.59.230 +08/21-06:38:02.013053 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.209.59.230 +08/21-06:39:36.587489 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-06:41:07.210940 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:41:43.612295 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-06:41:58.522867 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:42:59.135333 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:43:01.514124 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:43:02.501971 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-06:43:15.594980 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:16.711678 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:18.879066 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:18.879186 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:20.066707 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:20.066707 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:25.064797 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:25.064966 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:43:29.286410 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:43:30.070356 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-06:46:03.011134 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.2.165 +08/21-06:46:46.624155 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:47:37.816078 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:48:58.482331 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-06:49:58.661314 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.79.37 +08/21-06:49:58.726256 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.79.37 +08/21-06:49:58.760262 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.79.37 +08/21-06:53:12.939193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:55:26.824425 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:57:15.188615 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-06:57:25.559153 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-06:58:39.031993 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-06:59:10.033205 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:00:40.436664 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:06:22.180074 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:08:21.914968 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:08:29.335167 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:08:33.682467 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/21-07:08:33.683426 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/21-07:11:14.254499 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-07:11:14.254499 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-07:14:17.868739 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:17:22.615858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.81.216.55 +08/21-07:17:39.716544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:20:05.516701 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:06.199965 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:07.293365 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:07.293365 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:10.205484 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:10.205484 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:15.327405 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:15.327405 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:20.216470 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-07:20:42.073724 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:22:26.637846 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:23:42.430887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.13.193 +08/21-07:26:19.007185 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.13.193 +08/21-07:26:49.418044 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:27:23.583143 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-07:27:23.587554 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-07:28:51.513016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:29:08.103554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.130.226 +08/21-07:29:37.044700 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:35:47.169159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:36:02.489741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-07:37:23.333215 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:38:26.165269 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:39:10.647284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:40:56.501280 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:41:42.423027 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:42:00.413689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:42:29.384782 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:44:52.360428 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:46:35.484563 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:49:00.380214 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:49:41.341786 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:50:31.560703 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:32.561027 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:33.643939 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:33.643939 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:36.611402 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:36.611402 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:41.629223 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:50:41.629223 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-07:52:30.948359 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-07:53:57.811828 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:54:14.992403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-07:56:45.008347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:56:53.288696 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/21-07:56:53.288697 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/21-07:57:00.209226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-07:57:52.220930 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-08:00:04.116436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:00:16.734162 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-08:01:41.078238 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-08:03:33.884602 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:05:34.437403 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:35.527731 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:36.499254 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:36.499255 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:39.521932 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:39.521932 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:44.539539 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:44.539539 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:05:49.438986 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:08:16.460959 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/21-08:08:19.475964 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/21-08:08:25.625853 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:10:58.811832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:11:59.674343 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:19.275147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:22.025131 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:22.155179 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:22.385079 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:31.825493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:37.215629 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:44.725929 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-08:12:49.666123 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:12:51.166183 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:13:04.306811 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:13:14.257163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.234 +08/21-08:15:35.684497 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-08:15:35.986917 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-08:15:38.018462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-08:16:43.735840 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:18:37.149822 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:18:55.250570 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:21:29.606548 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:22:15.268480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:24:23.858820 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-08:24:29.523690 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:28:21.732766 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:32:06.356532 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 41.77.138.90 +08/21-08:33:09.371635 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.58.168.107 +08/21-08:34:39.166999 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.44.2 +08/21-08:35:26.999444 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:36:27.861644 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-08:36:31.554501 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.160.2 +08/21-08:38:31.053024 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-08:38:31.053024 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-08:38:50.885730 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.48.225.229 +08/21-08:38:54.893606 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.48.225.229 +08/21-08:39:18.473839 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.166.2 +08/21-08:39:59.348124 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.91.47.2 +08/21-08:40:33.231427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-08:40:47.323313 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-08:40:51.262351 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:41:47.417383 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.58.118.202 +08/21-08:42:33.186350 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:42:45.246551 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-08:44:08.171346 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.161.2 +08/21-08:44:32.979641 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.169.64.13 +08/21-08:44:41.641515 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:45:01.319995 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-08:45:14.642409 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:45:23.484937 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-08:46:06.454730 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:47:13.697305 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:48:07.291068 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:48:07.291068 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:48:07.291069 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:48:07.291069 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-08:48:12.843520 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.91.46.2 +08/21-08:49:54.788331 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.11.1.2 +08/21-08:49:54.810300 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 218.11.1.2 +08/21-08:49:59.058812 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.45.2 +08/21-08:51:00.978754 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.203.180.219 +08/21-08:51:15.156533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:51:29.046952 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.103.47.2 +08/21-08:52:57.021137 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-08:53:00.028532 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.162.2 +08/21-08:54:11.183441 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-08:55:41.116971 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-08:56:16.172164 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.136.160.2 +08/21-08:57:19.049365 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.126.152.131 +08/21-08:57:26.892513 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.126.152.131 +08/21-08:58:24.676420 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 158.58.172.238 +08/21-09:00:48.448244 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 154.55.139.226 +08/21-09:01:26.475389 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.136.161.2 +08/21-09:01:53.123719 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 115.220.3.36 +08/21-09:01:53.288763 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 115.220.3.36 +08/21-09:01:53.362691 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 115.220.3.36 +08/21-09:01:53.523736 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 115.220.3.36 +08/21-09:02:32.263195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:03:40.305837 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:03:42.450713 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.250.0.204 +08/21-09:03:47.467316 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.250.0.204 +08/21-09:05:08.419504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:06:19.092335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-09:06:26.022198 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:07:05.914292 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.194.223.80 +08/21-09:07:10.924514 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.194.223.80 +08/21-09:07:16.154358 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:07:51.001582 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.236.154.140 +08/21-09:07:56.009483 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.236.154.140 +08/21-09:08:54.658384 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:09:25.268183 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-09:09:54.514635 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.83.193.244 +08/21-09:09:59.525718 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.83.193.244 +08/21-09:10:28.241775 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:10:35.531998 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:10:36.630044 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:10:37.653440 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:10:37.653491 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:10:40.626898 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:10:40.626898 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-09:11:08.232857 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:08.232858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:08.232858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:08.232858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:08.232858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:08.233031 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:11.232803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:11.232803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:11.232803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:14.233008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:14.233008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:14.233008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:17.233195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:17.233195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:17.233196 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:20.233646 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:20.233647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:20.233647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:23.233611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:23.233611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:23.233611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:26.233769 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:26.233770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:26.233770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:29.233988 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:29.233988 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:29.233988 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:32.234149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:32.234149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:32.234150 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:35.234698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:35.234698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:35.234755 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:38.234803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:38.234886 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:38.234886 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:41.235063 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:41.235064 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:41.235064 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:44.235012 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:44.235012 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:44.235012 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:47.235312 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:11:47.235312 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.65.229.194 +08/21-09:12:00.322174 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.65 -> 185.93.41.55 +08/21-09:12:00.842291 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.66 -> 185.93.41.55 +08/21-09:12:34.798485 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:34.798485 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:34.798486 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:34.798486 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:34.798486 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:34.798486 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:38.168402 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:38.168402 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:38.168402 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:42.468633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:42.468633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:50.149370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:12:50.149370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:17.327443 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.180.232.194 +08/21-09:13:22.342804 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.180.232.194 +08/21-09:13:22.891504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:22.891504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:22.891504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:22.891504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:22.891504 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:26.561455 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:30.221781 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:13:35.462300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-09:14:31.931426 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:14:44.491887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:44.571773 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:44.842231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:46.301901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:46.521915 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:47.441969 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:47.621928 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:48.911998 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:49.582145 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:50.441950 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:50.872129 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:51.352149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:51.852131 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:52.192299 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:52.581998 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:52.912268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:54.792339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:55.192237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:55.542201 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:55.902179 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:56.032346 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:56.642473 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:56.822357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:56.842254 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:56.842255 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:57.662249 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:57.692477 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:58.182260 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:14:59.542649 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:01.712487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:02.742427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:02.742427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:02.892776 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:03.472748 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:04.972556 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:05.302689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:05.372533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:05.602690 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:05.742592 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:06.172655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:07.782607 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:07.862918 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:09.122914 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:09.902802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:10.543042 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:10.842849 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:11.592819 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:11.803030 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:12.992924 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:14.282944 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:14.513000 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:14.742999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:16.463103 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.263184 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.293008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.323343 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.333126 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.543240 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:17.853028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:18.693157 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:18.853360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:19.173156 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:19.213285 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:19.493265 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:21.003250 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:21.033152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:22.033471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:22.273241 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:23.273339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:23.653587 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:24.263367 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:25.503385 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:25.583333 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:25.783472 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:25.843567 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:25.923370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:26.053529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:26.753442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:27.343362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:27.593453 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:27.633514 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:29.863475 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:30.033630 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:31.173572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:32.243835 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:32.323823 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:34.094007 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:34.273779 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:34.743844 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:34.763791 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:34.934108 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:35.423910 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:35.853780 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:35.933845 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:36.123831 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:37.223740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:37.803793 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:38.353776 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:39.853962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:40.183910 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:40.243942 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:40.443964 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:41.373962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:41.613971 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:41.863954 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:42.663980 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:42.824040 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:43.204146 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:43.834307 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:43.974192 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:44.344128 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:44.644369 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:45.214248 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:45.294234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:45.984187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:46.074290 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:48.024361 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:49.074518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:49.454481 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:49.644324 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:50.924354 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:53.484493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:54.464523 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:54.524557 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:55.084665 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:55.744544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:56.634554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:57.144608 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:57.254559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:57.864759 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:58.164670 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:58.424673 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:58.704671 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:15:59.404687 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:00.845110 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:02.004765 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:02.354867 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:02.394743 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:02.414802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:04.394891 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:05.714865 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:05.794887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:06.604935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:06.844926 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:06.964974 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:07.444934 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:07.464945 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:08.215023 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:08.794996 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:09.085057 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:09.125024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:09.255056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:09.305056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:10.365152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:10.985132 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:11.355141 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:12.095160 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:12.795223 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:13.095160 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:13.955223 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:14.620115 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.127.126.165 +08/21-09:16:14.665275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:15.255268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:15.565221 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:15.745285 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:15.835491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:17.565638 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:18.385694 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:18.935563 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:19.595855 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:19.875746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:20.035533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:20.160641 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.127.126.165 +08/21-09:16:20.855540 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:21.245626 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:21.515505 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:21.805860 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:22.205654 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:22.695792 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:24.145668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:24.425682 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:24.805696 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:25.415896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:25.945735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:26.255771 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:27.175937 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:27.960574 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:28.065815 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:28.325823 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:29.435948 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:29.615881 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:29.796028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:29.855939 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:30.345951 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:30.825871 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:31.106008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:32.255895 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:32.436033 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:32.966040 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:33.756067 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:33.776013 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:34.426252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:34.466132 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:35.406119 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:35.606268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:36.066131 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:36.326381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:37.636171 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:38.246464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:38.626267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:38.666234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:38.706220 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:38.886261 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:39.226560 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:39.646230 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:40.266496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:40.706321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:40.806491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:41.926693 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:41.996631 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:42.816653 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:43.876398 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:45.566607 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:45.686484 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:46.256677 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:46.326668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:47.506706 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:48.636609 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.546688 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.556666 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.816722 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:16:49.827195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.866674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.976840 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:49.976841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:50.046873 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:50.766647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:51.416696 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:52.326786 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:52.536746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:53.956884 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:53.986898 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:54.346879 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:54.366841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:54.576866 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:54.967038 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:55.027137 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:55.086911 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:55.247204 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:55.746874 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:16:56.926934 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.2.172 +08/21-09:18:07.089332 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:08.086487 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:09.085603 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:09.085603 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:12.143419 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:12.143691 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:18:23.711388 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-09:20:00.919587 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.144.59.87 +08/21-09:20:05.920674 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.144.59.87 +08/21-09:20:57.099715 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.16 +08/21-09:22:22.339776 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-09:22:29.669913 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:22:59.456132 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.118.11.184 +08/21-09:23:04.458331 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.118.11.184 +08/21-09:23:37.042962 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-09:23:57.573389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:25:57.865516 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.136 +08/21-09:26:14.648788 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 35.182.141.67 +08/21-09:26:21.997364 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 35.182.141.67 +08/21-09:27:19.441483 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:30:15.358604 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:30:45.649740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:31:51.003555 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.45.176.250 +08/21-09:33:29.760331 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-09:33:43.236528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:34:46.564261 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.8.28.28 +08/21-09:34:52.971410 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 3.8.28.28 +08/21-09:36:19.507626 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.250.111.159 +08/21-09:36:24.541958 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.250.111.159 +08/21-09:38:32.191729 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.104.241.110 -> 185.93.41.55 +08/21-09:38:43.545332 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.104.94.121 -> 185.93.41.55 +08/21-09:39:53.658270 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.210.54.119 +08/21-09:39:58.672424 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.210.54.119 +08/21-09:40:55.345487 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:55.404021 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:55.535627 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:55.691481 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:55.819476 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:56.054782 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:56.386410 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 193.108.119.216 +08/21-09:40:58.473648 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-09:40:58.473648 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-09:42:07.906277 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:42:32.287142 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:46:53.157355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:46:54.869927 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-09:47:30.098764 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:48:08.610237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:48:47.925701 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:49:07.096581 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-09:49:07.096726 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-09:50:05.113442 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.233.18.96 +08/21-09:50:10.121742 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.233.18.96 +08/21-09:50:19.145539 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:50:32.199802 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:32.672194 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:33.756922 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:33.756922 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:41.593735 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:41.593735 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:50:46.600689 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-09:51:02.127362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-09:51:36.900966 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.48.42.141 +08/21-09:51:41.902240 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.48.42.141 +08/21-09:52:29.810741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.1.22 +08/21-09:52:29.810742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.1.22 +08/21-09:52:31.620733 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:52:32.810856 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.1.22 +08/21-09:52:54.423868 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-09:54:14.364591 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:54:16.471428 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-09:55:12.207031 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:55:21.646016 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:21.646017 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:21.646017 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:21.678699 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:21.949144 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:22.360530 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:23.009530 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:24.529451 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:27.683138 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:31.379347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:31.379347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:31.379347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:31.379347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:33.187146 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/21-09:55:58.069044 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-09:56:08.569200 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:56:39.784394 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.119 -> 185.93.41.55 +08/21-09:56:39.790289 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.243.132 -> 185.93.41.55 +08/21-09:56:39.851630 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 172.253.64.113 -> 185.93.41.55 +08/21-09:56:40.500598 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-09:56:48.600739 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-10:01:57.305830 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:01:58.268157 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:01:59.259772 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:01:59.261473 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:02:02.257859 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:02:02.257860 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:02:07.307913 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:02:07.309763 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:02:12.406955 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-10:03:44.986999 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:06:25.023300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-10:09:10.589947 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:09:13.296869 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/21-10:09:13.296870 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.136 +08/21-10:09:15.403064 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:15.403064 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:15.499283 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:15.499283 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:20.465424 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:20.509329 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:09:43.394751 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 116.211.239.113 +08/21-10:09:43.403453 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 116.211.239.113 +08/21-10:09:43.664456 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 116.211.239.113 +08/21-10:11:05.954519 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-10:11:52.476202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-10:12:03.176612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:14:34.999724 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.181 -> 185.93.41.55 +08/21-10:14:35.005363 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.146 -> 185.93.41.55 +08/21-10:15:11.144187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:17:13.598735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-10:17:26.819265 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:20:27.946357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-10:23:53.668410 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-10:24:15.149547 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-10:24:15.149548 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-10:25:08.847603 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:25:40.876011 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-10:26:09.733618 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/21-10:26:09.733619 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/21-10:27:08.042061 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/21-10:27:15.202268 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:27:49.505186 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-10:28:08.471151 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-10:30:41.520647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:30:50.600772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:31:06.291366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:31:17.841936 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-10:31:19.951943 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:31:25.412166 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:31:25.742028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:31:27.242239 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-10:32:08.814039 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:32:13.614264 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:32:21.354318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:32:30.324639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:32:33.426226 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:32:44.955462 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:32:47.965359 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.143.231 +08/21-10:35:42.238198 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:42.238199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:42.238199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:42.238199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:42.238199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:48.028392 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:48.028392 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:48.028393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:48.028393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:48.028393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:51.998529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:51.998529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:51.998529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:51.998529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:51.998529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-10:35:54.002777 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:37:16.465967 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:37:51.257252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:40:01.003103 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:40:02.055445 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:40:03.079616 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:40:03.079685 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.134 +08/21-10:44:13.805780 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-10:44:13.805832 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-10:45:41.995724 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-10:47:43.120600 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:48:51.233588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:49:31.314639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:53:04.682922 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-10:54:13.588247 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-10:54:13.588247 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.132 +08/21-10:55:42.829146 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-11:10:23.940202 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:23.940202 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:23.940203 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:23.940203 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:23.940473 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:10:23.940474 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:10:26.944965 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:26.944965 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:26.944965 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:26.944965 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:10:26.945132 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:10:26.945132 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:10:28.270778 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:28.270778 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:29.655920 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:29.655920 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:29.656195 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:31.272704 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:31.272704 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:32.440055 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:10:32.440055 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:10:32.440325 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:32.657201 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:32.657201 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:32.657327 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:33.169179 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:10:33.169179 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:10:33.169294 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:10:34.278725 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:34.278725 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:10:35.658174 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:35.658174 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:35.658355 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:36.940745 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:10:36.940745 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:10:36.940823 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:10:38.089039 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:10:38.089039 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:10:38.089269 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:10:38.255787 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:38.255787 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:39.250850 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:39.250850 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:40.255514 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:40.255514 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:10:42.613796 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.12.83 -> 192.168.177.40 +08/21-11:10:48.672628 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:48.672628 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:48.672629 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:48.672629 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:48.672951 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:48.672951 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:51.085046 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:10:51.085046 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:10:51.085237 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:10:51.676809 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:51.676809 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:51.676809 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:51.676809 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:51.677111 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:51.677112 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:54.676838 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:54.676838 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:54.676838 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:54.676838 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:10:54.676989 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:54.676989 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:10:59.920916 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:10:59.920916 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:10:59.921077 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:02.455295 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:11:02.455295 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:11:02.455487 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:11:02.924541 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:02.924541 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:02.924721 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:03.182307 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:11:03.182307 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:11:03.182587 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:11:05.926644 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:05.926644 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:05.926881 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:06.959629 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:11:06.959629 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:11:06.959630 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:11:08.112449 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:11:08.112449 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:11:08.112612 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:11:08.270213 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:08.270213 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:09.266429 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:09.266429 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:10.269883 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:10.269883 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:18.930149 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:18.930149 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:18.930149 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:18.930149 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:18.930149 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:18.930344 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:21.101556 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:11:21.101556 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:11:21.101789 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:21.934074 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:21.934074 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:21.934075 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:21.934075 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:21.934243 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:21.934243 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:24.935248 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:24.935248 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:24.935248 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:24.935248 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:11:24.935614 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:24.935614 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:11:32.471548 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:11:32.471548 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:11:32.471797 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:11:33.201989 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:11:33.201989 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:11:33.202107 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:11:34.421808 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:34.421808 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:34.425710 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:34.425710 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:35.425727 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:35.425727 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:35.549311 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:35.549311 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:36.429504 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:36.429504 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:36.447786 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:36.447786 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:36.975000 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:11:36.975000 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:11:36.975113 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:11:37.437291 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:37.437291 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:37.562247 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:37.562247 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:38.126842 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:11:38.126842 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:11:38.126995 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:11:38.280200 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:38.280200 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:11:38.442902 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.168.32.219 -> 192.168.32.1 +08/21-11:11:38.442902 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID08/21-11:12:36.505906 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:12:36.505906 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:12:36.506058 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:12:37.657881 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:12:37.657881 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:12:37.658012 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:12:37.817644 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:37.817644 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:38.819870 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:38.819870 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:39.820022 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:39.820022 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:12:50.650382 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:12:50.650382 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:12:50.650617 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:02.017559 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:13:02.017559 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:13:02.017810 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:02.748098 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:13:02.748098 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:13:02.748098 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:06.517988 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:13:06.517988 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:13:06.517988 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:13:07.668107 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:13:07.668107 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:13:07.668230 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:07.829369 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:07.829369 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:08.832369 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:08.832369 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:09.835498 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:09.835498 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:13:12.295652 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.12.83 -> 192.168.177.40 +08/21-11:13:13.598256 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:13:13.598256 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:13.598256 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599409 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599409 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:13:16.599410 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:16.599410 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:18.182546 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182546 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:18.182735 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:18.182735 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:18.182735 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:18.182736 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:19.595549 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:13:19.595549 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:19.595549 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:13:20.667041 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:13:20.667041 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:13:20.667254 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:21.176383 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176383 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176384 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:21.176743 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:21.176743 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:21.176743 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:21.176743 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:24.182228 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182228 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182229 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:13:24.182492 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:24.182492 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:24.182492 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:13:25.048479 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048479 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048480 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048480 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048480 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048480 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048598 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048598 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:25.048739 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:25.048914 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:25.048914 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:25.048914 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:27.346967 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.346967 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:27.347316 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:27.347316 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:27.347316 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:27.347316 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:28.054721 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054721 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054722 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:28.054935 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:28.054935 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:28.054935 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:28.054936 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:29.640035 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640035 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640035 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640035 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640035 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640035 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640186 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640186 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:29.640186 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:29.640346 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:29.640346 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:29.640346 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:30.348523 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348523 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:30.348694 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:30.348694 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:30.348875 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:30.348875 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:31.051233 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051233 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051233 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051233 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051234 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051234 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051234 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051234 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:13:31.051420 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:31.051420 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:31.051420 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:13:32.036016 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:13:32.036016 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:13:32.036410 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:32.641897 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641897 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.641898 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:32.642090 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:32.642090 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:32.642090 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:32.642090 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:32.763332 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:13:32.763332 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:13:32.763528 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:33.350135 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350135 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350135 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350135 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350135 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350135 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350136 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350136 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:13:33.350306 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:33.350307 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:33.350462 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:33.350462 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:13:35.650275 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650275 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650275 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650275 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650276 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650276 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650276 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650276 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:13:35.650439 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:35.650581 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:35.650581 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:13:35.650581 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:14:01.838480 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:14:01.838480 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:14:01.838585 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:14:02.390069 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:02.390069 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:02.390184 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:02.569359 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:14:02.569359 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:14:02.569677 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:14:06.331365 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:14:06.331365 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:14:06.331365 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:14:07.490539 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:14:07.490539 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:14:07.490539 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:07.641934 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:07.641934 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:08.651489 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:08.651489 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:09.648318 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:09.648318 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:13.739505 [**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] [Classification: Potentially Bad Traffic] [Priority: 2] [AppID: DNS] {UDP} 192.168.177.1:53 -> 192.168.177.40:62454 +08/21-11:14:15.402566 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:15.402566 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:15.402567 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:15.402567 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:15.402747 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:15.402747 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:18.399339 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:18.399339 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:18.399339 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:18.399339 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:18.399507 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:18.399507 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:20.486763 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:14:20.486763 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:14:20.487053 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:14:20.902927 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:20.902927 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:21.405422 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:21.405422 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:21.405422 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:21.405422 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.100:161 +08/21-11:14:21.405772 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:21.405867 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:23.900127 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:23.900127 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:26.909242 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:26.909242 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:31.850556 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:14:31.850556 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:14:31.850742 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:14:32.580370 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:14:32.580370 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:14:32.580583 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:14:36.348120 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:14:36.348120 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:14:36.348120 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:14:37.501687 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:14:37.501687 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:14:37.501924 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:14:37.663447 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:37.663447 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:38.661318 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:38.661318 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:39.662757 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:39.662757 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:14:39.916207 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:39.916207 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:39.916208 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:39.916208 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:42.023996 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.12.83 -> 192.168.177.40 +08/21-11:14:42.916350 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:42.916350 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:42.916351 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:42.916351 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:45.918487 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:45.918487 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:45.918487 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:45.918487 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.36:161 +08/21-11:14:50.495869 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:14:50.495869 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:14:50.496149 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:15:01.861907 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:15:01.861907 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:15:01.862057 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:15:02.600642 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:15:02.600642 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:15:02.600959 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:06.363272 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:15:06.363272 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:15:06.363272 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:07.517665 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:15:07.517665 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:15:07.517665 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:15:07.679550 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:07.679550 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:08.676201 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:08.676201 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:09.677391 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:09.677391 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:19.440495 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:19.440495 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:19.440702 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:20.514060 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:15:20.514060 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:15:20.514248 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:15:22.442400 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:22.442400 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:22.442657 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:25.444788 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:25.444788 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:25.445009 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:26.719871 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:26.719871 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:26.719872 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:26.719872 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:26.719872 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:29.717746 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:29.717746 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:29.717747 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:29.717747 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:29.717747 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:31.882430 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:15:31.882430 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:15:31.882665 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:15:32.615458 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:15:32.615458 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:15:32.615637 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:32.725364 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:32.725364 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:32.725364 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:32.725364 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:32.725364 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:36.386686 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:15:36.386686 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:15:36.386686 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:37.534238 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:15:37.534238 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:15:37.534438 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:15:37.695679 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:37.695679 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:38.458191 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:38.458191 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:38.458191 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:38.458191 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:38.458192 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:38.458192 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:38.693250 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:38.693250 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:39.693201 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:39.693201 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:15:41.452251 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:41.452251 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:41.452251 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:41.452251 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:41.452465 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:41.452465 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:44.456980 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:44.456980 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:44.456980 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:44.456980 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.240:161 +08/21-11:15:44.457265 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:44.457310 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:15:45.731883 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:45.731883 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:45.731883 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:47.136572 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:47.136572 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:47.136851 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:15:48.726489 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:48.726489 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:48.726489 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:50.144395 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:50.144395 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:50.144590 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:15:50.533598 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:15:50.533598 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:15:50.533792 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:15:51.735048 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:51.735048 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.40:161 +08/21-11:15:51.735049 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:15:53.139806 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:53.139806 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:15:53.140058 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:01.899199 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:16:01.899199 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:16:01.899352 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:02.629007 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:16:02.629007 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:16:02.629315 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:16:06.153742 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:06.153742 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:06.153742 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:06.153742 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:06.153982 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:06.153982 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:06.401601 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:16:06.401601 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:16:06.401601 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:16:07.552248 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:16:07.552248 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:16:07.552375 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:16:07.708327 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:07.708327 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:08.708654 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:08.708654 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:09.147830 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:09.147830 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:09.147830 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:09.147830 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:09.148064 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:09.148064 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:09.713919 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:09.713919 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:12.072204 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.12.83 -> 192.168.177.40 +08/21-11:16:12.148398 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:12.148398 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:12.148399 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:12.148399 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.242:161 +08/21-11:16:12.148638 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:12.148638 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:17.402963 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:17.402963 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:17.403209 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:20.409442 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:20.409442 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:20.409721 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:20.548491 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:16:20.548491 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:16:20.548791 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:23.406146 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:23.406146 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:23.406347 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:31.912137 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:16:31.912137 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:16:31.912415 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:16:32.646124 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:16:32.646124 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:16:32.646364 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:16:36.414243 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:16:36.414243 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:16:36.414244 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:36.414244 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:36.414244 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:36.414244 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:36.414244 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:16:36.414443 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:36.414443 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:37.572049 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:16:37.572049 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:16:37.572164 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:16:37.726309 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:37.726309 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:38.724694 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:38.724694 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:39.423038 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:39.423038 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:39.423039 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:39.423039 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:39.423039 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:39.423039 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:39.726077 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:39.726077 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:16:42.415998 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:42.415998 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:42.415998 [**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:42.415998 [**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] [Classification: Attempted Information Leak] [Priority: 2] {UDP} 10.255.255.5:38187 -> 192.168.177.235:161 +08/21-11:16:42.416141 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:16:42.416141 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:17:20.576501 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:17:20.576501 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:17:20.576702 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:17:28.378098 [**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] [Classification: Potentially Bad Traffic] [Priority: 2] [AppID: DNS] {UDP} 192.168.177.1:53 -> 192.168.177.36:56979 +08/21-11:17:28.379360 [**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] [Classification: Potentially Bad Traffic] [Priority: 2] [AppID: DNS] {UDP} 192.168.177.1:53 -> 192.168.177.36:56979 +08/21-11:17:31.945984 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:17:31.945984 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:17:31.946124 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:17:32.677945 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:17:32.677945 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:17:32.678221 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:17:36.448548 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:17:36.448548 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:17:36.448549 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:17:37.607347 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:17:37.607347 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:17:37.607492 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:17:37.757020 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:37.757020 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:38.757751 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:38.757751 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:39.756251 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:39.756251 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:17:42.117276 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.12.83 -> 192.168.177.40 +08/21-11:17:50.593816 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:17:50.593816 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.235 +08/21-11:17:50.594095 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.235 -> 10.255.255.5 +08/21-11:18:01.962767 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:18:01.962767 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.242 +08/21-11:18:01.962931 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.242 -> 10.255.255.5 +08/21-11:18:02.692307 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:18:02.692307 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.240 +08/21-11:18:02.692499 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.240 -> 10.255.255.5 +08/21-11:18:06.458923 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:18:06.458923 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.40 +08/21-11:18:06.458923 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.40 -> 10.255.255.5 +08/21-11:18:07.625453 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:18:07.625453 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.100 +08/21-11:18:07.625681 [**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.168.177.100 -> 10.255.255.5 +08/21-11:18:07.768679 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:18:07.768679 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.168.177.36 +08/21-11:29:07.312148 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-11:29:11.381683 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:29:37.109598 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-11:29:52.553953 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:30:02.403820 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:30:02.403820 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:30:02.800432 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 119.96.108.84 +08/21-11:30:23.080175 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-11:30:23.490992 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-11:30:45.454148 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-11:31:02.438126 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:31:02.438126 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:31:02.445215 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:31:02.445215 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:32:02.582406 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-11:32:02.582406 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-11:32:31.689395 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:33:02.508862 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:33:02.508862 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:34:02.548074 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:34:02.548074 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:35:02.584169 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:35:02.584169 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:35:49.115839 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:35:54.789310 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-11:35:54.789337 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-11:36:02.680369 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:36:02.680369 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:37:02.912924 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:37:02.912924 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:39:02.987458 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:39:02.987458 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:40:03.024692 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:40:03.024692 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:40:51.949110 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:41:03.055218 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:41:03.055218 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:41:25.649547 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.15 +08/21-11:42:03.094650 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:42:03.094650 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:42:17.726869 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 213.183.62.133 +08/21-11:42:17.779942 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 213.183.62.133 +08/21-11:42:17.928010 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 213.183.62.133 +08/21-11:42:17.930926 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 213.183.62.133 +08/21-11:44:03.179854 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:44:03.179854 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:44:03.947251 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.2.132 +08/21-11:44:38.635259 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-11:45:03.179036 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:45:03.179036 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:46:03.205596 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:46:03.205596 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:46:03.213439 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:46:03.213439 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:46:16.403940 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-11:47:03.246548 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:47:03.246548 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:47:17.657018 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-11:48:50.506901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:49:03.315463 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:49:03.315463 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:50:03.346482 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:50:03.346482 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:50:48.310372 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:50:50.091347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:51:00.096844 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:51:03.371717 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:51:03.371717 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:51:03.379449 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:51:03.379449 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:51:12.903657 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-11:51:19.197058 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:52:03.405592 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:52:03.405592 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-11:52:03.413544 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:52:03.413544 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:52:47.684747 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:53:03.442840 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:53:03.442840 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-11:53:03.450936 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:53:03.450936 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-11:54:03.775800 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:55:00.546291 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-11:55:08.130347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:55:08.510626 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:55:16.705094 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-11:56:03.555676 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:56:03.555676 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:57:20.491732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:58:03.615343 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-11:58:03.615343 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-11:58:03.617252 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:58:03.617252 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-11:58:52.528583 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:58:52.528583 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:58:52.528584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:58:52.528584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:58:52.528584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:59:37.385528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-11:59:47.538475 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:59:47.538475 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:59:47.538475 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:59:47.538475 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-11:59:47.538509 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-12:00:03.673148 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-12:00:03.673148 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-12:00:32.605431 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-12:02:03.740809 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-12:02:03.740809 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-12:02:03.742667 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-12:02:03.742667 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-12:04:03.808845 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:04:03.808845 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:04:09.612363 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:04:49.121652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:05:49.630085 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.50.218 +08/21-12:06:03.839189 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:06:03.839189 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:06:14.691091 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.184.59.70 +08/21-12:06:14.702992 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.184.59.70 +08/21-12:06:14.704999 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.184.59.70 +08/21-12:06:14.717963 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 123.184.59.70 +08/21-12:06:18.535178 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/21-12:06:28.165697 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:06:30.543015 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:06:31.531900 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:07:03.843549 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:07:03.843549 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:10:07.184228 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:11:05.466379 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:12:11.769694 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:12:44.840327 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:13:03.880441 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:13:03.880441 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:14:03.884690 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:14:03.884690 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:16:03.872872 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-12:16:03.872872 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-12:16:08.108238 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:17:05.464082 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.497768 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.501898 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.544860 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.547796 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.559786 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.559912 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.561730 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.578830 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.578830 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.597619 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.619735 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.640674 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.666425 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.670853 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.679629 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.704352 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.741893 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.772827 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.783723 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.824720 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.851998 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.866188 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.884140 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.884210 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.897982 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.910703 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.944402 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.979590 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:05.981519 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.006144 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.027005 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.049615 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.051181 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.067797 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.108708 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.139956 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.154115 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.172969 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.202108 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.229743 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.305768 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.370835 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.488036 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.542878 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.551059 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.555835 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.609982 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.666501 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.715737 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.718829 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.747746 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.869937 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:06.971229 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.438933 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.707956 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.755058 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.868116 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.871514 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.899235 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:07.991902 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.111834 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.124644 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.389851 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.393945 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.522840 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.549012 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.558860 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.634952 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.710995 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.771061 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.840837 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.935402 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:08.966038 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.150961 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.435191 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.435772 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.511514 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.565810 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.726460 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.874272 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:09.948998 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.099036 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.099036 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.140033 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.243035 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.396006 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.398413 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.559192 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.576209 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.632790 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.654136 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.687038 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.870338 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:10.879465 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:11.166995 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:11.471095 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:11.564246 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:11.582271 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:11.912097 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.351097 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.399121 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.454836 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.646340 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.668057 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.913228 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:12.913228 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:13.214205 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:13.214205 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:13.739264 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:13.955460 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:14.751395 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:14.751540 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:14.753966 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:14.771417 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.003172 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.006229 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.259826 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.464226 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.516335 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.717329 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:15.974341 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:17.030413 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:17.515517 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:17.515517 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:17.822022 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:17.826321 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:18.610536 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:19.643486 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:20.590554 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:23.963893 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:23.979811 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:24.220091 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:24.222354 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:24.476136 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:25.990801 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:26.474063 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:26.744077 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:27.038269 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:27.041756 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:27.804029 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:28.495021 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:28.573892 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:28.609570 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:29.476887 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:30.624117 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:31.071138 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:31.071165 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:36.449418 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.909150 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.909250 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.909299 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.909349 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.912655 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:42.973750 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:43.013925 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.062985 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.267579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.267704 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.725846 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.931983 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.934510 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.939765 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:45.939765 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:47.016000 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:47.016000 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:47.989588 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:47.994042 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:17:57.971953 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:00.829334 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:01.037547 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:13.076265 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:15.934503 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:16.140265 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:19.785090 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:19.785090 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:19.785091 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:19.787451 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:20.810894 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:20.810894 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:22.823813 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:22.823813 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:22.824103 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:23.882770 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:23.882770 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:24.857790 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:26.907791 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:28.178176 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:31.039067 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:31.248143 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:34.473966 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:18:43.281843 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:45.104974 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:46.362434 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:18:58.386555 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:01.456639 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:03.865427 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:19:03.865427 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:19:13.493361 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:16.563533 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:32.701969 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:32.701969 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:34.495907 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:36.543428 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:19:42.686545 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 188.116.24.17 +08/21-12:20:14.690752 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 129.152.29.126 +08/21-12:20:14.925915 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 129.152.29.126 +08/21-12:20:14.929710 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 129.152.29.126 +08/21-12:20:14.933249 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 129.152.29.126 +08/21-12:20:38.868972 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:21:03.872026 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-12:21:03.872026 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-12:22:03.873008 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:22:03.873008 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:22:12.385531 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/21-12:22:12.385569 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/21-12:22:12.385569 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/21-12:22:12.385618 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.21 +08/21-12:23:09.784850 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:23:24.566227 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:23:27.672421 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:23:28.208480 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:24:58.832567 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 108.157.214.71 +08/21-12:27:03.895220 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:27:03.895220 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:27:09.804331 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:28:03.900300 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:28:03.900300 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:28:16.007476 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:29:03.825205 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:29:28.529631 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:31:03.913983 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:31:03.913983 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:31:48.975190 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:32:03.915064 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:32:03.915064 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:32:51.891387 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-12:34:29.731390 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:34:47.374083 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:34:50.130203 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:34:58.622524 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:35:03.918886 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:35:03.918886 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:36:03.925724 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:36:03.925724 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:37:03.924649 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:37:03.924649 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:37:52.395041 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.94.121 +08/21-12:38:51.161697 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:40:03.934059 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:40:03.934059 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:41:04.011985 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:41:04.011985 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-12:43:58.489985 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.176.128.128 +08/21-12:44:42.725418 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:45:03.946871 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:45:03.946871 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:45:21.487154 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:46:52.030564 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:48:03.956888 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:48:03.956888 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:49:03.963626 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:49:03.963626 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-12:49:04.465731 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:49:59.917898 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:50:06.138323 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:50:10.538353 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:51:48.564047 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:54:24.998275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:55:03.991530 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-12:55:03.991530 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-12:56:03.991855 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-12:56:03.991855 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-12:56:27.843143 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-12:56:44.153669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:57:30.830175 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-12:58:04.002457 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-12:58:04.002457 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-12:58:45.518410 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-12:59:07.429374 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-12:59:12.299518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-12:59:51.601148 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-13:00:04.009524 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:00:04.009524 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:01:04.013360 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-13:01:04.013360 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-13:02:04.017486 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:02:04.017486 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:05:04.026210 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:05:04.026210 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:05:56.198375 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-13:06:04.035686 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-13:06:04.035686 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-13:06:35.626923 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:07:04.039801 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-13:07:04.039801 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-13:07:46.729699 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:11:04.055637 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:11:04.055637 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:12:04.057760 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:12:04.057760 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:13:04.061608 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:13:04.061608 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-13:13:54.544122 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:13:58.964295 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.142 +08/21-13:18:10.144097 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:18:50.715756 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:19:26.607240 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.66 +08/21-13:20:33.631153 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-13:21:46.212501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-13:21:56.832878 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:24:04.123668 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:24:04.123668 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:24:31.766046 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 76.8.60.71 +08/21-13:24:31.868760 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 76.8.60.71 +08/21-13:24:31.870076 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 76.8.60.71 +08/21-13:24:32.883154 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 76.8.60.71 +08/21-13:24:40.238610 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.15 +08/21-13:25:04.137671 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:25:04.137671 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:25:23.023631 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 156.59.219.36 +08/21-13:25:23.030648 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 156.59.219.36 +08/21-13:25:23.042603 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 156.59.219.36 +08/21-13:25:23.283682 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 156.59.219.36 +08/21-13:25:36.012592 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 192.71.26.73 -> 185.93.41.55 +08/21-13:25:44.319397 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-13:27:04.122656 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:27:04.122656 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:29:18.730288 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:30:04.133522 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:30:04.133522 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:30:44.964212 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.251 -> 185.93.41.55 +08/21-13:30:44.972257 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 192.178.241.234 -> 185.93.41.55 +08/21-13:31:04.139990 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:31:04.139990 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:31:05.244572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:31:11.584735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.26.143 +08/21-13:32:04.143940 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:32:04.143940 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:32:04.146789 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-13:32:18.307511 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-13:33:04.154425 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:33:04.154425 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:33:38.350503 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-13:33:45.920769 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:34:04.148715 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:34:04.148715 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:34:19.480368 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.103.186.106 +08/21-13:34:24.515612 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.103.186.106 +08/21-13:35:04.152566 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:35:04.152566 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:36:04.165636 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.241 +08/21-13:36:04.165636 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.241 +08/21-13:36:19.326799 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:36:52.608270 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:37:00.949346 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-13:37:04.156934 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:37:04.156934 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:38:04.170707 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:38:04.170707 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:38:14.521316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-13:40:04.162121 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:40:04.162121 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-13:40:04.172954 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.241 +08/21-13:40:04.172954 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.241 +08/21-13:40:04.173268 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:40:04.173268 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-13:53:03.103837 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:53:03.103837 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-13:56:48.005483 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-13:57:54.542945 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-13:59:46.150027 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.11 +08/21-13:59:46.150027 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.48.11 +08/21-14:00:36.860477 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:01:58.114460 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:02:13.112327 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:02:34.686816 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-14:03:40.989648 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:04:31.717046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:04:43.621219 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 46.243.143.156 +08/21-14:05:02.703652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:05:10.017672 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:05:25.596035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:05:32.779931 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:06:03.521532 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:06:03.521532 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:07:03.552117 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:07:03.552117 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:08:03.585984 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:08:03.585984 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:08:45.013634 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:08:55.849901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:08:55.849901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:08:55.849901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:08:55.849975 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:08:55.850051 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:08:59.884194 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:09:04.014405 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:09:12.211035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:09:28.348076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:10:56.900923 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-14:10:57.735111 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.197 +08/21-14:12:03.714074 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:12:03.714074 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:12:22.058516 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-14:12:30.083414 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/21-14:12:55.582991 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/21-14:13:03.746247 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:13:03.746247 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-14:14:48.019163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:15:15.403950 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:15:58.481531 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-14:16:03.847109 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:16:03.847109 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:16:03.847109 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-14:16:03.847109 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-14:16:18.417940 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:17:51.442585 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.0.161 +08/21-14:17:52.981144 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:17:53.283334 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:17:55.302379 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:18:51.990740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:19:03.944124 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-14:19:03.944124 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-14:19:03.945912 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-14:19:03.945912 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.201 +08/21-14:19:13.464559 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-14:19:13.765519 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-14:19:15.794926 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-14:20:03.974494 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:20:03.974494 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:20:49.183772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:20:51.445028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:21:04.008196 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:21:04.008196 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:22:04.050009 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:22:04.050009 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:22:16.627099 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-14:22:27.546873 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.143 +08/21-14:22:50.393914 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:22:52.691881 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:22:54.491446 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:22:55.538723 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:22:57.045750 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:22:57.045750 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:23:02.968569 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.137 +08/21-14:23:24.067178 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 219.142.106.139 +08/21-14:25:06.192274 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:26:04.163122 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:26:04.163122 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:26:04.163484 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:26:04.163484 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:26:12.808191 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:26:38.809207 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-14:26:38.811991 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:26:38.811991 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:26:39.114913 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:26:41.156200 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/21-14:26:41.156200 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/21-14:27:04.194181 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:27:04.194181 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:27:04.194397 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:27:04.194397 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:27:04.201891 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.216 +08/21-14:27:04.201891 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.216 +08/21-14:27:13.721013 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:27:50.630206 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-14:28:03.006089 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:28:04.205795 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:28:04.205795 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:28:04.206173 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:28:04.206173 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:29:04.208478 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:29:04.208478 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:29:04.208893 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:29:04.208893 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:30:04.209578 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:30:04.209578 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:30:04.209925 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:30:04.209925 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:31:04.216567 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:31:04.216567 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:31:05.073347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:31:11.033500 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:31:48.984965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:32:04.218130 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:32:04.218130 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:32:09.286073 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:33:04.218213 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:33:04.218213 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-14:33:29.419080 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:33:41.349462 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:33:53.749851 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:34:04.226593 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:34:04.226593 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:34:04.234531 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.228 +08/21-14:34:04.234531 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.228 +08/21-14:34:04.237591 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:34:04.237591 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:35:58.874834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:36:04.234287 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.238 +08/21-14:36:04.234287 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.238 +08/21-14:36:21.645732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:39:36.420026 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 95.142.204.178 +08/21-14:41:55.578753 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:42:00.869024 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:42:05.059099 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:42:54.885613 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.169.94 +08/21-14:42:58.887304 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.169.94 +08/21-14:47:15.453187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:15.453187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:17.217192 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-14:47:18.463155 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:18.463262 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:18.463309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:21.473496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:24.483536 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:47:33.514034 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-14:48:09.133453 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:48:09.748832 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:48:09.748832 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-14:50:06.758008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:50:09.743938 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:50:09.743938 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-14:50:41.329418 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-14:50:42.879421 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:09.747770 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:51:09.747770 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:51:21.320921 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:27.051189 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:34.381360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:34.451407 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:38.151600 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:44.891870 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:50.532055 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:51:55.842231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:52:00.292397 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:52:09.750618 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:52:09.750618 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:52:31.483726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.212.60.167 +08/21-14:54:09.755228 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:54:09.755228 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-14:54:32.488458 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:54:49.309049 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:57:07.664555 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-14:57:09.773018 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.211 +08/21-14:57:09.773018 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.211 +08/21-14:57:31.180583 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-14:59:02.159037 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-14:59:34.774829 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-15:00:28.762393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:00:35.802742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:35.802742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:35.802837 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.482795 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.522716 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.522716 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.532735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:00:37.532735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.206.27 +08/21-15:02:54.708156 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:03:09.412602 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 181.13.244.29 +08/21-15:03:09.787243 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.238 +08/21-15:03:09.787243 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.238 +08/21-15:04:56.552930 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-15:05:09.785295 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:05:09.785295 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:06:09.785847 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:06:09.785847 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:06:37.106742 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-15:07:09.791520 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:07:09.791520 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:08:09.791270 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:08:09.791270 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:09:09.793625 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:09:09.793625 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:10:09.797934 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:10:09.797934 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-15:11:09.798949 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:11:09.798949 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:12:09.801960 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:12:09.801960 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:12:42.641080 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:13:09.804022 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:13:09.804022 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:13:10.255156 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-15:14:09.809682 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:14:09.809682 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:14:52.496259 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:15:09.817332 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-15:15:09.817332 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-15:15:46.748358 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.130 +08/21-15:16:09.820617 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:16:09.820617 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:17:09.824850 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:17:09.824850 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:17:54.133376 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:18:19.914441 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:19:09.827822 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-15:19:09.827822 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-15:19:20.226702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:20:09.828827 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:20:09.828827 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:20:11.508754 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:20:48.060223 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:21:09.835521 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:21:09.835521 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-15:21:18.671345 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:21:33.561973 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:25:09.843857 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.141 +08/21-15:25:09.843857 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.141 +08/21-15:27:09.813868 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.141 +08/21-15:27:09.813868 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.141 +08/21-15:27:26.605749 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:29:09.801698 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-15:29:09.801698 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-15:30:42.013332 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:31:09.833877 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-15:31:09.833877 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-15:31:32.355442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-15:31:55.826252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:33:09.862200 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:33:09.862200 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-15:33:34.714763 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-15:33:44.690642 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:34:09.855396 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-15:34:09.855396 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-15:36:09.864982 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:36:09.864982 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:36:21.486695 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:37:52.810285 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:38:23.751584 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-15:38:29.431725 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:39:05.536228 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-15:39:26.544015 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:40:09.884952 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:40:09.884952 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:40:55.610694 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-15:41:09.883439 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:41:09.883439 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:41:13.890600 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-15:41:24.848605 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-15:41:33.570494 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-15:42:09.888950 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-15:42:09.888950 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-15:42:47.751289 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.105.181.89 -> 185.93.41.55 +08/21-15:48:36.645458 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-15:49:09.910258 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:49:09.910258 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:51:37.952532 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:52:43.725233 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-15:54:15.855034 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 222.180.162.228 +08/21-15:55:09.913403 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:55:09.913403 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:55:09.915653 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:55:09.915653 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:56:07.808981 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:09.921051 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:56:09.921051 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:56:10.829224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:10.829224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:10.829318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:10.829318 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:13.849237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:13.849237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:13.849237 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:19.870267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:56:25.909827 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.212.5.164 +08/21-15:57:09.921847 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:57:09.921847 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:58:09.922672 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:58:09.922672 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-15:58:09.925412 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:58:09.925412 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:58:09.930447 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-15:58:09.930447 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-15:58:30.568832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-15:59:09.930075 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:59:09.930075 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-15:59:43.641659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:00:09.929277 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:00:09.929277 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:00:44.484074 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:00:51.834267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-16:01:09.937073 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:01:09.937073 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:01:55.976972 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:02:09.937342 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:02:09.937342 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:02:09.940114 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:02:09.940114 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:03:09.939718 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:03:09.939718 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:03:09.942527 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:03:09.942527 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:03:24.570357 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-16:04:09.953261 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:04:09.953261 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-16:04:09.958291 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-16:04:09.958291 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.133 +08/21-16:05:09.957965 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:05:09.957965 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:06:09.959998 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:06:09.959998 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:07:09.964785 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:07:09.964785 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:08:09.966267 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:08:09.966267 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:08:11.931652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:09:09.968441 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:09:09.968441 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:09:40.371438 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-16:10:09.971309 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:10:09.971309 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:10:19.716553 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:11:09.975114 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:11:09.975114 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:12:09.975926 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:12:09.975926 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:14:09.987244 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:14:09.987244 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:18:00.094745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:18:09.986204 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:18:09.986204 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:21:41.813384 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:21:44.633498 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:22:06.969658 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:06.969772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:06.969772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:06.969772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:06.969773 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:10.939669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:14.929902 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:22.870938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.229.221.95 +08/21-16:22:38.529184 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-16:22:40.225639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:23:09.996741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:23:09.999499 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:23:09.999499 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:23:15.476092 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 209.38.180.198 +08/21-16:23:15.583068 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:16.222593 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 82.163.78.161 +08/21-16:23:16.506408 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.59.55.11 +08/21-16:23:16.606958 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 209.38.180.198 +08/21-16:23:18.661916 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 82.163.78.161 +08/21-16:23:18.911179 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 209.38.180.198 +08/21-16:23:21.490366 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.217.199 +08/21-16:23:21.637226 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 146.190.4.192 +08/21-16:23:21.796534 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 50.116.39.197 +08/21-16:23:23.524924 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 82.163.78.161 +08/21-16:23:23.639337 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:31.707899 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.2 -> 51.89.179.182 +08/21-16:23:33.244542 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 82.163.78.161 +08/21-16:23:36.461237 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:37.440559 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:38.640022 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:41.078037 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.237.90 +08/21-16:23:57.191000 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.254.245.116 +08/21-16:23:57.191001 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.254.245.116 +08/21-16:23:57.192972 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.254.245.116 +08/21-16:23:57.203950 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.254.245.116 +08/21-16:24:01.548798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:24:09.139209 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:24:10.001469 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.138 +08/21-16:24:10.001469 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.138 +08/21-16:24:27.409797 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:25:09.998969 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:25:09.998969 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:26:10.001173 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:26:10.001173 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:26:22.144319 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:27:10.002275 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:27:10.002275 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:27:23.636757 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:28:10.005997 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:28:10.005997 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:29:10.007698 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:29:10.007698 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:29:15.200976 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:29:45.752224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:30:10.012277 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:30:10.012277 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:31:06.555472 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:31:10.015694 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:31:10.015694 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.147 +08/21-16:31:28.455551 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.69 +08/21-16:31:29.397844 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.78 +08/21-16:31:30.864769 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.75 +08/21-16:32:38.849101 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:33:10.025869 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:33:10.025869 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:33:19.090690 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:34:10.028829 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:34:10.028829 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:35:10.031544 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:35:10.031544 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:35:15.805359 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:36:00.652990 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.105.21.17 -> 185.93.41.55 +08/21-16:36:47.645242 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-16:37:10.038967 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:37:10.038967 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:37:50.061367 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:37:56.631684 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 211.21.48.186 +08/21-16:37:56.633583 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 211.21.48.186 +08/21-16:37:56.881602 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 211.21.48.186 +08/21-16:37:56.881602 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 211.21.48.186 +08/21-16:38:10.042169 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:38:10.042169 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:39:10.044281 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:39:10.044281 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:40:10.048761 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:40:10.048761 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:42:10.056829 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:42:10.056829 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:42:54.803279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:43:10.056766 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:43:10.056766 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:44:10.059881 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:44:10.059881 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-16:45:10.065747 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:45:10.065747 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:45:44.873757 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:44.874615 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:44.875820 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:45.678480 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:45.679761 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:45.680164 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:46.679909 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:46.679909 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:47.339480 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:47.339480 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:49.713884 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:49.730605 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:50.615826 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:50.615827 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:54.714150 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:54.714150 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/21-16:45:58.247752 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:58.247752 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:45:58.636687 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/21-16:46:10.069932 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:46:10.069932 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:46:15.101402 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-16:46:16.811280 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-16:46:23.841575 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:46:33.371772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-16:48:10.076221 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:48:10.076221 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:48:51.097017 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-16:49:09.164839 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-16:49:10.079965 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:49:10.079965 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:49:19.226495 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 175.6.22.149 +08/21-16:50:10.082572 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:50:10.082572 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:50:25.780967 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-16:50:44.221602 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:51:10.084644 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:51:10.084644 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:52:10.087954 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:52:10.087954 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:52:40.456301 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-16:53:10.089478 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:53:10.089478 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-16:54:10.093026 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:54:10.093026 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-16:55:10.094013 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:55:10.094013 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:56:10.096840 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:56:10.096840 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:56:16.504989 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:57:10.100741 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:57:10.100741 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-16:57:29.457786 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:57:59.828713 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-16:59:23.462282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:00:10.106355 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:00:10.106355 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:00:10.114718 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.134 +08/21-17:00:10.114718 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.134 +08/21-17:00:26.684476 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:01:32.067163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:02:10.113353 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:02:10.113353 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:02:33.259572 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:03:10.116623 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:03:10.116623 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:03:10.124866 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.134 +08/21-17:03:10.124866 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.134 +08/21-17:03:14.482695 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-17:04:10.119407 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:04:10.119407 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:05:10.127312 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:05:10.127312 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:05:10.129405 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:05:10.129405 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:06:06.097991 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-17:06:14.182485 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-17:06:49.869601 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:07:10.135869 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:07:10.135869 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:07:23.160735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:08:10.138529 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:08:10.138529 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:08:38.863854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-17:09:10.144772 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:09:10.144772 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:09:11.295001 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:10:10.144260 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:10:10.144260 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:10:10.147115 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:10:10.147115 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:10:42.245417 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 115.227.49.23 +08/21-17:11:10.149882 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:11:10.149882 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:11:16.177295 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:16.485376 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:17.100789 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:17.100789 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:18.251115 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:18.251115 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:20.586267 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:20.586317 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:25.249430 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:25.250548 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:34.620562 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:34.620562 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.7 +08/21-17:11:36.640862 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:12:33.462952 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:14:14.526908 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:14:52.648493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:15:02.728813 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:15:09.889036 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:15:33.650038 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:15:42.590393 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:02.231207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:02.831281 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:10.166693 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:16:10.166693 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:16:10.167374 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:16:10.167374 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:16:16.101668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:23.311989 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:27.872152 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:32.152360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:49.533035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.207.226 +08/21-17:16:58.425927 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-17:17:10.170428 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:17:10.170428 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:17:49.665518 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:18:10.170943 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.131 +08/21-17:18:10.170943 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.131 +08/21-17:20:10.179588 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:20:10.179588 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:21:10.181715 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:21:10.181715 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:21:34.274286 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:22:10.184024 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:22:10.184024 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:22:35.246602 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:23:06.961877 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-17:23:10.188178 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.186 +08/21-17:23:10.188178 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.186 +08/21-17:23:10.189817 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:23:10.189817 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:23:10.190398 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:23:10.190398 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-17:23:13.378090 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:24:10.187957 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.131 +08/21-17:24:10.187957 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.131 +08/21-17:24:10.189880 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:24:10.189880 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:24:29.354583 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-17:25:10.187502 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:25:10.187502 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:26:10.193788 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:26:10.193788 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:27:10.192520 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:27:10.192520 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:28:10.194776 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:28:10.194776 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:29:10.199814 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:29:10.199814 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:30:07.055102 [**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] [Classification: Information Leak] [Priority: 2] [AppID: ICMP] {ICMP} 172.233.161.194 -> 185.93.41.55 +08/21-17:30:10.200694 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:30:10.200694 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:30:24.904906 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:30:51.856049 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:31:10.205309 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:31:10.205309 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:31:17.391848 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/21-17:31:20.397934 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/21-17:32:10.210049 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:32:10.210049 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-17:33:10.210875 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:33:10.210875 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:33:18.921820 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:33:55.313219 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:34:10.214430 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:34:10.214430 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-17:34:27.244544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:35:10.226185 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:35:10.226185 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:35:39.596981 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:35:39.598830 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:35:39.599714 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:35:39.600712 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:35:39.654676 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:35:39.674879 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:36:39.079879 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/21-17:38:01.642854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:38:10.235897 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:38:10.235897 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:39:10.233368 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:39:10.233368 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:39:43.506827 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:41:10.249779 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:41:10.249779 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:41:41.211457 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:41:58.582437 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:42:02.592241 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:42:10.242580 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:42:10.242580 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-17:42:10.251268 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:42:10.251268 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:22.897335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:26.917340 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:26.917340 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:32.347505 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:36.067817 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:42:36.067818 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-17:43:10.256694 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:43:10.256694 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.14 +08/21-17:43:28.235655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-17:44:05.637165 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:45:10.250618 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:45:10.250618 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:45:25.146311 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-17:46:06.587126 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-17:47:10.257167 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:47:10.257167 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:47:45.175639 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:48:10.261370 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:48:10.261370 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-17:49:33.660130 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:50:39.339037 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.116.78.151 +08/21-17:50:39.598760 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.116.78.151 +08/21-17:50:39.601680 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 103.116.78.151 +08/21-17:51:28.825172 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-17:54:55.092571 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:56:09.925638 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-17:57:43.439308 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-17:59:12.233873 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-17:59:24.208414 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-17:59:25.311464 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-17:59:33.543503 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:00:13.505113 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:00:14.277274 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.95.146.203 +08/21-18:00:14.280889 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.95.146.203 +08/21-18:00:14.287097 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.95.146.203 +08/21-18:00:14.289039 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.95.146.203 +08/21-18:01:08.255599 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:08.616635 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:09.591305 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:09.591305 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:12.636583 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:12.636583 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:17.709116 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:17.711355 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:01:22.638527 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.94.6 +08/21-18:03:22.092424 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:03:29.702726 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:03:45.803414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:05:03.236554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:07:10.324656 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-18:07:10.324656 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-18:07:34.002395 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:09:10.331296 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:09:10.331296 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:09:21.926555 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:10:27.149170 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:11:10.338227 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:11:10.338227 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:11:22.101294 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:12:10.339971 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:12:10.339971 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:12:10.342273 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:12:10.342273 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:13:10.344366 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:13:10.344366 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:13:53.784082 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.240.64 +08/21-18:13:53.794204 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.240.64 +08/21-18:13:53.814935 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.240.64 +08/21-18:14:10.347582 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:14:10.347582 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.15 +08/21-18:15:30.001159 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:16:10.349321 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:16:10.349321 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:16:55.434328 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:17:10.349355 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:17:10.349355 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:18:10.360034 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:18:10.360034 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:18:59.489406 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:20:10.379214 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:20:10.379214 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:21:42.335612 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:23:10.369211 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:23:10.369211 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:25:44.905542 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:26:29.208113 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-18:27:10.376035 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-18:27:10.376035 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-18:28:21.061282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:28:30.231708 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:29:10.391239 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-18:29:10.391239 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-18:29:11.003279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:30:28.936295 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:31:13.638028 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:32:10.405726 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-18:32:10.405726 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.146 +08/21-18:32:23.600702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:33:10.392854 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-18:33:10.392854 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.98.87.145 +08/21-18:36:10.403658 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:36:10.403658 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:36:39.160024 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 202.112.237.201 +08/21-18:37:10.404865 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:37:10.404865 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:37:32.092983 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:38:10.409539 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:38:10.409539 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:38:48.515792 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:39:10.411031 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:39:10.411031 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:39:32.037674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:40:10.413556 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:40:10.413556 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:41:40.852725 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:43:24.716718 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.141.9.110 +08/21-18:44:05.328273 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:44:10.420942 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:44:10.420942 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.154 +08/21-18:44:11.538485 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:45:46.222394 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:47:10.434688 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:47:10.434688 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:48:10.436844 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:48:10.436844 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:50:00.512200 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:50:26.853209 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:50:30.903335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:53:10.450404 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:53:10.450404 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:54:46.913496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:54:47.803601 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:55:10.453762 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-18:55:10.453762 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.227.20 +08/21-18:55:34.625353 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-18:56:25.037275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:57:10.459626 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:57:10.459626 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:57:47.733416 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-18:57:59.140992 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-18:58:10.462199 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:58:10.462199 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:58:41.342695 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-18:59:10.463409 [**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-18:59:10.463409 [**] [1:384:8] "PROTOCOL-ICMP PING" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 192.142.226.153 +08/21-19:00:49.157616 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:02:36.311871 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:04:24.156114 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:05:03.367552 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:05:19.808713 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:05:29.108575 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:05:46.329423 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:05:47.209514 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:05:59.679858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:06:03.119993 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:06:12.010239 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:06:17.350410 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:06:42.091450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:06:59.892231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:07:07.922722 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.110.206 +08/21-19:09:31.868109 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:09:38.427016 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-19:10:26.100429 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:12:27.585050 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:13:57.298617 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:14:40.030282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:40.710312 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:41.060329 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:41.140300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:41.390316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:41.410220 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:41.600285 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:42.040435 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:42.100284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:42.150428 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:42.420368 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:42.880528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:43.110377 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:43.290370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:44.670467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:44.690416 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:44.720464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:44.970493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:45.760686 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:46.070530 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:46.890783 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:47.200560 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:47.210575 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:47.640592 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:48.950558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:51.090617 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:51.640688 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:51.770710 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:51.950696 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:52.290763 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:52.821076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:53.360841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:54.450759 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:56.180984 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:57.320896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:57.470994 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:57.780981 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:57.980978 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:58.250926 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:14:59.461046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:00.441244 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:00.601060 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:01.091043 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:01.561092 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:01.631072 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:01.671089 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:02.251248 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:02.601049 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:03.521198 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:03.641202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:04.021261 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:04.121181 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:04.891219 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:05.471345 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:07.951361 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:08.041367 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:08.461395 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:09.911398 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:10.101528 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:10.131482 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:10.241585 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:11.211554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:11.591672 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:13.051702 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:14.271586 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:15.361624 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:15.451625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:16.141649 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:16.651640 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:17.261745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:17.281618 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:17.781782 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:17.861749 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:18.021822 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:18.331768 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:18.431803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:18.711883 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:18.811778 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:19.571842 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:20.991847 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:21.711811 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:21.821907 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:21.891838 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:22.561977 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:22.852188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:22.901974 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:23.832004 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:24.161981 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:15:24.582050 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:24.902043 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:25.422070 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:27.252124 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:27.682172 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:27.802182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:28.482203 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:28.492240 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:29.442254 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:30.882197 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:31.462283 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:32.422249 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:33.342262 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:33.652454 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:34.162446 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:35.522517 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:36.112496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:36.312508 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:36.392480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:36.852482 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:37.662544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:38.452620 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:38.692550 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:39.592508 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:40.072589 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:40.202684 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:40.642647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:41.252743 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:41.752741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:42.662715 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:42.662716 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:43.132756 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:43.272741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:43.482753 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:43.492777 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:44.402701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:44.792752 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:45.042748 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:45.632803 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:46.322770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:46.462810 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:47.502886 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:47.612901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:48.303909 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:49.363008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:50.022983 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:50.113027 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:50.403019 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:50.693022 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:51.233087 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:52.473188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:52.933184 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:54.243210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:54.303184 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:54.343263 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:54.453403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:57.263180 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:57.453181 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:57.953310 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:58.993526 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:59.033487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:15:59.133361 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:00.823477 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:01.053383 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:02.373461 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:02.743462 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:02.893422 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:03.033636 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:03.563569 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:04.243460 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:05.853681 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:05.873642 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:05.983798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:06.093816 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:06.973629 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:07.433622 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:07.983616 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:08.173862 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:08.983700 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:09.773739 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:11.033826 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:11.493867 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:13.343908 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:14.583935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:14.863991 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:16.653938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:17.204061 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:17.704065 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:18.604124 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:18.614231 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:18.854250 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:19.144187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:19.564188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:20.044198 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:20.174182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:20.624228 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:21.444202 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:21.464216 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:21.644217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:22.114258 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:22.664260 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:23.784284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:23.964286 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:24.384362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:24.534400 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:24.904417 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:25.974390 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:26.334490 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:27.204468 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:27.544550 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:27.644442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:28.754480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:28.784457 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:29.724509 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.164557 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.304585 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.374806 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.394576 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.624737 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:30.834588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:31.254735 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:32.534655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:32.924632 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:33.754851 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:34.204720 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:34.224844 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:36.224761 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:38.174828 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:38.384845 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:38.584964 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:39.844973 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:40.134965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:40.775149 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:40.985054 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:41.084889 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:41.114943 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:41.375003 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:42.305325 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:43.075032 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:16:43.105025 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:43.975132 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:45.125104 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:45.475066 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:45.495109 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:45.605308 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:46.095230 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:46.555187 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:47.165225 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:48.825347 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:49.045182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:49.155311 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:49.185257 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:49.835358 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:50.855389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:52.045440 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:52.255378 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:16:52.315427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.148.15 +08/21-19:18:13.478723 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-19:21:38.496619 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:23:51.320794 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-19:24:02.492414 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:24:28.489588 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 182.100.46.196 +08/21-19:24:31.478770 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 182.100.46.196 +08/21-19:24:32.490870 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 182.100.46.196 +08/21-19:24:35.481891 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 182.100.46.196 +08/21-19:26:19.395051 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 117.33.161.69 +08/21-19:26:20.928319 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:26:23.397095 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 117.33.161.69 +08/21-19:26:23.406393 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 117.33.161.69 +08/21-19:26:27.408458 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 117.33.161.69 +08/21-19:31:44.000380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:32:59.353271 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:33:42.594959 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:33:47.205136 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:34:09.356185 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:35:49.708463 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-19:42:06.324693 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:45:44.503331 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:45:45.433592 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:52:51.980085 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:53:08.680740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:54:14.461109 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 168.235.81.158 +08/21-19:54:19.465366 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 168.235.81.158 +08/21-19:54:48.964723 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-19:55:19.656078 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-19:56:10.237987 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-19:58:45.354195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-20:01:36.260740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:01:44.420951 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:02:25.822083 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.32.15 +08/21-20:02:25.824030 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.32.15 +08/21-20:02:25.824955 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.232.32.15 +08/21-20:06:09.978120 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.120.149.150 +08/21-20:06:09.978120 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.120.149.150 +08/21-20:06:09.978120 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.120.149.150 +08/21-20:06:09.978120 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.120.149.150 +08/21-20:10:01.110429 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:10:51.011841 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:11:04.018448 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:15:18.702921 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:15:32.043427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-20:17:54.119055 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-20:18:32.900551 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-20:20:32.374232 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.1.161 +08/21-20:21:05.385844 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 50.116.23.150 +08/21-20:21:05.636719 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 50.116.23.150 +08/21-20:21:06.646928 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 50.116.23.150 +08/21-20:21:06.900874 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 50.116.23.150 +08/21-20:21:07.726832 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:27:28.658884 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-20:30:21.098323 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:30:39.468879 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-20:31:46.443112 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:31:47.951063 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:32:37.303502 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.96.108 +08/21-20:32:37.303502 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.96.108 +08/21-20:32:37.312353 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.96.108 +08/21-20:33:13.555296 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 167.88.125.122 +08/21-20:33:18.565502 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 167.88.125.122 +08/21-20:34:43.440796 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-20:34:53.998919 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:35:52.461291 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-20:39:08.888976 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-20:39:40.658372 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 75.80.136.51 +08/21-20:39:45.688526 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 75.80.136.51 +08/21-20:39:51.328774 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 75.80.136.51 +08/21-20:41:40.744887 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/21-20:44:19.721070 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-20:44:50.192250 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:46:22.543443 [**] [1:59948:1] "SERVER-WEBAPP Atlassian Confluence OGNL expression injection attempt" [**] [Classification: Attempted User Privilege Gain] [Priority: 1] [AppID: Chrome] {TCP} 107.175.242.95:43852 -> 185.93.41.55:80 +08/21-20:48:42.186717 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-20:52:26.276603 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:52:37.360273 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-20:53:01.332008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-20:55:45.187896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-20:58:01.529558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:01.529558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:01.529558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:01.529558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:01.529559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:01.529559 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:05.049727 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:05.049728 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/21-20:58:11.573691 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-20:58:19.274085 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:00:42.470102 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.66 +08/21-21:00:44.444211 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.59 +08/21-21:00:44.602386 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.60 +08/21-21:02:55.014732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:03:06.254651 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.187.227.119 +08/21-21:03:11.255472 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.187.227.119 +08/21-21:03:26.865245 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-21:05:04.806905 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-21:05:14.050204 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:10:03.091672 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:10:46.173561 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.187.227.121 +08/21-21:10:51.209814 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.187.227.121 +08/21-21:13:28.459848 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:13:33.395145 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-21:15:10.372727 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 50.116.23.150 +08/21-21:16:02.975826 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:17:11.940709 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-21:18:18.287912 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-21:18:56.292666 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:19:01.674254 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-21:20:42.144048 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-21:21:02.097643 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:21:04.835036 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-21:21:13.807943 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:22:50.541846 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:23:57.734488 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.130.26 +08/21-21:23:58.733724 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.130.26 +08/21-21:24:01.739903 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.130.26 +08/21-21:24:02.739714 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.171.130.26 +08/21-21:25:39.558319 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:28:33.595320 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.70.75.102 +08/21-21:28:33.599694 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.70.75.102 +08/21-21:28:33.603128 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.70.75.102 +08/21-21:28:33.603462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.70.75.102 +08/21-21:28:40.615436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:29:06.766377 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:30:49.820417 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:34:45.920008 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:34:51.709964 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:34:56.960227 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:35:03.510884 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:37:29.976415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:37:50.617021 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:39:48.811625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:39:56.461834 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:42:06.796923 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:44:20.242225 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:44:21.202314 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:48:18.551524 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:49:03.663463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:49:32.994458 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:52:11.600846 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:52:54.752360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-21:54:12.085524 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-21:54:20.685760 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-21:56:45.596609 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 125.39.141.133 +08/21-21:56:45.600725 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 125.39.141.133 +08/21-21:56:45.605584 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 125.39.141.133 +08/21-21:56:45.616540 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 125.39.141.133 +08/21-21:57:10.382526 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:00:41.590798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-22:01:22.602499 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:02:27.684962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:02:39.685391 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:04:53.305657 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-22:05:49.823386 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-22:06:03.293533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:07:10.506147 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:08:26.979021 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:08:50.810072 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:09:08.540688 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:10:52.194818 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:11:03.635320 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:11:48.356962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:14:16.812615 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.47.254.178 +08/21-22:14:21.827711 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.47.254.178 +08/21-22:14:52.476267 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-22:17:45.903901 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.147 +08/21-22:17:45.907717 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.147 +08/21-22:17:45.914715 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.147 +08/21-22:17:45.915519 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.57.9.147 +08/21-22:18:26.312655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:18:48.113441 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:19:21.124694 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:24:15.506442 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:24:48.377656 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:26:35.941669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:27:00.921954 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-22:29:14.078042 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:29:58.369538 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:31:32.493506 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:36:47.435937 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:37:33.987596 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:39:07.261320 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:42:27.399195 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 194.195.122.95 +08/21-22:43:27.331366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:43:30.522169 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.181.191.16 +08/21-22:43:35.540339 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.181.191.16 +08/21-22:45:56.407283 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:46:45.679405 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-22:47:05.719919 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:49:53.606550 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:51:29.541114 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.179.83 +08/21-22:51:29.541114 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.179.83 +08/21-22:51:33.543420 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.179.83 +08/21-22:51:33.543420 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 157.185.179.83 +08/21-22:52:44.183401 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-22:52:44.983276 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:53:26.555107 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:53:44.615672 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-22:54:56.824589 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-22:55:18.947410 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/21-22:56:09.247926 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.91.107.75 +08/21-22:56:14.250121 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.91.107.75 +08/21-22:56:39.722484 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:56:40.662663 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:56:46.653365 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:11.724029 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:12.663882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:25.174404 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:40.994924 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:44.114989 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:54.145487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:57:54.305422 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:58:19.756633 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:58:25.546703 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.168.40.211 +08/21-22:58:26.786878 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-22:59:45.009817 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:00:54.692448 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:01:08.140797 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 170.39.227.143 +08/21-23:01:08.140797 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 170.39.227.143 +08/21-23:01:08.142727 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 170.39.227.143 +08/21-23:01:08.142727 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 170.39.227.143 +08/21-23:01:37.757130 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 198.148.92.176 +08/21-23:01:40.114484 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:01:42.759041 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 198.148.92.176 +08/21-23:01:44.494480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:03:38.618963 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:04:20.906273 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 184.75.215.61 +08/21-23:04:25.908407 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 184.75.215.61 +08/21-23:04:43.116423 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:05:39.323807 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-23:06:07.824731 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:06:40.749041 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.111.254.249 +08/21-23:06:45.750316 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.111.254.249 +08/21-23:08:57.860834 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.152.33.91 +08/21-23:09:02.862123 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.152.33.91 +08/21-23:09:54.737591 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 43.157.136.212 +08/21-23:09:55.738592 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 43.157.136.212 +08/21-23:09:57.555670 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 43.157.136.212 +08/21-23:09:58.556387 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 43.157.136.212 +08/21-23:12:22.349139 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.169.251 +08/21-23:12:27.350195 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.169.251 +08/21-23:15:21.410980 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 176.124.32.11 +08/21-23:16:29.719190 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.118.42.254 +08/21-23:16:56.450380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:19:53.257173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:23:41.716075 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:24:37.068464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:24:56.628981 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:25:40.940985 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:25:52.211207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:28:00.047306 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 162.220.51.35 +08/21-23:28:05.049432 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 162.220.51.35 +08/21-23:29:38.060282 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:30:44.752596 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:30:57.273359 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:31:01.603501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:32:14.656295 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:35:49.264701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:36:13.415585 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:36:34.325751 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-23:37:19.868490 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:40:06.114806 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:41:00.426979 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:42:30.270493 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.129.61 +08/21-23:47:14.481545 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:49:17.546383 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:50:14.188792 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:50:34.849401 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/21-23:51:28.871679 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/21-23:51:40.321721 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 104.166.182.132 +08/21-23:53:12.005648 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:53:28.486313 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:54:25.878689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:54:50.949420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/21-23:55:16.060450 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/21-23:55:39.741613 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:58:39.028359 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/21-23:59:36.415262 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.236.16.163 +08/21-23:59:36.415435 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.236.16.163 +08/21-23:59:36.418119 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 124.236.16.163 +08/22-00:01:34.445181 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:04:01.641199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:04:38.500332 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:04:43.504538 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:05:38.194841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:06:00.629105 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:08:10.450835 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:08:19.917113 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.1.162 +08/22-00:09:45.174533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:10:50.907188 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:11:00.407508 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:13:44.704130 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:14:20.473107 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.149.234 +08/22-00:14:25.473077 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.149.234 +08/22-00:15:05.267242 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:16:01.589309 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:17:57.341686 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.45.52.133 +08/22-00:18:26.503124 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 113.200.63.216 +08/22-00:19:52.804384 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:20:04.144978 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:21:38.702659 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:21:44.202873 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:24:07.078396 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:24:43.419870 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:26:15.483351 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:26:23.493763 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:26:42.984484 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:26:50.904873 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:27:19.505964 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:27:21.185935 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:27:33.226444 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:27:34.536613 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:28:41.149184 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:29:10.340392 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:29:26.571016 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:29:28.660960 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:29:36.571325 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.206.142.100 +08/22-00:31:38.243535 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-00:35:21.690697 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/22-00:36:32.216348 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.115.216.137 +08/22-00:36:37.217396 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.115.216.137 +08/22-00:37:11.369241 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:37:53.550730 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-00:42:39.242030 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:42:55.102676 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:43:00.303116 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-00:45:25.408488 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:46:34.663704 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:34.667095 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:38.666395 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:38.670397 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:46.666854 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:50.667827 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:51.677963 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:46:55.678485 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:47:03.700726 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:47:07.702674 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:47:12.703216 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:47:16.703368 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.162.238.1 +08/22-00:55:35.922510 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:57:23.847056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-00:58:20.705683 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.131.213 +08/22-00:59:26.181683 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-01:01:00.744201 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-01:02:07.485460 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.31.22.136 +08/22-01:02:12.488643 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.31.22.136 +08/22-01:02:18.738520 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:06:11.067410 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:10:15.849916 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 167.160.93.230 +08/22-01:10:21.031129 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 167.160.93.230 +08/22-01:10:40.368193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:12:29.402337 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:12:46.473056 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:13:08.783819 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:13:30.054673 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:13:41.385322 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:15:30.579535 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:16:35.112755 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.135.148.140 +08/22-01:16:40.114883 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.135.148.140 +08/22-01:17:38.148008 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.247.207 +08/22-01:17:44.609361 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.247.207 +08/22-01:19:09.228087 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:23:55.720900 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.57.205 +08/22-01:25:08.682337 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:26:50.693832 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-01:28:08.569063 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:28:46.430666 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:29:14.911823 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:29:58.838119 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.224.14.198 +08/22-01:30:02.841135 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 183.224.14.198 +08/22-01:30:03.143729 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:33:57.122841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:35:30.586580 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:36:05.857782 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:37:55.862104 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:38:17.752996 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:40:32.938256 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:41:27.340433 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:41:29.680500 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:42:42.820719 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.133.64.19 +08/22-01:42:43.123917 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.133.64.19 +08/22-01:42:43.367838 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.133.64.19 +08/22-01:42:43.369689 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.133.64.19 +08/22-01:42:55.823911 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:43:23.434963 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:44:41.009660 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.14.131.156 +08/22-01:44:46.012848 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.14.131.156 +08/22-01:44:53.378420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:48:42.097316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:48:48.773077 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.245.214.186 +08/22-01:48:53.778060 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.245.214.186 +08/22-01:49:12.088910 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:50:51.352459 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:51:11.518088 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.145.196 +08/22-01:51:15.083590 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-01:51:42.575267 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.69 +08/22-01:51:43.125805 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.75 +08/22-01:51:43.471728 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.78 +08/22-01:53:50.069494 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-01:53:55.719576 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-01:55:26.513181 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:02:25.702583 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.31.22.170 +08/22-02:02:30.704670 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.31.22.170 +08/22-02:02:37.710094 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:02:43.320438 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:02:43.920244 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/22-02:05:38.567167 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:05:46.117404 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:07:12.061006 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:08:39.972898 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.223.228 +08/22-02:08:45.383238 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.223.228 +08/22-02:10:00.967588 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:11:36.671102 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:11:48.091471 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:12:55.464248 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:16:57.783890 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:18:55.377513 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.113.198.159 +08/22-02:18:55.389480 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.113.198.159 +08/22-02:18:55.404537 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.113.198.159 +08/22-02:18:55.651514 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 118.113.198.159 +08/22-02:19:09.338777 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:21:02.183168 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:22:59.717787 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:23:07.418129 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:23:38.339308 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:24:03.756968 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/22-02:24:40.582053 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:25:06.673005 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:27:38.778759 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:28:11.920389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:31:40.008379 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:32:32.700741 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-02:32:32.700741 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-02:33:27.202362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:36:28.461115 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-02:36:41.670337 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:36:49.040533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:37:10.411264 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:40:43.117899 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 78.47.43.201 +08/22-02:43:40.626527 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:45:42.971303 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:46:13.239238 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 205.209.152.106 +08/22-02:46:18.241480 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 205.209.152.106 +08/22-02:48:53.328774 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:50:09.551684 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:50:39.863058 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:50:53.186269 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-02:50:56.313831 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:51:38.075439 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:52:14.066630 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:53:18.309190 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:53:36.889817 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:53:39.480065 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-02:54:06.762673 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.223.186 +08/22-02:54:12.068045 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.63.223.186 +08/22-02:54:31.321978 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-02:54:48.092564 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:54:59.548780 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.136 +08/22-02:55:04.548851 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.136 +08/22-02:57:21.078698 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-02:59:55.684579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 120.232.252.226 +08/22-02:59:55.684579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 120.232.252.226 +08/22-03:00:04.014810 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 144.208.127.177 +08/22-03:00:09.023120 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 144.208.127.177 +08/22-03:00:27.105932 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:27.336179 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:29.005962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:29.246097 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:30.106199 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:30.436076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:30.746247 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:30.996215 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:31.116246 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:31.486384 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:31.506035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:33.896252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:34.166217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:35.436380 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:35.946483 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.096334 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.106529 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.456304 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.536488 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.806354 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.816317 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.846436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:36.986381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:37.296391 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:37.696634 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:38.677101 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:39.606354 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:39.676495 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:40.196463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:00:40.237346 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:40.416487 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:40.906694 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:40.966644 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:41.596548 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:41.656609 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:43.176845 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:43.596625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:44.206692 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:47.266764 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:47.736800 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:48.166854 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:48.546858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:48.967163 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:49.726845 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:49.756877 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:50.107174 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:50.336835 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:51.886965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:51.947012 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:52.676944 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:52.876958 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:54.407090 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:54.476989 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:54.967205 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:55.847192 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:55.887223 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:56.997221 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:57.677117 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:57.747253 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:57.907255 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:57.937190 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:58.041046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:58.677229 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:00:59.977420 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:00.677215 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:01.067261 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:01.957348 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:02.077472 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:02.637470 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:02.827373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:03.047333 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:03.247494 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:03.567355 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:04.727388 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:05.807675 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:05.927695 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:06.447467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:06.627509 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:07.017510 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:07.117577 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:07.897560 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:08.477547 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:09.677568 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:10.477766 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:10.657697 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:11.337760 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:11.667745 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:11.677668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:11.697733 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:12.067786 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:12.587746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:12.607965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:12.827786 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:12.847897 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.267880 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.337778 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.448092 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.707790 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.877991 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:14.897798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:16.227811 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:16.577916 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:16.677973 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:16.998060 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:17.488001 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:17.747836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:19.287943 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:19.758064 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:20.528096 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:20.777938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:21.458278 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:22.538182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:23.048183 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:23.118247 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:23.488194 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:24.158247 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:25.178182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:25.398378 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:25.538206 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:26.328364 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:26.928267 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:26.989252 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:27.278259 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:27.408520 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:27.958644 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:28.538284 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:29.548611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:30.478624 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:30.638469 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:31.848567 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:31.978700 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:32.018601 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:33.218675 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:33.348725 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:34.268582 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:35.228613 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:35.308582 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:36.228611 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:38.068750 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:38.148815 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:38.288802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:39.268704 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:39.348708 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:41.318856 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:41.818973 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:41.919023 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:43.108962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:43.298997 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:43.339009 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:44.288963 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:45.399021 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:45.669111 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:45.829207 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:46.089115 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:47.399210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:48.419181 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:48.659232 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:49.009344 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:50.739301 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:50.789291 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:51.239262 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:51.429595 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:51.489314 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:51.749427 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:52.179516 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:52.279225 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:52.429489 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:52.509413 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:52.959331 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:53.139321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:53.149362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:55.719415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:56.859561 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:57.239430 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:58.189467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:59.809607 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:01:59.989566 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:00.499660 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:00.579682 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:01.529678 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:01.639673 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:02.359833 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:02.759928 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:02.879688 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:03.439741 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:04.260000 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:04.489769 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:04.619779 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:04.709789 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:05.179859 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:05.889944 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:06.409764 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:07.090020 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:07.549968 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:08.730052 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:10.700263 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:12.450192 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:12.850113 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:13.120246 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:13.140165 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:13.230381 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:13.240195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:14.010174 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:14.220193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:14.490317 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:15.880391 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:16.050233 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:16.530533 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:16.790463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:17.400346 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:18.800406 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:19.740339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:20.330462 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:20.480364 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:20.880426 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:21.100429 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:22.080436 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:22.750802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:23.050535 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:24.500542 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:24.640537 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:24.680601 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:25.161256 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:25.520624 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:26.430640 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:26.900669 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:27.000645 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:27.220668 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:27.520706 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.060728 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.390762 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.440684 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.520755 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.590655 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:28.860753 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:30.520772 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:31.110836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:31.380957 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:31.660899 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:31.940822 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:32.520883 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:32.651081 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:33.331142 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:33.470837 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:34.210962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:36.041812 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:36.511027 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:37.531243 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:37.901247 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:02:38.011035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.183 +08/22-03:03:05.864049 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.26.37.242 +08/22-03:03:06.885245 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.26.37.242 +08/22-03:03:09.867205 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.26.37.242 +08/22-03:03:10.891057 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.26.37.242 +08/22-03:04:08.578953 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.143.128.127 +08/22-03:04:13.580143 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.143.128.127 +08/22-03:06:47.950896 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:07:10.311816 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:07:43.493076 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:08:38.015303 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:11:02.390948 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:13:23.499897 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.143.128.123 +08/22-03:13:28.505935 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 37.143.128.123 +08/22-03:15:41.521956 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:17:57.658400 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.255.123.224 +08/22-03:17:57.660898 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.255.123.224 +08/22-03:17:57.668579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.255.123.224 +08/22-03:17:57.673264 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.255.123.224 +08/22-03:18:52.268068 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-03:21:25.585370 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:23:09.436855 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.186.85 +08/22-03:23:16.117024 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.186.85 +08/22-03:23:23.017323 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.38.186.85 +08/22-03:23:36.000506 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-03:25:04.533962 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:25:25.725035 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:26:48.948033 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:27:37.300224 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:28:15.401445 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:30:18.644039 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:30:18.662045 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:30:18.679989 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:31:11.127638 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:31:11.128791 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:31:11.133664 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 145.239.89.233 +08/22-03:33:07.884716 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.123.44.172 +08/22-03:33:08.122884 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:33:12.888832 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 190.123.44.172 +08/22-03:33:18.934961 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:35:35.220043 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.47.253.31 +08/22-03:35:40.220262 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.47.253.31 +08/22-03:39:05.256856 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:39:35.678176 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:39:45.618479 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:40:15.279689 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:45:34.725657 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.246.23.195 +08/22-03:46:54.195289 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:48:33.969305 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:49:12.250739 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:51:00.535121 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:54:12.292747 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-03:55:26.715550 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-03:56:43.938565 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-03:57:48.020992 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:57:59.011468 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-03:59:15.084440 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 165.22.156.107 +08/22-03:59:20.086481 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 165.22.156.107 +08/22-04:03:01.343234 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:04:19.726463 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:04:44.227578 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:06:34.002039 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.246 +08/22-04:06:39.019026 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 74.3.163.246 +08/22-04:06:49.522366 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:07:56.386514 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.56.118.127 +08/22-04:08:01.839279 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.56.118.127 +08/22-04:08:58.457387 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:12:21.905361 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/22-04:17:58.798800 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-04:19:41.502672 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:22:38.729623 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:23:49.517341 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 144.208.127.136 +08/22-04:23:55.456715 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 144.208.127.136 +08/22-04:27:45.801534 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:30:39.958652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-04:30:59.829195 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-04:31:19.201827 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-04:31:30.800371 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:31:35.380750 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:36:07.281295 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:41:03.622715 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.51.74.12 +08/22-04:41:04.862859 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:41:07.625714 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.51.74.12 +08/22-04:41:08.651679 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.51.74.12 +08/22-04:41:12.658918 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 111.51.74.12 +08/22-04:41:54.094858 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-04:43:23.458302 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:43:59.423364 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.144.104.141 +08/22-04:44:04.552312 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.144.104.141 +08/22-04:46:57.146617 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:47:02.646849 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:51:09.056556 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:51:39.927818 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:52:34.249921 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:56:22.458841 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:56:38.089494 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-04:57:53.972496 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:58:29.243977 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:59:42.886693 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-04:59:43.906828 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:00:01.488304 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:00:42.898819 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 163.181.131.213 +08/22-05:01:57.080699 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.68.51.158 +08/22-05:02:02.081636 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 138.68.51.158 +08/22-05:04:51.243010 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 31.40.212.224 +08/22-05:04:56.245438 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 31.40.212.224 +08/22-05:05:05.429622 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:08:37.839501 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.32.191.35 +08/22-05:08:37.841320 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.32.191.35 +08/22-05:08:37.845294 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.32.191.35 +08/22-05:08:37.845376 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 152.32.191.35 +08/22-05:09:32.669925 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-05:09:50.850554 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:10:24.411890 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:11:34.084705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:14:17.890302 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-05:14:32.981606 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:16:03.875398 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:19:01.702298 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.155.120 +08/22-05:21:55.379133 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:22:34.270798 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:22:54.101345 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.3.59.207 +08/22-05:23:42.553280 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:24:40.955467 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:28:01.068824 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-05:28:06.708308 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.182.225.160 +08/22-05:28:10.143776 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:28:11.709392 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 209.182.225.160 +08/22-05:28:41.175057 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-05:29:03.868033 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.71.158.71 +08/22-05:29:08.875257 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 45.71.158.71 +08/22-05:29:48.718248 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:31:00.870279 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:34:11.801226 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 91.148.134.246 +08/22-05:34:16.813380 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 91.148.134.246 +08/22-05:35:50.731758 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-05:36:33.653421 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 203.29.240.224 +08/22-05:36:38.763569 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 203.29.240.224 +08/22-05:36:39.153809 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:36:42.503839 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:38:50.228955 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.149.109 +08/22-05:38:50.228955 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.149.109 +08/22-05:41:34.395440 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:34.495373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:34.585300 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:35.200298 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.71.26.103 +08/22-05:41:35.247309 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.71.26.103 +08/22-05:41:35.486270 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.71.26.103 +08/22-05:41:35.550323 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.71.26.103 +08/22-05:41:35.985288 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:36.285423 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:42.215617 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:44.835882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:49.405875 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:54.456173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:55.038501 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:55.511246 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 36.101.206.21 +08/22-05:41:55.518199 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 36.101.206.21 +08/22-05:41:57.266382 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:57.516240 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:59.156468 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:41:59.513492 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 36.101.206.21 +08/22-05:41:59.520384 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 36.101.206.21 +08/22-05:42:00.996321 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:01.626550 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:05.666448 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:05.766746 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:07.946820 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:11.886728 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:12.956765 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:15.896965 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:17.566983 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:23.617219 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:23.877443 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:25.547375 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:28.227399 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:28.727462 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:28.847605 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:29.847629 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:31.187685 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:32.227507 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:32.727474 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:33.397828 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:33.397828 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:36.117743 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:37.427763 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:37.677710 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:39.187969 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:39.567774 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:39.687869 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:39.707805 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:39.987850 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:40.657802 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:41.667918 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:43.018022 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:44.178063 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:45.328012 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:45.388082 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:46.618225 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:48.038358 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:48.198288 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:48.598189 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:48.608353 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:48.618182 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.028338 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.038784 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.078293 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.678356 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.758435 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:49.808400 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:50.118278 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:50.518264 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:51.068457 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:51.348459 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:51.468332 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:51.679139 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:51.938336 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:52.278360 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:52.388621 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:52.868403 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:53.138437 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:53.178498 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:53.918480 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:54.088415 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:54.328517 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:54.788625 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:56.988732 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:58.638608 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:58.728684 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:59.078701 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:42:59.148868 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:01.328881 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:01.328882 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:02.148816 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:03.149004 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:03.808866 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:03.999375 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:05.129218 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:05.158872 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:05.178915 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:05.378908 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:05.998889 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:06.588954 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:06.988974 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:07.178897 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:07.358895 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:07.558836 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:07.579084 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:07.848938 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:10.129297 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:10.269118 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:11.389346 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:12.539114 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:12.789117 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:13.379373 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:13.569215 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:13.889218 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:14.269220 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:14.549255 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:15.489236 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:16.209455 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:16.509362 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:16.879246 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:17.129217 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:17.289497 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:17.309228 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:18.069536 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:18.209333 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:18.549335 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:18.729477 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:18.789389 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:20.139623 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:20.619527 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:21.029711 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:21.699674 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:22.119491 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:23.779558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:25.419589 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:26.119860 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:26.349647 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:26.799823 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:27.589652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:27.669678 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:28.099740 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:28.419705 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-05:43:29.189754 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:29.669943 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:29.699976 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:29.819784 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:30.649901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:32.650084 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:32.850053 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:33.349892 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:33.459895 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:33.520007 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:33.929980 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:34.560173 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:35.090046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:35.719998 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:36.340171 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:36.350066 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:36.860193 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:38.000205 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:38.260316 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:38.490065 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:38.840221 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:39.070264 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:39.280143 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:39.470307 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:40.240294 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:40.280210 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:40.640314 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:40.930214 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:41.310120 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:41.360313 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:41.880271 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:43.043468 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:43.480306 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:43.840339 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:44.160438 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:44.360375 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:43:44.760482 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.169.6.55 +08/22-05:44:11.701464 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-05:45:06.603614 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:47:51.274882 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.76.52 +08/22-05:47:55.112470 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.76.52 +08/22-05:47:55.136944 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.76.52 +08/22-05:47:55.190211 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.186.76.52 +08/22-05:48:26.941445 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:49:38.634492 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:51:48.929614 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-05:55:44.172624 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-05:55:44.172624 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-05:55:44.172625 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-05:55:44.172625 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-05:55:46.316682 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-05:55:55.238979 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:56:28.990490 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:58:16.814638 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:58:47.215875 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-05:59:12.918942 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.19.188 +08/22-05:59:19.263997 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.19.188 +08/22-06:01:39.982527 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:03:30.888445 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.140.142.65 +08/22-06:03:35.890559 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 197.140.142.65 +08/22-06:06:47.324023 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 117.144.213.77 +08/22-06:14:23.682598 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:15:39.045635 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:16:32.909185 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 87.121.99.10 +08/22-06:16:37.910396 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 87.121.99.10 +08/22-06:17:23.009560 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:23:54.571894 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-06:25:47.181729 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 61.147.171.3 +08/22-06:25:47.430689 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 61.147.171.3 +08/22-06:31:52.383712 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:32:23.784909 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:34:16.330021 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-06:35:59.917860 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.155.10 +08/22-06:36:04.920103 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.155.10 +08/22-06:39:15.993866 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.92.27.91 +08/22-06:39:15.993866 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.92.27.91 +08/22-06:39:16.070981 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 23.92.27.91 +08/22-06:39:51.297467 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.192.124.207 +08/22-06:39:56.299669 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 185.192.124.207 +08/22-06:40:27.686116 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/22-06:41:05.858289 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.71 +08/22-06:41:05.860945 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.71 +08/22-06:41:05.865330 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.71 +08/22-06:41:05.867040 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.71 +08/22-06:41:20.655028 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:20.897847 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.223.102.33 +08/22-06:41:21.652973 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:22.673123 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:22.673123 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:25.748529 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:25.748529 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:26.596999 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 92.223.102.33 +08/22-06:41:30.645915 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:30.645915 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-06:41:50.479277 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 51.81.233.95 +08/22-06:41:55.479470 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 51.81.233.95 +08/22-06:42:25.456127 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 150.109.186.152 +08/22-06:42:25.552972 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 150.109.186.152 +08/22-06:42:25.604336 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 150.109.186.152 +08/22-06:42:26.787068 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 150.109.186.152 +08/22-06:44:28.203306 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:46:39.498430 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/22-06:47:09.789610 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:47:38.610876 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-06:47:43.200929 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/22-06:47:54.911544 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:48:11.012164 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:49:21.264817 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-06:49:59.986401 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-06:51:16.199304 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-06:51:53.592991 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.175.82.15 +08/22-06:51:58.596251 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 107.175.82.15 +08/22-06:52:51.993069 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-06:54:58.248346 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:02:20.060729 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:21.062563 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:22.059589 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:22.059589 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:25.059093 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:25.059093 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:30.052901 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:30.052901 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:02:35.061951 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.135 +08/22-07:08:52.340770 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-07:09:29.153802 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 146.185.214.51 +08/22-07:09:34.155720 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 146.185.214.51 +08/22-07:12:12.558886 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:12:16.568880 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.210.244 +08/22-07:12:24.389046 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:13:33.791773 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.105.149.4 +08/22-07:13:38.579694 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:14:50.904764 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/22-07:14:53.907748 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.28.0.17 +08/22-07:15:34.736558 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.13.193 +08/22-07:15:59.957824 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.241.130.226 +08/22-07:18:06.416278 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 147.78.1.203 +08/22-07:18:12.009729 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 147.78.1.203 +08/22-07:19:15.283067 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-07:19:30.365851 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:23:08.370462 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 147.78.1.36 +08/22-07:23:13.416667 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 147.78.1.36 +08/22-07:24:00.829083 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.204.24.58 +08/22-07:24:05.878200 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.204.24.58 +08/22-07:25:53.110851 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.172.30.71 +08/22-07:31:02.773015 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.13.193 +08/22-07:32:01.818591 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/22-07:32:14.564393 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:15.562948 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:16.569827 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:16.569828 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:19.542006 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:19.543050 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:24.516722 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:24.516722 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:29.548866 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.135 +08/22-07:32:39.949598 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-07:32:42.388230 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.217758 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.233205 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.234342 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.249684 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.308168 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.312108 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:51.314356 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:32:52.306015 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:32:52.310954 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:32:52.311858 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:32:52.320519 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:32:52.728321 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-07:33:18.068275 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:34:40.236404 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-07:40:04.510542 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:40:05.512499 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.134 +08/22-07:40:30.722733 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.722900 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.723361 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.724334 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.725950 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.785538 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.795277 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.796568 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.796568 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.955376 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:30.955377 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.043250 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.048235 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.048235 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.348747 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.348811 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.500496 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.500496 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:40:31.500496 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.64.41.3 +08/22-07:44:11.396864 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.201 +08/22-07:44:17.153176 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.201 +08/22-07:46:09.343583 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.207 +08/22-07:46:14.343766 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 38.54.59.207 +08/22-07:46:53.328860 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-07:52:45.214201 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:53:47.590221 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:53:47.590221 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.133 +08/22-07:54:55.779200 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-07:59:32.660232 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:00:22.154806 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-08:00:40.782668 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-08:02:06.175819 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-08:08:28.361105 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:09:49.694332 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:13:20.212390 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:14:26.673282 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-08:19:00.225787 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:21:27.881479 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:22:06.647809 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.213.192.144 +08/22-08:22:06.697742 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.213.192.144 +08/22-08:22:10.694895 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.213.192.144 +08/22-08:22:10.697056 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.213.192.144 +08/22-08:23:14.435730 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:25:37.155553 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:38.158922 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:39.155082 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:39.155083 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:42.154019 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:42.154800 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:43.611652 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:25:47.224196 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:47.224196 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:25:52.241638 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.20 +08/22-08:26:14.412901 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.144.232.182 +08/22-08:28:24.507926 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:29:03.890390 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.84.194.210 +08/22-08:29:08.893523 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.84.194.210 +08/22-08:31:24.686285 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.69 +08/22-08:31:25.645748 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.78 +08/22-08:31:27.150059 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 69.25.7.75 +08/22-08:36:10.056075 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:40:26.756855 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.49.13 +08/22-08:40:29.610383 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-08:40:29.917735 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-08:40:31.950359 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-08:41:26.698535 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:42:47.181675 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:43:15.778411 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/22-08:43:16.085045 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/22-08:43:17.443072 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:43:18.098054 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.8.8 +08/22-08:43:24.686428 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-08:43:44.154002 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:48:45.035939 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:50:02.308762 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:51:24.942020 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.238.162 +08/22-08:52:07.674013 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-08:52:07.674014 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.132 +08/22-08:53:12.376270 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-08:55:44.132204 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-08:55:48.736354 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-08:55:48.736354 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-08:55:58.426337 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.208.241.142 +08/22-08:56:03.430565 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.208.241.142 +08/22-08:56:29.398017 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.66.188.179 +08/22-08:56:36.387366 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.66.188.179 +08/22-08:56:54.553303 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.129.37.88 +08/22-08:57:00.658392 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 47.129.37.88 +08/22-08:59:10.846928 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.210.39.95 +08/22-08:59:15.863305 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.210.39.95 +08/22-08:59:22.710860 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-09:01:06.398506 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.228.56.113 +08/22-09:01:11.450736 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 15.228.56.113 +08/22-09:01:13.252579 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.66 +08/22-09:01:13.423302 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.60 +08/22-09:01:14.266224 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 64.94.45.59 +08/22-09:01:35.021001 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.177.229.94 +08/22-09:01:40.022032 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 54.177.229.94 +08/22-09:02:32.775887 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-09:02:33.084697 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-09:02:35.148610 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 8.8.4.4 +08/22-09:03:50.807619 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 35.182.126.227 +08/22-09:03:56.624912 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 35.182.126.227 +08/22-09:06:58.739478 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-09:06:58.739479 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.40.137 +08/22-09:06:59.472192 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/22-09:06:59.472193 [**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 185.93.41.55 -> 172.224.39.133 +08/22-09:08:44.268098 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.36.177.71 +08/22-09:08:49.272181 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 13.36.177.71 +08/22-09:09:09.537513 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.169.170.185 +08/22-09:09:15.533994 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 192.141.9.110 +08/22-09:09:15.813733 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.169.170.185 +08/22-09:09:24.493985 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 94.141.120.83 +08/22-09:09:32.814763 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.104.138.223 +08/22-09:10:21.032849 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 178.215.236.84 +08/22-09:10:50.139417 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.90.145.138 +08/22-09:10:55.146418 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 52.90.145.138 +08/22-09:11:25.339484 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.229.94 +08/22-09:11:25.354135 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.229.94 +08/22-09:11:25.360047 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 139.162.229.94 +08/22-09:12:14.109633 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.153.115 +08/22-09:12:19.577815 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 208.72.153.115 +08/22-09:13:17.243525 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-09:15:32.989098 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-09:16:01.590660 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.217.215.27 +08/22-09:16:06.658632 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 18.217.215.27 +08/22-09:17:23.853301 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 +08/22-09:18:02.370482 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 169.255.56.68 +08/22-09:18:07.398464 [**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 169.255.56.68 +08/22-09:18:39.566191 [**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] [Classification: Misc activity] [Priority: 3] [AppID: ICMP] {ICMP} 10.255.255.5 -> 172.255.0.6 diff --git a/logs/alert_full.txt b/logs/alert_full.txt new file mode 100644 index 0000000..0602967 --- /dev/null +++ b/logs/alert_full.txt @@ -0,0 +1,72503 @@ +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:36:58.690508 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.136:80 +TCP TTL:241 TOS:0x0 ID:19777 IpLen:20 DgmLen:40 +Seq: 0xE92AF999 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:37:01.892076 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:59291 -> 193.232.180.232:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:37:47.866887 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5139 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.104:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B468 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:41:24.883688 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5140 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.49:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B431 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:41:41.402712 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5141 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.223:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:43:28.272545 10.255.255.5 -> 94.20.141.223 +ICMP TTL:63 TOS:0xC0 ID:14118 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.20.141.223 -> 86.110.96.152 +ICMP TTL:1 TOS:0x0 ID:22177 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 59991 Id: 22177 SeqNo: 11 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:45:51.377380 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5142 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.84:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B454 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:45:58.106794 10.255.255.5 -> 193.1.33.5 +ICMP TTL:63 TOS:0xC0 ID:12713 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.1.33.5 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52023 Id: 52023 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:46:03.168656 10.255.255.5 -> 193.1.33.5 +ICMP TTL:63 TOS:0xC0 ID:12714 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.1.33.5 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52023 Id: 52023 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:46:08.252375 10.255.255.5 -> 193.1.33.5 +ICMP TTL:63 TOS:0xC0 ID:12715 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.1.33.5 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52023 Id: 52023 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:47:43.562720 10.255.255.5 -> 20.57.167.96 +ICMP TTL:63 TOS:0xC0 ID:56774 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +20.57.167.96 -> 193.232.180.18 +ICMP TTL:1 TOS:0x0 ID:14393 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18891 Id: 14393 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:47:46.175057 10.255.255.5 -> 20.57.167.96 +ICMP TTL:63 TOS:0xC0 ID:56775 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +20.57.167.96 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:14393 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18766 Id: 14393 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:47:46.424144 10.255.255.5 -> 20.57.167.96 +ICMP TTL:63 TOS:0xC0 ID:56776 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +20.57.167.96 -> 193.232.180.239 +ICMP TTL:1 TOS:0x0 ID:14393 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18670 Id: 14393 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:47:46.434337 10.255.255.5 -> 20.57.167.96 +ICMP TTL:63 TOS:0xC0 ID:56777 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +20.57.167.96 -> 193.232.180.121 +ICMP TTL:1 TOS:0x0 ID:14393 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18788 Id: 14393 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.087201 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:35782 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:1683 IpLen:20 DgmLen:103 DF +Len: 75 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.087201 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:51207 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:1684 IpLen:20 DgmLen:90 DF +Len: 62 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.292151 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:5609 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:1782 IpLen:20 DgmLen:112 DF +Len: 84 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.497218 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:8456 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:1989 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.497218 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:27867 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:1990 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.907018 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:15445 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:2184 IpLen:20 DgmLen:127 DF +Len: 99 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:25.907018 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:61161 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:2185 IpLen:20 DgmLen:64 DF +Len: 36 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:26.349429 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:65132 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:2501 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:26.349429 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:22481 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:2502 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:27.444599 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:51590 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:3059 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:27.444640 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:20093 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:3060 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:29.417451 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:43069 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:4087 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:29.417451 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:52331 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:4088 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:33.489551 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:53068 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:5894 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:33.489552 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:12624 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:5895 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:38.818987 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:52389 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:8392 IpLen:20 DgmLen:64 DF +Len: 36 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:47.014237 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:11925 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:12800 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:48:47.014238 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:58617 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:62076 +UDP TTL:244 TOS:0x0 ID:12799 IpLen:20 DgmLen:140 DF +Len: 112 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:50:42.884467 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5143 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.186:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:53:19.368884 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5144 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.76:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:54:36.620514 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.223:80 +TCP TTL:241 TOS:0x0 ID:29584 IpLen:20 DgmLen:40 +Seq: 0x3BEEC71F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:54:39.011727 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5145 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.12:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:55:19.007757 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30571 -> 193.232.180.27:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:55:25.222215 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28411 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30773 -> 193.232.180.229:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 20 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:56:11.261414 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.99:443 +TCP TTL:241 TOS:0x0 ID:23940 IpLen:20 DgmLen:40 +Seq: 0xDFEFE85C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:57:13.875142 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:21416 -> 193.232.180.75:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xF8609984 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:58:09.895435 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5146 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.175:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:59:04.334925 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5147 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.167:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-14:59:10.558352 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.7:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B407 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:00:27.071363 10.255.255.5 -> 74.3.163.37 +ICMP TTL:63 TOS:0xC0 ID:39257 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.37 -> 193.232.180.22 +ICMP TTL:1 TOS:0x0 ID:20152 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 13128 Id: 20152 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:00:27.071363 10.255.255.5 -> 74.3.163.37 +ICMP TTL:63 TOS:0xC0 ID:39258 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.37 -> 193.232.180.77 +ICMP TTL:1 TOS:0x0 ID:20152 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 13073 Id: 20152 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:00:27.293283 10.255.255.5 -> 74.3.163.37 +ICMP TTL:63 TOS:0xC0 ID:39259 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.37 -> 193.232.180.208 +ICMP TTL:1 TOS:0x0 ID:20152 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 12942 Id: 20152 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:00:27.320483 10.255.255.5 -> 74.3.163.37 +ICMP TTL:63 TOS:0xC0 ID:39260 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.37 -> 193.232.180.47 +ICMP TTL:1 TOS:0x0 ID:20152 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 13103 Id: 20152 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:01:19.317625 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.246:80 +TCP TTL:241 TOS:0x0 ID:48551 IpLen:20 DgmLen:40 +Seq: 0xB0D50901 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:02:24.462613 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.155:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:02:54.108464 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5150 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.214:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:21.020954 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:16293 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:21.035345 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:39915 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:21.841251 10.255.255.5 -> 123.162.190.194 +ICMP TTL:63 TOS:0xC0 ID:13954 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.162.190.194 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:7659 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 29205 Id: 60391 SeqNo: 35310 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:21.850301 10.255.255.5 -> 123.162.190.194 +ICMP TTL:63 TOS:0xC0 ID:13955 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.162.190.194 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:63964 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 25207 Id: 28146 SeqNo: 6018 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:24.276732 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:49773 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:24.276733 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:44762 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:25.846509 10.255.255.5 -> 123.162.190.194 +ICMP TTL:63 TOS:0xC0 ID:13956 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.162.190.194 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:9112 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 29195 Id: 60391 SeqNo: 35320 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:25.853462 10.255.255.5 -> 123.162.190.194 +ICMP TTL:63 TOS:0xC0 ID:13957 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.162.190.194 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:1761 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 25198 Id: 28146 SeqNo: 6027 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:29.077633 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:30395 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:29.077633 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:65298 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:34.200567 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0x0 ID:34578 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63308 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:03:48.566349 185.93.41.55 -> 172.64.148.154 +ICMP TTL:61 TOS:0xC0 ID:47508 IpLen:20 DgmLen:93 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.148.154:443 -> 185.93.41.55:51472 +TCP TTL:49 TOS:0x0 ID:1075 IpLen:20 DgmLen:65 DF +Seq: 0x82B24B05 +(37 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:04:01.233554 185.93.41.55 -> 172.64.148.154 +ICMP TTL:61 TOS:0xC0 ID:47509 IpLen:20 DgmLen:93 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.148.154:443 -> 185.93.41.55:51472 +TCP TTL:49 TOS:0x0 ID:1076 IpLen:20 DgmLen:65 DF +Seq: 0x82B24B05 +(37 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:04:03.856191 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5151 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.253:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:04:04.255025 185.93.41.55 -> 172.64.148.154 +ICMP TTL:61 TOS:0xC0 ID:47510 IpLen:20 DgmLen:170 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.148.154:443 -> 185.93.41.55:51472 +TCP TTL:49 TOS:0x0 ID:1077 IpLen:20 DgmLen:142 DF +Seq: 0x82B24B1E +(114 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:46.521473 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.115:443 +TCP TTL:241 TOS:0x0 ID:34280 IpLen:20 DgmLen:40 +Seq: 0x66EA3020 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:51.233952 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5152 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.96:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:59.030162 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63080 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37216 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:59.030162 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63081 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37217 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:59.030162 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63082 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37218 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:05:59.030162 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63083 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37219 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:02.131594 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63084 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37220 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:02.131594 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63085 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37221 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:05.303546 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63086 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37222 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:09.553812 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:15563 -> 193.232.180.49:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B431 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:14.718836 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63087 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:51504 +TCP TTL:51 TOS:0x28 ID:37223 IpLen:20 DgmLen:40 +Seq: 0x8C20EF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:29.864797 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.228:443 +TCP TTL:241 TOS:0x0 ID:59260 IpLen:20 DgmLen:40 +Seq: 0x419D5223 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:06:40.820767 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5153 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.156:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:09:38.295779 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30718 -> 193.232.180.174:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:10:24.591592 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.223:443 +TCP TTL:241 TOS:0x0 ID:38944 IpLen:20 DgmLen:40 +Seq: 0xE062D44 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:11:19.040499 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5154 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.139:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:13:54.674470 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5155 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.230:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:14:22.899818 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5156 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.147:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B493 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:21:30.972647 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:6500 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:57622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:21:30.973950 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:64144 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:57622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:22:35.341750 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30718 -> 193.232.180.174:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:23:27.774665 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5157 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.226:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:25:01.618389 10.255.255.5 -> 192.241.129.61 +ICMP TTL:63 TOS:0xC0 ID:29587 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.129.61:7084 -> 193.232.180.57:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B439 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:27:49.668199 10.255.255.5 -> 197.84.133.3 +ICMP TTL:63 TOS:0xC0 ID:37286 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.84.133.3 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:64056 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 343 Id: 59805 SeqNo: 64758 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:27:49.668199 10.255.255.5 -> 197.84.133.3 +ICMP TTL:63 TOS:0xC0 ID:37287 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.84.133.3 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:38233 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 31629 Id: 32677 SeqNo: 60600 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:27:53.670185 10.255.255.5 -> 197.84.133.3 +ICMP TTL:63 TOS:0xC0 ID:37288 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.84.133.3 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:172 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 331 Id: 59805 SeqNo: 64770 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:27:53.671157 10.255.255.5 -> 197.84.133.3 +ICMP TTL:63 TOS:0xC0 ID:37289 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.84.133.3 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:40415 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 31617 Id: 32677 SeqNo: 60612 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:27:55.565282 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56864 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:38671 -> 86.110.96.157:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x33A2B181 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:01.845281 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56865 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:36751 -> 86.110.96.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD1C074CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:20.838268 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57412 +TCP TTL:50 TOS:0x0 ID:55218 IpLen:20 DgmLen:79 DF +Seq: 0xDA456FCC +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:20.838268 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57412 +TCP TTL:50 TOS:0x0 ID:55219 IpLen:20 DgmLen:40 DF +Seq: 0xDA456FF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:20.838268 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57412 +TCP TTL:50 TOS:0x0 ID:55220 IpLen:20 DgmLen:40 DF +Seq: 0xDA456FF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:20.838268 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57412 +TCP TTL:50 TOS:0x0 ID:55221 IpLen:20 DgmLen:79 DF +Seq: 0xDA456FCC +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:20.838268 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57412 +TCP TTL:50 TOS:0x0 ID:55222 IpLen:20 DgmLen:79 DF +Seq: 0xDA456FCC +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:23.326522 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5158 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.115:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B473 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:31.046433 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56866 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:46133 -> 86.110.96.149:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD3A2D123 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:34.456570 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56867 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:44693 -> 86.110.96.156:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE5C0156B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:41.906876 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56868 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:60866 -> 86.110.96.146:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44931420 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:43.456954 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56869 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:35414 -> 86.110.96.151:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEE3A4EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:44.429289 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57413 +TCP TTL:50 TOS:0x0 ID:12501 IpLen:20 DgmLen:79 DF +Seq: 0x8E331BC3 +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:44.429289 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57413 +TCP TTL:50 TOS:0x0 ID:12502 IpLen:20 DgmLen:40 DF +Seq: 0x8E331BEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:44.429289 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57413 +TCP TTL:50 TOS:0x0 ID:12503 IpLen:20 DgmLen:40 DF +Seq: 0x8E331BEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:44.429327 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57413 +TCP TTL:50 TOS:0x0 ID:12504 IpLen:20 DgmLen:79 DF +Seq: 0x8E331BC3 +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:44.429369 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:57413 +TCP TTL:50 TOS:0x0 ID:12505 IpLen:20 DgmLen:79 DF +Seq: 0x8E331BC3 +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:45.267030 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56870 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:59204 -> 86.110.96.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD406668C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:46.667098 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56871 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:58576 -> 86.110.96.154:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA03D068 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:28:54.097465 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56872 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:39564 -> 86.110.96.155:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B57FD9A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:29:06.227788 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.227:443 +TCP TTL:241 TOS:0x0 ID:57537 IpLen:20 DgmLen:40 +Seq: 0x358D5599 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:29:15.578262 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56873 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:54513 -> 86.110.96.158:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95943E54 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:29:26.668734 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56874 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:39598 -> 86.110.96.153:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4DA866E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:29:41.839206 10.255.255.5 -> 172.169.207.230 +ICMP TTL:63 TOS:0xC0 ID:56875 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.230:42939 -> 86.110.96.152:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B178AFE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:30:16.550603 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5159 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.35:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B423 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:31:34.727825 185.93.41.55 -> 172.224.48.13 +ICMP TTL:61 TOS:0x0 ID:16009 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.13:443 -> 185.93.41.55:54356 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:59 DF +Len: 31 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:31:51.993014 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28412 IpLen:20 DgmLen:118 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:46199 -> 193.232.180.119:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:90 +Len: 62 Csum: 0 +(62 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:32:15.005267 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.100:80 +TCP TTL:241 TOS:0x0 ID:17499 IpLen:20 DgmLen:40 +Seq: 0x21D6F06F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:15.203148 10.255.255.5 -> 185.126.237.183 +ICMP TTL:63 TOS:0xC0 ID:33445 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.126.237.183 -> 193.232.180.224 +ICMP TTL:1 TOS:0x0 ID:52 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35179 Id: 35179 SeqNo: 51 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:20.203092 10.255.255.5 -> 185.126.237.183 +ICMP TTL:63 TOS:0xC0 ID:33446 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.126.237.183 -> 193.232.180.224 +ICMP TTL:1 TOS:0x0 ID:53 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35179 Id: 35179 SeqNo: 52 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:25.232478 10.255.255.5 -> 185.126.237.183 +ICMP TTL:63 TOS:0xC0 ID:33447 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.126.237.183 -> 193.232.180.224 +ICMP TTL:1 TOS:0x0 ID:54 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35179 Id: 35179 SeqNo: 53 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:39.825314 10.255.255.5 -> 103.153.254.103 +ICMP TTL:63 TOS:0xC0 ID:30814 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.153.254.103 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:7656 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25564 Id: 7656 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:39.878184 10.255.255.5 -> 103.153.254.103 +ICMP TTL:63 TOS:0xC0 ID:30815 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.153.254.103 -> 193.232.180.155 +ICMP TTL:1 TOS:0x0 ID:7656 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25491 Id: 7656 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:39.878890 10.255.255.5 -> 103.153.254.103 +ICMP TTL:63 TOS:0xC0 ID:30816 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.153.254.103 -> 193.232.180.41 +ICMP TTL:1 TOS:0x0 ID:7656 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25605 Id: 7656 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:34:39.913273 10.255.255.5 -> 103.153.254.103 +ICMP TTL:63 TOS:0xC0 ID:30817 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.153.254.103 -> 193.232.180.196 +ICMP TTL:1 TOS:0x0 ID:7656 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25450 Id: 7656 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:41:13.666220 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5160 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.12:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:05.950645 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.78:443 +TCP TTL:241 TOS:0x0 ID:18918 IpLen:20 DgmLen:40 +Seq: 0x1F6AFC13 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:08.762224 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:16118 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:09.763220 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:29712 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:10.815808 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:60110 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:10.815808 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:40865 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:13.785574 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:57314 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:13.785574 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:46325 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:18.803549 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:13711 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:18.803549 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:49602 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:23.764813 185.93.41.55 -> 172.224.48.21 +ICMP TTL:61 TOS:0x0 ID:14969 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:52474 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:43:29.881675 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5161 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.14:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:44:18.183393 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5162 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.184:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:46:18.448216 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5163 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.72:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B448 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:47:03.739918 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5164 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.133:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B485 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:48:18.013397 10.255.255.5 -> 103.9.77.120 +ICMP TTL:63 TOS:0xC0 ID:24068 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.9.77.120 -> 193.232.180.147 +ICMP TTL:1 TOS:0x0 ID:41949 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 56741 Id: 41949 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:48:20.096626 10.255.255.5 -> 103.9.77.120 +ICMP TTL:63 TOS:0xC0 ID:24069 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.9.77.120 -> 193.232.180.94 +ICMP TTL:1 TOS:0x0 ID:41949 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 56794 Id: 41949 SeqNo: 22 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:48:24.923739 10.255.255.5 -> 103.9.77.120 +ICMP TTL:63 TOS:0xC0 ID:24070 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.9.77.120 -> 193.232.180.187 +ICMP TTL:1 TOS:0x0 ID:41949 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 56701 Id: 41949 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:48:25.282702 10.255.255.5 -> 103.9.77.120 +ICMP TTL:63 TOS:0xC0 ID:24071 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.9.77.120 -> 193.232.180.235 +ICMP TTL:1 TOS:0x0 ID:41949 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 56653 Id: 41949 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:50:02.766952 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.151:80 +TCP TTL:241 TOS:0x0 ID:30759 IpLen:20 DgmLen:40 +Seq: 0xB393CCE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:50:15.510176 10.255.255.5 -> 208.72.153.224 +ICMP TTL:63 TOS:0xC0 ID:25287 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.153.224 -> 193.232.180.174 +ICMP TTL:1 TOS:0x0 ID:49 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42843 Id: 42843 SeqNo: 48 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:50:21.115401 10.255.255.5 -> 208.72.153.224 +ICMP TTL:63 TOS:0xC0 ID:25288 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.153.224 -> 193.232.180.174 +ICMP TTL:1 TOS:0x0 ID:50 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42843 Id: 42843 SeqNo: 49 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:50:26.384334 10.255.255.5 -> 208.72.153.224 +ICMP TTL:63 TOS:0xC0 ID:25289 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.153.224 -> 193.232.180.174 +ICMP TTL:1 TOS:0x0 ID:51 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42843 Id: 42843 SeqNo: 50 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:54:56.508444 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5165 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.155:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291664 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47821 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 38281 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291664 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47822 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:53075 +TCP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0xA3035A23 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291665 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38164 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 19266 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291665 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47823 IpLen:20 DgmLen:486 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 35830 +(430 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291665 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38165 IpLen:20 DgmLen:487 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 51519 +(431 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291705 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47824 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 47927 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291705 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38166 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 22894 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:30.291705 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47825 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:53075 +TCP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0xA3035A23 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:34.601726 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47957 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 186 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:34.601726 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38530 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 43068 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:34.601726 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:47958 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 28738 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:34.601726 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38531 IpLen:20 DgmLen:576 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 32158 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:39.641902 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:48394 IpLen:20 DgmLen:486 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 6729 +(430 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:39.641903 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:48395 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 9659 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:39.641903 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38747 IpLen:20 DgmLen:487 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 52316 +(431 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:39.641903 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38748 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 42581 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:43.082344 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0xC0 ID:48591 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:55684 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 43767 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:56:43.082344 185.93.41.55 -> 172.224.39.136 +ICMP TTL:61 TOS:0xC0 ID:38971 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:58218 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 2977 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:00.933195 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.111:80 +TCP TTL:241 TOS:0x0 ID:18392 IpLen:20 DgmLen:40 +Seq: 0xC30CF3E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:13.793853 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.53:443 +TCP TTL:241 TOS:0x0 ID:47943 IpLen:20 DgmLen:40 +Seq: 0xBF9C0EC9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:46.046256 10.255.255.5 -> 157.148.98.30 +ICMP TTL:63 TOS:0xC0 ID:41191 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.148.98.30 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:13672 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19533 Id: 13672 SeqNo: 20 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:46.303374 10.255.255.5 -> 157.148.98.30 +ICMP TTL:63 TOS:0xC0 ID:41192 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.148.98.30 -> 193.232.180.86 +ICMP TTL:1 TOS:0x0 ID:13672 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19544 Id: 13672 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:46.356532 10.255.255.5 -> 157.148.98.30 +ICMP TTL:63 TOS:0xC0 ID:41193 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.148.98.30 -> 193.232.180.43 +ICMP TTL:1 TOS:0x0 ID:13672 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19587 Id: 13672 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:57:46.550268 10.255.255.5 -> 157.148.98.30 +ICMP TTL:63 TOS:0xC0 ID:41194 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.148.98.30 -> 193.232.180.212 +ICMP TTL:1 TOS:0x0 ID:13672 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19418 Id: 13672 SeqNo: 20 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-15:58:41.397298 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.168:80 +TCP TTL:241 TOS:0x0 ID:53448 IpLen:20 DgmLen:40 +Seq: 0xC0916430 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:34.636553 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63088 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26215 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:34.636553 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63089 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26216 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:34.636553 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63090 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26217 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:34.636553 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63091 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26218 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:34.636553 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63092 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26219 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:38.496532 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63093 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26220 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:42.307105 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63094 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26221 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:00:49.987559 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63095 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:53491 +TCP TTL:51 TOS:0x28 ID:26222 IpLen:20 DgmLen:40 +Seq: 0xFC876C36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:01:28.136230 185.93.41.55 -> 172.64.41.4 +ICMP TTL:61 TOS:0xC0 ID:47802 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.4:443 -> 185.93.41.55:62974 +TCP TTL:51 TOS:0x0 ID:40876 IpLen:20 DgmLen:76 DF +Seq: 0xF1BFA815 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:01:28.136231 185.93.41.55 -> 172.64.41.4 +ICMP TTL:61 TOS:0xC0 ID:47803 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.4:443 -> 185.93.41.55:62974 +TCP TTL:51 TOS:0x0 ID:40877 IpLen:20 DgmLen:52 DF +Seq: 0xF1BFA82D +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:01:28.136231 185.93.41.55 -> 172.64.41.4 +ICMP TTL:61 TOS:0xC0 ID:47804 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.4:443 -> 185.93.41.55:62974 +TCP TTL:51 TOS:0x0 ID:40878 IpLen:20 DgmLen:52 DF +Seq: 0xF1BFA82D +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:01:28.136231 185.93.41.55 -> 172.64.41.4 +ICMP TTL:61 TOS:0xC0 ID:47805 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.4:443 -> 185.93.41.55:62974 +TCP TTL:51 TOS:0x0 ID:40879 IpLen:20 DgmLen:76 DF +Seq: 0xF1BFA815 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:01:28.136231 185.93.41.55 -> 172.64.41.4 +ICMP TTL:61 TOS:0xC0 ID:47806 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.4:443 -> 185.93.41.55:62974 +TCP TTL:51 TOS:0x0 ID:40880 IpLen:20 DgmLen:76 DF +Seq: 0xF1BFA815 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:02:08.475357 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5166 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.198:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/20-16:02:31.729406 172.104.100.28 -> 185.93.41.55 +ICMP TTL:41 TOS:0x0 ID:24716 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:51382 Seq:61673 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:04:27.291949 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30727 -> 193.232.180.183:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:05:31.823598 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5167 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.158:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:05:41.543621 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5168 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.49:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B431 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:06:34.655912 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5169 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.105:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B469 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:07:13.847310 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5170 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.212:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:10:53.206123 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30727 -> 193.232.180.183:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:28.428369 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:16763 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:29.424524 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:5153 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:29.425402 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:28076 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:32.422704 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:16428 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:32.422705 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:41120 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:11:42.427753 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:43801 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:51487 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:12:41.420267 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5171 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.50:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B432 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:13:20.601752 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.121:443 +TCP TTL:241 TOS:0x0 ID:51633 IpLen:20 DgmLen:40 +Seq: 0x3F2F7C73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:13:38.282381 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5172 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.116:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B474 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:26.468959 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5173 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.219:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:55.850188 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:41 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48803 -> 193.232.180.121:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1FA3F7C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:56.060122 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:42 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:37240 -> 193.232.180.106:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE5BC068 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:56.610347 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:43 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34006 -> 193.232.180.75:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB97F70DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:57.090226 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:44 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34572 -> 193.232.180.35:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDA7651B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:57.160312 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:45 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58858 -> 193.232.180.216:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C672AF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:57.450226 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:46 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46454 -> 193.232.180.104:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD5594FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:58.650340 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.68:443 +TCP TTL:241 TOS:0x0 ID:61367 IpLen:20 DgmLen:40 +Seq: 0xD915A48 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:58.750314 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:47 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49053 -> 193.232.180.44:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0758D4E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:59.380222 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:48 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53094 -> 193.232.180.208:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD72D0FA9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:16:59.990289 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:49 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56462 -> 193.232.180.183:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x99BCF169 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:00.500423 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:50 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45515 -> 193.232.180.48:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91498875 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:01.010518 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:51 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34674 -> 193.232.180.227:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9938C3FD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:01.220533 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:52 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57646 -> 193.232.180.84:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE29AC10B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:01.230326 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:53 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53183 -> 193.232.180.21:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6DB7EC1A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:01.460403 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:54 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59764 -> 193.232.180.243:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEC85CA6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:02.480487 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:55 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60309 -> 193.232.180.15:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD223E6A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:02.550436 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:56 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34361 -> 193.232.180.103:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B680FE7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:03.500505 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:57 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45263 -> 193.232.180.25:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AEACD86 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:03.610571 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:58 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60225 -> 193.232.180.203:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4441CEFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:03.760504 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:59 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36839 -> 193.232.180.133:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA5F4AA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:04.780535 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:60 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35727 -> 193.232.180.219:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x80A8EC5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:04.930468 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:61 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48996 -> 193.232.180.32:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD677DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:05.400518 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:62 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58782 -> 193.232.180.7:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9C244C9C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:06.590536 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:63 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49453 -> 193.232.180.49:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD29E83FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:06.661632 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30567 -> 193.232.180.23:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:06.930497 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:64 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:32951 -> 193.232.180.150:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8FC3C38C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:07.710538 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:65 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59053 -> 193.232.180.176:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF90DC766 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:08.150607 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:66 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46780 -> 193.232.180.167:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB091FD9F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:08.160616 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:67 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52039 -> 193.232.180.151:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBF246B22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:08.860611 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5174 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.175:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:10.220652 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:68 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58724 -> 193.232.180.120:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B8D3C6B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:11.040814 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:69 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44520 -> 193.232.180.147:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED1ED0BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:11.070626 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:70 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46987 -> 193.232.180.181:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB05C6B60 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:11.560727 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:71 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46948 -> 193.232.180.168:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF63048AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:11.790732 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:72 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60722 -> 193.232.180.250:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50BD9566 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:12.020736 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:73 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33700 -> 193.232.180.170:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD02D1693 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:12.920727 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:74 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60035 -> 193.232.180.8:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2CD1443D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:12.931157 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:75 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34371 -> 193.232.180.92:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2C216 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:13.650809 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:76 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59586 -> 193.232.180.218:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x911F2DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:14.390835 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:77 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60915 -> 193.232.180.93:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9557A4AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:14.800970 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:78 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38883 -> 193.232.180.153:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB043ABE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:15.310860 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:79 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58990 -> 193.232.180.69:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB5204A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:15.830981 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:80 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48299 -> 193.232.180.76:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB48E6B0D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:16.791232 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:81 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52531 -> 193.232.180.195:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62A3C759 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:17.090938 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:82 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44948 -> 193.232.180.178:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F335CAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:17.641109 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:83 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43547 -> 193.232.180.97:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4895A4C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:18.731039 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:84 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40425 -> 193.232.180.81:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x331A9138 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:18.821064 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:85 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58672 -> 193.232.180.155:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88B5A34B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:18.891118 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:86 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40618 -> 193.232.180.125:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE89E8AE4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:19.211252 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:87 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46094 -> 193.232.180.253:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF574C2C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:19.781065 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:88 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40456 -> 193.232.180.211:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x28C6CAFA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:20.741239 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:89 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40913 -> 193.232.180.144:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A81313A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:20.931282 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:90 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38543 -> 193.232.180.114:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF3A74529 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:21.111245 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:91 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52906 -> 193.232.180.185:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA4BE5069 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:22.631311 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:92 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:39828 -> 193.232.180.90:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDEC0C81F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:23.431416 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:93 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:37559 -> 193.232.180.141:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x917289F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:23.721333 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:94 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51274 -> 193.232.180.126:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96F877D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:25.751290 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:95 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51741 -> 193.232.180.82:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF32F95E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:27.261274 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:96 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43917 -> 193.232.180.13:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x328A4D15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:27.351334 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:97 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48727 -> 193.232.180.16:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1519D5A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:27.561327 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:98 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52315 -> 193.232.180.47:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDAFECDB6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:28.711399 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:99 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59119 -> 193.232.180.40:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3347F548 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:28.751414 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:100 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33176 -> 193.232.180.5:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x456ED29A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:29.701564 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:101 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41125 -> 193.232.180.39:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE2A886E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:29.801738 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:102 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58717 -> 193.232.180.198:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x422973CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:30.391427 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:103 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59918 -> 193.232.180.53:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3B2EA4C4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:30.451612 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:104 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43298 -> 193.232.180.64:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4F22CEAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:30.581655 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:105 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:54374 -> 193.232.180.115:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23E27CDF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:31.001485 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:106 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45298 -> 193.232.180.199:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5670C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:31.201460 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:107 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53538 -> 193.232.180.127:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x15E974F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:31.531507 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:108 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45791 -> 193.232.180.164:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC84271B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:31.961567 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:109 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33120 -> 193.232.180.60:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46579070 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:32.051743 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:110 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57867 -> 193.232.180.33:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x340CAE1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:32.311541 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:111 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44694 -> 193.232.180.123:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x61C06F81 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:32.461566 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:112 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60736 -> 193.232.180.184:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A3BE081 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:33.441667 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:113 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36455 -> 193.232.180.242:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5FE83E51 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:34.041702 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:114 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40736 -> 193.232.180.122:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90CFE880 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:34.621668 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:115 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55639 -> 193.232.180.189:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD10A5188 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:34.851949 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:116 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34836 -> 193.232.180.201:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE366F96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:35.731832 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:117 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49537 -> 193.232.180.180:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30E2ED51 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:35.811764 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:118 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50885 -> 193.232.180.55:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1D5B93C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:36.021712 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:119 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58314 -> 193.232.180.142:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBF6CF6A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:36.611854 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:120 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57138 -> 193.232.180.238:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB7C1362A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:37.792022 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:121 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56248 -> 193.232.180.109:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCF57461 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:38.091752 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:122 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51962 -> 193.232.180.234:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE71FEB1F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:39.231842 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:123 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44807 -> 193.232.180.110:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66CE43E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:39.591929 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:124 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42735 -> 193.232.180.124:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x878FC902 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:40.181917 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:125 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59217 -> 193.232.180.50:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x22EA7C62 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:40.591869 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:126 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48438 -> 193.232.180.70:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEEA63658 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:40.742056 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:127 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50742 -> 193.232.180.83:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6E4C05F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:41.301838 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:128 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38475 -> 193.232.180.237:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC7A16D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:41.441825 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:129 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41569 -> 193.232.180.139:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D6E7B53 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:41.781941 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:130 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52257 -> 193.232.180.152:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5F35E3F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:43.291905 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:131 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33306 -> 193.232.180.113:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCCFCE65 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:43.361878 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:132 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58970 -> 193.232.180.46:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFFC57209 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:43.732007 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:133 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38032 -> 193.232.180.179:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9A1A07A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:44.211984 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:135 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35513 -> 193.232.180.129:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5743C190 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:44.631955 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:136 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59197 -> 193.232.180.191:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB921992 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:45.731978 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:137 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57664 -> 193.232.180.240:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8F3C96D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:46.151975 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:138 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43909 -> 193.232.180.117:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3BF1AB06 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:47.382234 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:139 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50690 -> 193.232.180.246:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95A5A6D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:48.032119 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:140 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36460 -> 193.232.180.119:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE8EC2DD5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:48.472166 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:141 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49400 -> 193.232.180.247:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60907876 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:48.662158 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:142 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50871 -> 193.232.180.204:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x427816ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:49.622116 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:143 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:32871 -> 193.232.180.96:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6B0CE05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:50.792313 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:144 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51190 -> 193.232.180.79:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD02A7B25 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:51.312284 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:145 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38523 -> 193.232.180.72:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD1A6EBF1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:51.322392 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:146 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58801 -> 193.232.180.230:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA50344EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:52.532205 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:147 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42756 -> 193.232.180.63:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96A02683 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:53.022366 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34997 -> 193.232.180.145:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x40CD2930 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:53.152352 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57220 -> 193.232.180.174:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3C261FC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:53.572309 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:150 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35572 -> 193.232.180.225:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x394B4640 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:53.682360 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:151 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50985 -> 193.232.180.229:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA4E6E7A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:54.062471 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:152 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44600 -> 193.232.180.23:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9462536 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:54.362514 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:153 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43438 -> 193.232.180.131:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9B338A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:54.802663 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:154 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36248 -> 193.232.180.2:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2AE25DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:55.172580 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:155 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52222 -> 193.232.180.24:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFDD873E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:56.122496 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:156 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42672 -> 193.232.180.160:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9AC0D55 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:56.742554 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:157 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:54474 -> 193.232.180.140:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1F58E8F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:57.092517 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:158 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46465 -> 193.232.180.143:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x86B351A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:57.322809 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:159 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38911 -> 193.232.180.65:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF00A4E42 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:57.492612 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:160 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59162 -> 193.232.180.200:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56A6375E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:57.692571 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:161 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55691 -> 193.232.180.91:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6E084428 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:57.962559 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:162 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53898 -> 193.232.180.251:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB8CDE1C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:58.842676 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:163 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40023 -> 193.232.180.74:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96279BEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:17:59.792687 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:164 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44656 -> 193.232.180.239:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x203A4980 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:00.822568 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:165 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48801 -> 193.232.180.173:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1A8BBF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:01.803087 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:166 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38548 -> 193.232.180.51:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC72600D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:03.892740 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:167 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50913 -> 193.232.180.254:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39B9E816 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:04.292812 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:168 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36887 -> 193.232.180.10:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3B10B26C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:04.662842 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:169 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33348 -> 193.232.180.161:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90A5AE80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:05.003023 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:170 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45677 -> 193.232.180.169:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x70FDB7AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:05.112906 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:171 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56589 -> 193.232.180.248:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6EEB161 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:05.542998 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:172 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49169 -> 193.232.180.244:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC2339D31 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:06.842840 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:173 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52608 -> 193.232.180.205:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x287C2603 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:07.722953 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:174 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53654 -> 193.232.180.108:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA75B1F83 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:07.883141 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:175 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53969 -> 193.232.180.162:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D302FE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:08.342915 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:176 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35292 -> 193.232.180.214:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2BDAC8F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:08.353047 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:177 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55997 -> 193.232.180.220:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88C6259F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:09.243243 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:178 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56494 -> 193.232.180.54:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9D32C06 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:09.513169 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:179 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50361 -> 193.232.180.43:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74E839F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:11.263200 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:180 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33166 -> 193.232.180.112:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8D7389B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:11.503152 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:181 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52835 -> 193.232.180.213:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB007B1A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:11.813159 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:182 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52899 -> 193.232.180.157:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9AE5EE22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:12.563341 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:183 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:47175 -> 193.232.180.68:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x875CAF3F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:12.993328 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:184 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:32778 -> 193.232.180.228:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7E0A0C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:13.833252 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:185 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38064 -> 193.232.180.224:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC529D812 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.073263 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55753 -> 193.232.180.235:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B2BD77A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.373240 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59544 -> 193.232.180.241:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x183C583D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.393365 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33639 -> 193.232.180.36:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62C3E390 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.423210 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56567 -> 193.232.180.3:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE70EBD74 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.603160 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45857 -> 193.232.180.95:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B624D9B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:14.963492 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55134 -> 193.232.180.186:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4562162 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:15.403238 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:40837 -> 193.232.180.212:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB4748C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:15.803270 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:39142 -> 193.232.180.4:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDD971A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:16.093384 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:194 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44742 -> 193.232.180.19:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB516FDD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:16.449969 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57987 -> 193.232.180.27:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC4CEF2C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:17.603459 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58008 -> 193.232.180.85:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE50429E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:17.693456 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43965 -> 193.232.180.56:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1CECFFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:17.903298 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:198 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48892 -> 193.232.180.197:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2BA98F16 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:20.023470 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:199 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33080 -> 193.232.180.30:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD16B463A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:20.123403 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:200 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36626 -> 193.232.180.148:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44E0CE7C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.023472 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:201 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:39461 -> 193.232.180.132:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD053AB87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.093576 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56338 -> 193.232.180.77:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBC8CA374 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.223452 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48598 -> 193.232.180.128:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2679C261 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.303554 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56846 -> 193.232.180.9:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1153648 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.393737 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43298 -> 193.232.180.149:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91CD6AA1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:21.583507 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:54895 -> 193.232.180.100:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x848E6FD0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:22.803555 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:47001 -> 193.232.180.66:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x413B27FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:23.163573 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45312 -> 193.232.180.165:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x59DEFE03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:23.833525 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33165 -> 193.232.180.94:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E558EB1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:24.743528 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33326 -> 193.232.180.101:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x972CD162 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:26.153789 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50576 -> 193.232.180.137:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA4068E2B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:26.673757 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:47556 -> 193.232.180.138:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA399A942 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:29.803767 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43037 -> 193.232.180.249:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2430812 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:30.123813 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:214 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56361 -> 193.232.180.159:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x824D01F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:30.954037 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:215 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42200 -> 193.232.180.206:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBBE23E6A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:31.043986 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:216 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:43964 -> 193.232.180.226:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5E7B75C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:31.843965 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:217 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59774 -> 193.232.180.61:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1F1B52C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:32.203915 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:218 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52394 -> 193.232.180.107:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE512DBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:33.103996 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:219 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41729 -> 193.232.180.231:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE2DBA61 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:33.644137 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:220 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36772 -> 193.232.180.158:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA1B011 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:33.874000 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:221 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:47186 -> 193.232.180.187:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0E292F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:34.134023 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:222 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46300 -> 193.232.180.14:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x79A96650 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:34.383990 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:223 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33076 -> 193.232.180.17:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4043F682 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:34.544131 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:224 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:37047 -> 193.232.180.34:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x81F79EDB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:34.694046 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:225 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46709 -> 193.232.180.18:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x83FC89B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:35.063970 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:226 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45595 -> 193.232.180.202:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2BA0E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:35.974147 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:227 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33800 -> 193.232.180.45:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D2E973B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:36.744214 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:228 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41749 -> 193.232.180.232:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9629B757 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:36.754027 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60049 -> 193.232.180.217:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x990C8F89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:36.754027 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:39827 -> 193.232.180.42:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x522D8C9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:36.994326 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:231 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33129 -> 193.232.180.73:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D413511 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:37.624171 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:232 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33219 -> 193.232.180.177:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x85E6DB5E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:38.164162 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:233 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:56645 -> 193.232.180.135:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2CF7290 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:38.464278 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:234 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50096 -> 193.232.180.172:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F5F3FC2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:38.744419 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:235 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60695 -> 193.232.180.38:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD765D4CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:38.864167 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35329 -> 193.232.180.207:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x55FF854E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:39.204145 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:237 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53323 -> 193.232.180.215:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52A3920D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:41.064202 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:238 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50320 -> 193.232.180.209:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C44F9CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:41.404257 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:239 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42324 -> 193.232.180.156:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8940E09A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:41.934291 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:240 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57936 -> 193.232.180.154:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE73CAD4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:42.204339 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44443 -> 193.232.180.192:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD8C3061F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:42.294335 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60479 -> 193.232.180.58:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71CF75A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:42.804403 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59615 -> 193.232.180.57:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB534FC0C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:42.974408 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:34550 -> 193.232.180.252:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66ACF66B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:43.924347 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42190 -> 193.232.180.20:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3794AF24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:44.134389 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:45461 -> 193.232.180.59:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA21D09CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:44.324380 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35812 -> 193.232.180.89:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x210683CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:44.634446 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50200 -> 193.232.180.116:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DD4E5D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:45.674415 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:39442 -> 193.232.180.223:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC551028F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:46.264450 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53929 -> 193.232.180.196:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C2D4E3A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:46.554501 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51026 -> 193.232.180.41:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE0FB9F65 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:46.614496 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44413 -> 193.232.180.222:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35E16032 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:47.674460 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:47519 -> 193.232.180.11:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD12AA5F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:47.784449 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42515 -> 193.232.180.26:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6EB85D68 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:48.104553 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41727 -> 193.232.180.175:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F37D4FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:49.194850 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50918 -> 193.232.180.171:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC55652D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:49.314777 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:52421 -> 193.232.180.87:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC3F66EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:49.954844 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:37718 -> 193.232.180.221:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF59B1D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:50.294547 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51345 -> 193.232.180.188:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x323EC28C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:50.394656 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:35703 -> 193.232.180.102:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5E18A4B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:50.704641 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50799 -> 193.232.180.118:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA2FB72EE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:51.164601 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50438 -> 193.232.180.98:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9765CD7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:52.404842 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:60407 -> 193.232.180.134:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFEE3CF2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:53.204606 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57399 -> 193.232.180.130:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x25ED5FE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:54.074683 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58899 -> 193.232.180.29:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEBDD7BE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:54.114691 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:55263 -> 193.232.180.86:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97D995E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:54.825268 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:48045 -> 193.232.180.194:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC1C2F63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:55.954794 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58346 -> 193.232.180.146:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2A525E35 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:56.424891 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:44720 -> 193.232.180.210:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4EB5AEA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:56.924787 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:51071 -> 193.232.180.31:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF742A2EF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:57.444901 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:33322 -> 193.232.180.22:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x11BE5B08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:58.294805 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38710 -> 193.232.180.6:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84D31170 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:58.414917 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:59453 -> 193.232.180.190:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x563F802E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:18:58.885016 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38248 -> 193.232.180.67:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCC779AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:00.124979 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58171 -> 193.232.180.193:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AC12143 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:00.705119 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38759 -> 193.232.180.88:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x400538ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:01.295165 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:37174 -> 193.232.180.163:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x663D3F0D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:01.504987 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:41270 -> 193.232.180.105:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1021DB27 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:02.255038 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:36785 -> 193.232.180.166:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8DAE8BFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:03.105253 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:32964 -> 193.232.180.62:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93D0E4C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:03.465256 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50695 -> 193.232.180.28:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA193D4D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:03.485081 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:32947 -> 193.232.180.236:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6C021895 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:03.875297 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42182 -> 193.232.180.71:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC247B067 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:04.025108 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:38197 -> 193.232.180.52:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD784FE66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:04.505159 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:53371 -> 193.232.180.111:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB049F21C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:04.615168 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50643 -> 193.232.180.12:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x40909152 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:05.445231 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:42943 -> 193.232.180.80:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D813383 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:05.495184 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:288 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:50249 -> 193.232.180.245:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56AA3B83 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:05.965288 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:58904 -> 193.232.180.78:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3A2E1724 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:06.215173 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:46330 -> 193.232.180.233:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7324B67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:07.165252 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:57121 -> 193.232.180.182:443 +TCP TTL:230 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2EA035E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:19:07.205321 10.255.255.5 -> 172.168.41.227 +ICMP TTL:63 TOS:0xC0 ID:293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.227:49300 -> 193.232.180.37:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AFFB75F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:27:21.234860 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5175 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.36:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B424 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:29:34.809998 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5176 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.66:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B442 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:30:48.547683 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30567 -> 193.232.180.23:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:31:20.284281 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.95:80 +TCP TTL:241 TOS:0x0 ID:18483 IpLen:20 DgmLen:40 +Seq: 0x8DF9FC3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:33:24.640973 10.255.255.5 -> 38.54.116.74 +ICMP TTL:63 TOS:0xC0 ID:9468 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.116.74 -> 193.232.180.252 +ICMP TTL:1 TOS:0x0 ID:34 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42985 Id: 42985 SeqNo: 33 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:33:29.747211 10.255.255.5 -> 38.54.116.74 +ICMP TTL:63 TOS:0xC0 ID:9469 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.116.74 -> 193.232.180.252 +ICMP TTL:1 TOS:0x0 ID:35 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42985 Id: 42985 SeqNo: 34 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:33:34.811569 10.255.255.5 -> 38.54.116.74 +ICMP TTL:63 TOS:0xC0 ID:9470 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.116.74 -> 193.232.180.252 +ICMP TTL:1 TOS:0x0 ID:36 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42985 Id: 42985 SeqNo: 35 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:36:32.086434 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.8:443 +TCP TTL:241 TOS:0x0 ID:54373 IpLen:20 DgmLen:40 +Seq: 0xAA61D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:37:04.217603 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.21:443 +TCP TTL:241 TOS:0x0 ID:9483 IpLen:20 DgmLen:40 +Seq: 0x62DA90A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:37:16.888191 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5177 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.232:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:37:18.648271 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5178 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.152:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6098 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:42:19.499941 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5179 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.96:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:44:30.995039 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.135:80 +TCP TTL:241 TOS:0x0 ID:15788 IpLen:20 DgmLen:40 +Seq: 0x16E1897B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:44:38.405521 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5180 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.93:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:45:17.758485 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30602 -> 193.232.180.58:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:46:37.360141 10.255.255.5 -> 192.99.83.178 +ICMP TTL:63 TOS:0xC0 ID:62576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.99.83.178:13421 -> 86.110.96.146:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6092 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:46:52.322313 10.255.255.5 -> 206.53.48.61 +ICMP TTL:63 TOS:0xC0 ID:16800 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +206.53.48.61 -> 193.232.180.159 +ICMP TTL:1 TOS:0x0 ID:49 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61949 Id: 61949 SeqNo: 48 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:46:57.323343 10.255.255.5 -> 206.53.48.61 +ICMP TTL:63 TOS:0xC0 ID:16801 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +206.53.48.61 -> 193.232.180.159 +ICMP TTL:1 TOS:0x0 ID:50 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61949 Id: 61949 SeqNo: 49 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:47:02.325493 10.255.255.5 -> 206.53.48.61 +ICMP TTL:63 TOS:0xC0 ID:16802 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +206.53.48.61 -> 193.232.180.159 +ICMP TTL:1 TOS:0x0 ID:51 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61949 Id: 61949 SeqNo: 50 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:47:35.472248 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5181 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.151:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B497 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:51:15.879207 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30668 -> 193.232.180.124:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:18.943800 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:28476 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:18.943800 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:20119 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:18.943801 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:28959 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:56279 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:847 DF +Len: 819 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:18.943801 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:30564 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:56279 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:18.943801 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:17642 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:56279 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.149668 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:24664 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:56279 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.149668 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:43185 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.149668 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:14354 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.151261 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:32725 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.151261 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:37963 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.153536 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:51326 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:19.153536 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:61746 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:21.406423 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:50045 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:21.408449 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:44569 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:21.410757 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:62585 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:21.412932 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:54271 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:26.524897 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:22833 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:26.524897 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:17445 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:26.526533 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:32544 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:26.526533 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:7919 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:27.503977 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.192:80 +TCP TTL:241 TOS:0x0 ID:41031 IpLen:20 DgmLen:40 +Seq: 0xED7914D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:31.361599 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:6478 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:49392 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:31.361599 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:3308 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:51870 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:52:49.154574 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5182 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.227:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:53:14.434997 10.255.255.5 -> 44.198.182.22 +ICMP TTL:63 TOS:0xC0 ID:42290 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +44.198.182.22 -> 193.232.180.109 +ICMP TTL:1 TOS:0x0 ID:58 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 57618 Id: 57618 SeqNo: 57 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:53:19.748743 10.255.255.5 -> 44.198.182.22 +ICMP TTL:63 TOS:0xC0 ID:42291 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +44.198.182.22 -> 193.232.180.109 +ICMP TTL:1 TOS:0x0 ID:59 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 57618 Id: 57618 SeqNo: 58 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:53:24.928436 10.255.255.5 -> 44.198.182.22 +ICMP TTL:63 TOS:0xC0 ID:42292 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +44.198.182.22 -> 193.232.180.109 +ICMP TTL:1 TOS:0x0 ID:60 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 57618 Id: 57618 SeqNo: 59 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:53:47.316862 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5183 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.186:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:26.671567 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6691 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:26.965269 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6692 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:27.509842 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6693 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:27.674462 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6694 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:28.478946 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6695 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:29.742353 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6696 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:54:30.204029 10.255.255.5 -> 17.57.163.28 +ICMP TTL:63 TOS:0xC0 ID:6697 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +17.57.163.28:443 -> 192.168.16.19:52646 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x5ED1F848 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:57:31.560862 10.255.255.5 -> 37.252.231.161 +ICMP TTL:63 TOS:0xC0 ID:10893 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.252.231.161 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:31 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36625 Id: 36625 SeqNo: 30 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:57:36.375882 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5184 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.95:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:57:36.562252 10.255.255.5 -> 37.252.231.161 +ICMP TTL:63 TOS:0xC0 ID:10894 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.252.231.161 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:32 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36625 Id: 36625 SeqNo: 31 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-16:57:41.563259 10.255.255.5 -> 37.252.231.161 +ICMP TTL:63 TOS:0xC0 ID:10895 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.252.231.161 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:33 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36625 Id: 36625 SeqNo: 32 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:01:18.204619 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.70:80 +TCP TTL:241 TOS:0x0 ID:36348 IpLen:20 DgmLen:40 +Seq: 0x619639EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:03:43.640254 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5185 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.213:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:11:36.388763 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.197:443 +TCP TTL:241 TOS:0x0 ID:37853 IpLen:20 DgmLen:40 +Seq: 0x67A426A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:11:39.682398 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30705 -> 193.232.180.161:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:12:06.616709 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30602 -> 193.232.180.58:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:12:18.090366 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:27934 -> 193.232.180.105:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B469 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:22:24.255145 10.255.255.5 -> 104.168.164.86 +ICMP TTL:63 TOS:0xC0 ID:53990 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.168.164.86 -> 193.232.180.51 +ICMP TTL:1 TOS:0x0 ID:43 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51120 Id: 51120 SeqNo: 42 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:22:29.294230 10.255.255.5 -> 104.168.164.86 +ICMP TTL:63 TOS:0xC0 ID:53991 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.168.164.86 -> 193.232.180.51 +ICMP TTL:1 TOS:0x0 ID:44 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51120 Id: 51120 SeqNo: 43 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:22:33.394449 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.108:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:22:34.298509 10.255.255.5 -> 104.168.164.86 +ICMP TTL:63 TOS:0xC0 ID:53992 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.168.164.86 -> 193.232.180.51 +ICMP TTL:1 TOS:0x0 ID:45 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51120 Id: 51120 SeqNo: 44 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:29:49.611442 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.186:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:30:35.183384 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.214:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:32:19.127341 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.126:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:32:47.678392 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.15:443 +TCP TTL:241 TOS:0x0 ID:6154 IpLen:20 DgmLen:40 +Seq: 0x153AADBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:34:07.931557 10.255.255.5 -> 192.241.129.61 +ICMP TTL:63 TOS:0xC0 ID:29587 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.129.61:1991 -> 193.232.180.203:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:34:43.492995 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.118:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B476 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:43:02.402674 10.255.255.5 -> 192.99.83.178 +ICMP TTL:63 TOS:0xC0 ID:62576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.99.83.178:3021 -> 193.232.180.82:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B452 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:43:32.631312 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30613 -> 193.232.180.69:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:46:12.971347 10.255.255.5 -> 204.137.14.122 +ICMP TTL:63 TOS:0xC0 ID:42329 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +204.137.14.122 -> 193.232.180.136 +ICMP TTL:1 TOS:0x0 ID:49 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44456 Id: 44456 SeqNo: 48 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:46:18.015428 10.255.255.5 -> 204.137.14.122 +ICMP TTL:63 TOS:0xC0 ID:42330 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +204.137.14.122 -> 193.232.180.136 +ICMP TTL:1 TOS:0x0 ID:50 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44456 Id: 44456 SeqNo: 49 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:46:23.073776 10.255.255.5 -> 204.137.14.122 +ICMP TTL:63 TOS:0xC0 ID:42331 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +204.137.14.122 -> 193.232.180.136 +ICMP TTL:1 TOS:0x0 ID:51 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44456 Id: 44456 SeqNo: 50 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:52:37.095119 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:21019 -> 193.232.180.18:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xFCC6524F +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:53:11.946302 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.42:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:55:26.551882 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.99:80 +TCP TTL:241 TOS:0x0 ID:36015 IpLen:20 DgmLen:40 +Seq: 0xB341389C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-17:56:30.994234 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.134:443 +TCP TTL:241 TOS:0x0 ID:41351 IpLen:20 DgmLen:40 +Seq: 0xED514BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:05:40.985655 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.76:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:07:10.009334 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8462 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:22481 -> 86.110.96.158:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:08:07.265349 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30791 -> 193.232.180.247:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:08:27.406323 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30697 -> 193.232.180.153:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:10:00.173896 10.255.255.5 -> 212.71.233.247 +ICMP TTL:63 TOS:0xC0 ID:58277 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +212.71.233.247 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:5401 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 17025 Id: 16328 SeqNo: 49 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:10:00.184871 10.255.255.5 -> 212.71.233.247 +ICMP TTL:63 TOS:0xC0 ID:58278 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +212.71.233.247 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:5405 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 17024 Id: 16328 SeqNo: 50 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:10:00.195862 10.255.255.5 -> 212.71.233.247 +ICMP TTL:63 TOS:0xC0 ID:58279 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +212.71.233.247 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:5406 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 17023 Id: 16328 SeqNo: 51 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:10:15.776487 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.119:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B477 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:12:32.842472 10.255.255.5 -> 200.25.15.74 +ICMP TTL:63 TOS:0xC0 ID:47935 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +200.25.15.74 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:55 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58563 Id: 58563 SeqNo: 54 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:12:37.843490 10.255.255.5 -> 200.25.15.74 +ICMP TTL:63 TOS:0xC0 ID:47936 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +200.25.15.74 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:56 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58563 Id: 58563 SeqNo: 55 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:12:42.863303 10.255.255.5 -> 200.25.15.74 +ICMP TTL:63 TOS:0xC0 ID:47937 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +200.25.15.74 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:57 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58563 Id: 58563 SeqNo: 56 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:13:55.844971 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.92:443 +TCP TTL:241 TOS:0x0 ID:50739 IpLen:20 DgmLen:40 +Seq: 0x8A7073D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:17:35.563823 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.252:443 +TCP TTL:241 TOS:0x0 ID:45843 IpLen:20 DgmLen:40 +Seq: 0xB0410654 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:17:54.554449 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5194 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.158:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:19:37.525438 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30719 -> 193.232.180.175:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:19:47.901947 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30590 -> 193.232.180.46:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:19:49.287363 10.255.255.5 -> 190.103.186.106 +ICMP TTL:63 TOS:0xC0 ID:5080 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.103.186.106:41960 -> 193.232.180.32:33435 +UDP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 0 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:19:54.298227 10.255.255.5 -> 190.103.186.106 +ICMP TTL:63 TOS:0xC0 ID:5081 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.103.186.106:41960 -> 193.232.180.32:33435 +UDP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 0 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:19:58.389308 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.51:443 +TCP TTL:241 TOS:0x0 ID:23643 IpLen:20 DgmLen:40 +Seq: 0xBB06E9D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:21:31.242887 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.45:443 +TCP TTL:241 TOS:0x0 ID:64614 IpLen:20 DgmLen:40 +Seq: 0xB59649F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:25:17.521724 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.246:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:27:49.597705 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.203:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:29:31.862892 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.32 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 53638 Id: 53638 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:29:34.869193 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11296 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.32 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 53638 Id: 53638 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:37:59.138968 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30557 -> 193.232.180.13:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:38:23.165192 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14029 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30728 -> 193.232.180.184:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:40:29.037501 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.148:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:40:55.418596 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5198 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.6:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B406 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:42:31.732331 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.180:443 +TCP TTL:241 TOS:0x0 ID:60437 IpLen:20 DgmLen:40 +Seq: 0x497B591A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:45:13.288629 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.122:443 +TCP TTL:241 TOS:0x0 ID:44022 IpLen:20 DgmLen:40 +Seq: 0x14BC1E37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:45:52.154717 10.255.255.5 -> 47.246.48.236 +ICMP TTL:63 TOS:0xC0 ID:46259 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.48.236 -> 193.232.180.103 +ICMP TTL:1 TOS:0x0 ID:58179 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 29817 Id: 58179 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:46:36.231586 10.255.255.5 -> 114.32.68.247 +ICMP TTL:63 TOS:0xC0 ID:22282 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +114.32.68.247 -> 193.232.180.15 +ICMP TTL:1 TOS:0x0 ID:25356 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7931 Id: 25356 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:46:36.233549 10.255.255.5 -> 114.32.68.247 +ICMP TTL:63 TOS:0xC0 ID:22283 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +114.32.68.247 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:25356 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7720 Id: 25356 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:46:36.738694 10.255.255.5 -> 114.32.68.247 +ICMP TTL:63 TOS:0xC0 ID:22284 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +114.32.68.247 -> 193.232.180.52 +ICMP TTL:1 TOS:0x0 ID:25356 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7894 Id: 25356 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:46:36.742782 10.255.255.5 -> 114.32.68.247 +ICMP TTL:63 TOS:0xC0 ID:22285 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +114.32.68.247 -> 193.232.180.148 +ICMP TTL:1 TOS:0x0 ID:25356 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7798 Id: 25356 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:47:12.030426 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30601 -> 193.232.180.57:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:49:53.719947 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5199 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.7:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B407 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:49:59.919830 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5200 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.20:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B414 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:58:19.769394 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5201 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.189:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-18:59:43.122806 10.255.255.5 -> 192.99.83.178 +ICMP TTL:63 TOS:0xC0 ID:62576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.99.83.178:16939 -> 193.232.180.219:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:00:41.464879 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.51:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B433 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:27.778439 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63066 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61827 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:27.778439 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63067 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61828 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:27.778439 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63068 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61829 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:27.778439 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63069 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61830 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:27.778440 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63070 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61831 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:31.518271 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63071 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61832 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:35.228493 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63072 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61833 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:01:42.649015 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63073 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:55943 +TCP TTL:51 TOS:0x28 ID:61834 IpLen:20 DgmLen:40 +Seq: 0x9C4626CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:02:48.039953 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.114:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B472 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:03:20.528672 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30682 -> 193.232.180.138:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:05:04.235161 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57341 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.200:443 +TCP TTL:241 TOS:0x0 ID:50070 IpLen:20 DgmLen:40 +Seq: 0x96DE76E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:07:55.492039 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57342 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.140:443 +TCP TTL:241 TOS:0x0 ID:19435 IpLen:20 DgmLen:40 +Seq: 0xC8CAFEDC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:43.414526 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:49231 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:43.802969 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:4795 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:43.909321 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:61488 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.131695 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:65115 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.416586 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:48196 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.416961 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:50546 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.797982 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:716 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.798214 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:16975 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.910174 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:41849 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:44.914428 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:15340 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:45.128168 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:55886 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:45.128347 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:17058 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.412737 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:1585 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.412850 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:28855 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.799941 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:47586 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.799941 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:62454 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.905654 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:25686 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:47.907188 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:4526 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:48.128342 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:58863 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:48.128343 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:58294 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.407336 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:57431 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.407466 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:45999 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.792192 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:19240 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.792323 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:34655 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.899615 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:8660 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:52.899786 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:18602 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:53.135236 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:55986 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:53.135236 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:39161 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:57.414635 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:44457 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55458 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:57.798751 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:43891 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53620 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:57.909676 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:49064 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:62078 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:09:58.130789 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:25984 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:64117 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:10:20.716845 10.255.255.5 -> 47.110.136.82 +ICMP TTL:63 TOS:0xC0 ID:10973 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.110.136.82 -> 193.232.180.189 +ICMP TTL:1 TOS:0x0 ID:58 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 43850 Id: 43850 SeqNo: 57 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:10:21.947616 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.31:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:10:25.759150 10.255.255.5 -> 47.110.136.82 +ICMP TTL:63 TOS:0xC0 ID:10974 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.110.136.82 -> 193.232.180.189 +ICMP TTL:1 TOS:0x0 ID:59 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 43850 Id: 43850 SeqNo: 58 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:10:30.822346 10.255.255.5 -> 47.110.136.82 +ICMP TTL:63 TOS:0xC0 ID:10975 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.110.136.82 -> 193.232.180.189 +ICMP TTL:1 TOS:0x0 ID:60 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 43850 Id: 43850 SeqNo: 59 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:12:27.652727 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57343 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.185:443 +TCP TTL:241 TOS:0x0 ID:31457 IpLen:20 DgmLen:40 +Seq: 0x6F00CFE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:13:22.984728 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21880 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:44747 -> 86.110.96.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD65AF348 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:13:34.385491 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21881 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:49530 -> 86.110.96.152:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC7A7E78C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:13:42.255463 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21882 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:40482 -> 86.110.96.158:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5EE324F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:13:43.825467 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21883 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:49494 -> 86.110.96.146:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD06AF789 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:05.626369 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21884 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:60687 -> 86.110.96.157:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3072EB34 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:08.807318 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21885 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:57813 -> 86.110.96.149:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA60B3824 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:12.386586 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21886 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:34687 -> 86.110.96.154:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC6862E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:13.916661 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21887 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:49405 -> 86.110.96.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD752065E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:15.109380 10.255.255.5 -> 12.129.92.192 +ICMP TTL:63 TOS:0xC8 ID:62177 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +12.129.92.192:43559 -> 10.249.246.72:5060 +TCP TTL:1 TOS:0x88 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x39623375 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:15.867267 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21888 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:47125 -> 86.110.96.156:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C3E4FCC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:20.266483 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30791 -> 193.232.180.247:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:21.037276 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21889 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:50336 -> 86.110.96.153:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8C0B8FF5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:21.557071 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.192:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:24.117243 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21890 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:49842 -> 86.110.96.155:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC3523334 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:27.711924 10.255.255.5 -> 113.57.9.146 +ICMP TTL:63 TOS:0xC0 ID:9174 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.146 -> 193.232.180.240 +ICMP TTL:1 TOS:0x0 ID:25519 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7543 Id: 25519 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:28.177632 10.255.255.5 -> 172.169.111.244 +ICMP TTL:63 TOS:0xC0 ID:21891 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.111.244:40480 -> 86.110.96.151:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x18863CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:28.309040 10.255.255.5 -> 113.57.9.146 +ICMP TTL:63 TOS:0xC0 ID:9175 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.146 -> 193.232.180.59 +ICMP TTL:1 TOS:0x0 ID:25519 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7724 Id: 25519 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:28.519813 10.255.255.5 -> 113.57.9.146 +ICMP TTL:63 TOS:0xC0 ID:9176 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.146 -> 193.232.180.155 +ICMP TTL:1 TOS:0x0 ID:25519 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7628 Id: 25519 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:35.345173 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16768 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30615 -> 193.232.180.71:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:49.817905 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16769 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30666 -> 193.232.180.122:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:51.438233 10.255.255.5 -> 192.99.83.178 +ICMP TTL:63 TOS:0xC0 ID:62577 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.99.83.178:32413 -> 193.232.180.213:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:14:53.746155 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30697 -> 193.232.180.153:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:16:12.531496 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.252:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:17:40.414633 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57345 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.79:80 +TCP TTL:241 TOS:0x0 ID:28777 IpLen:20 DgmLen:40 +Seq: 0x76BFC476 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:18:47.457354 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57346 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.224:80 +TCP TTL:241 TOS:0x0 ID:23307 IpLen:20 DgmLen:40 +Seq: 0x2BA6EFBB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:20:15.541150 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.206:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:20:35.681654 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.80:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B450 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:23:27.678199 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57347 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.154:443 +TCP TTL:241 TOS:0x0 ID:5950 IpLen:20 DgmLen:40 +Seq: 0xBC61A21F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:25:03.499471 10.255.255.5 -> 139.84.134.245 +ICMP TTL:63 TOS:0xC0 ID:8522 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.84.134.245 -> 193.232.180.203 +ICMP TTL:1 TOS:0x0 ID:58 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54794 Id: 54794 SeqNo: 57 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:25:06.000410 10.255.255.5 -> 185.118.164.158 +ICMP TTL:63 TOS:0xC0 ID:21202 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.118.164.158 -> 193.232.180.245 +ICMP TTL:1 TOS:0x0 ID:7957 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25100 Id: 7957 SeqNo: 8 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:25:08.500765 10.255.255.5 -> 139.84.134.245 +ICMP TTL:63 TOS:0xC0 ID:8523 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.84.134.245 -> 193.232.180.203 +ICMP TTL:1 TOS:0x0 ID:59 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54794 Id: 54794 SeqNo: 58 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:25:13.500777 10.255.255.5 -> 139.84.134.245 +ICMP TTL:63 TOS:0xC0 ID:8524 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.84.134.245 -> 193.232.180.203 +ICMP TTL:1 TOS:0x0 ID:60 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54794 Id: 54794 SeqNo: 59 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:25:34.793294 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57348 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.230:443 +TCP TTL:241 TOS:0x0 ID:25087 IpLen:20 DgmLen:40 +Seq: 0x5392D4A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:28:42.915912 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30779 -> 193.232.180.235:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:29:53.793375 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.56:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B438 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:35:09.121343 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30719 -> 193.232.180.175:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:35:26.293718 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30590 -> 193.232.180.46:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:40:42.178612 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.137:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B489 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:41:24.600364 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.155:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:42:03.186304 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30678 -> 193.232.180.134:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:44:43.818193 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.119:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B477 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:45:19.489597 10.255.255.5 -> 192.99.83.178 +ICMP TTL:63 TOS:0xC0 ID:62576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.99.83.178:7336 -> 86.110.96.148:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:45:19.989515 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.248:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:45:53.942339 10.255.255.5 -> 47.246.20.208 +ICMP TTL:63 TOS:0xC0 ID:7866 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.20.208 -> 193.232.180.71 +ICMP TTL:1 TOS:0x0 ID:11433 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 51385 Id: 11433 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:51:23.233693 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57349 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.24:80 +TCP TTL:241 TOS:0x0 ID:57187 IpLen:20 DgmLen:40 +Seq: 0xE3AC6B2B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:51:36.534146 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5214 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.134:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B486 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:54:33.361046 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5215 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.82:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B452 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:56:05.667462 10.255.255.5 -> 104.152.223.22 +ICMP TTL:63 TOS:0xC0 ID:4600 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.152.223.22 -> 193.232.180.5 +ICMP TTL:1 TOS:0x0 ID:5604 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 27693 Id: 5604 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:56:13.155856 10.255.255.5 -> 104.152.223.22 +ICMP TTL:63 TOS:0xC0 ID:4601 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.152.223.22 -> 193.232.180.35 +ICMP TTL:1 TOS:0x0 ID:5604 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 27663 Id: 5604 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:56:14.218832 10.255.255.5 -> 104.152.223.22 +ICMP TTL:63 TOS:0xC0 ID:4602 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.152.223.22 -> 193.232.180.79 +ICMP TTL:1 TOS:0x0 ID:5604 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 27619 Id: 5604 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:56:21.328058 10.255.255.5 -> 104.152.223.22 +ICMP TTL:63 TOS:0xC0 ID:4603 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.152.223.22 -> 193.232.180.190 +ICMP TTL:1 TOS:0x0 ID:5604 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 27508 Id: 5604 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:51.138848 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12858 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44211 -> 193.232.180.240:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95D6B770 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:51.172467 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30672 -> 193.232.180.128:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:52.639024 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12859 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36841 -> 193.232.180.7:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97F75CEF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:53.028870 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12860 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51345 -> 193.232.180.204:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74C0BD11 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:53.189149 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12861 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51943 -> 193.232.180.161:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x37EEC96F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:54.149139 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12862 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:32802 -> 193.232.180.66:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x59267164 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:54.998921 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12863 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:34778 -> 193.232.180.11:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE211D6D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:55.709066 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12864 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56226 -> 193.232.180.165:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5E8F978 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:56.389208 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12865 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44962 -> 193.232.180.83:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90F28DC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:56.459267 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12866 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56556 -> 193.232.180.100:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF15D70A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:56.859137 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12867 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:37808 -> 193.232.180.40:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D9B445 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:58.019050 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12868 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47344 -> 193.232.180.94:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE04AB126 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:58.629138 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12869 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39596 -> 193.232.180.231:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2DF343D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:58.759040 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12870 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50730 -> 193.232.180.244:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD540CCE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:57:59.739197 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12871 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:54173 -> 193.232.180.45:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72838367 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:00.129377 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12872 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46042 -> 193.232.180.37:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5578F8FD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:00.219213 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12873 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56604 -> 193.232.180.115:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1956A31 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:00.489222 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12874 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44417 -> 193.232.180.52:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D2DA59B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:00.659263 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12875 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49676 -> 193.232.180.19:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8918C38E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:01.639213 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12876 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56803 -> 193.232.180.253:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCB2B151D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:01.949439 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12877 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47615 -> 193.232.180.36:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93A5E15E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:02.089450 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12878 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57024 -> 193.232.180.239:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29E2310F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:02.879277 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12879 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55547 -> 193.232.180.136:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4855A7F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:04.189457 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12880 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55580 -> 193.232.180.73:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AA4C9C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:05.369556 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12881 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41104 -> 193.232.180.80:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE73F558 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:06.089358 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12882 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59959 -> 193.232.180.164:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93D34DFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:06.479366 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12883 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45600 -> 193.232.180.196:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9BDD63FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:06.559260 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12884 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57235 -> 193.232.180.71:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x45EFB9A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:07.239486 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12885 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44859 -> 193.232.180.180:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC62FDD9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:07.309383 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12886 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:54984 -> 193.232.180.189:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9D67A83 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:07.739567 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12887 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33846 -> 193.232.180.97:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5625067B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:08.269464 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12888 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52288 -> 193.232.180.236:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D6A7CC4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:08.569528 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12889 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35762 -> 193.232.180.118:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDACEC7B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:08.629446 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12890 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49800 -> 193.232.180.87:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1018D4BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:09.259646 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12891 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38883 -> 193.232.180.212:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6ADB7873 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:10.149590 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12892 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45470 -> 193.232.180.194:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8899F1FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:10.179525 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12893 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46927 -> 193.232.180.120:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7A33B67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:10.809724 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12894 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44035 -> 193.232.180.242:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF083495B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:12.759658 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12895 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51796 -> 193.232.180.223:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB421B1E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:13.699690 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12896 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45153 -> 193.232.180.209:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2DDEFD36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:14.849699 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12897 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45277 -> 193.232.180.86:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x259B4ED0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:15.109787 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12898 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51131 -> 193.232.180.116:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2A041DB5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:15.159715 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12899 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:48219 -> 193.232.180.218:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2CAF9D56 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:15.829831 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12900 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:53694 -> 193.232.180.30:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8DB1FD03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:15.999779 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12901 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45670 -> 193.232.180.151:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x559FFBD1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:16.099771 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12902 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47415 -> 193.232.180.28:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9BA35A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:16.299865 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12903 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50403 -> 193.232.180.110:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x972CA690 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:16.399900 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12904 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38821 -> 193.232.180.232:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63B15A5D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:17.289801 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12905 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38291 -> 193.232.180.12:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D2E0117 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:18.199922 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12906 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38987 -> 193.232.180.174:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x346A09B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:18.569999 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12907 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56017 -> 193.232.180.61:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B2AD678 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:19.279896 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12908 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56475 -> 193.232.180.202:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1392AE7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:21.019992 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12909 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39511 -> 193.232.180.57:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DA68381 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:21.940001 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12910 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59569 -> 193.232.180.221:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF748B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:22.380289 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12911 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49273 -> 193.232.180.125:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x761D830F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:22.850028 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12912 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42210 -> 193.232.180.114:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6C71B20C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:23.430260 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12913 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35280 -> 193.232.180.144:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95411552 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:24.580182 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12914 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45455 -> 193.232.180.249:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1229C534 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:24.700167 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12915 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49735 -> 193.232.180.210:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB176DDAC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:25.170271 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12917 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55201 -> 193.232.180.21:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA9246C75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:25.170272 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12916 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39600 -> 193.232.180.33:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF71077FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:25.840364 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12918 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46374 -> 193.232.180.150:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF20426C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:26.140245 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12919 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36920 -> 193.232.180.247:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE00C3453 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:26.580245 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12920 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46068 -> 193.232.180.60:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x505D72A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:27.240165 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12921 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38094 -> 193.232.180.187:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA7808171 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:28.220404 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12922 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36393 -> 193.232.180.38:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x301B7F5A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:28.350259 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12923 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60292 -> 193.232.180.129:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x123CB2A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:28.870337 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12924 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51930 -> 193.232.180.32:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B53C0DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:29.730372 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12925 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38936 -> 193.232.180.173:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB1D14FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:30.550590 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12926 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:43465 -> 193.232.180.254:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF70212A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:31.210339 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12927 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60384 -> 193.232.180.197:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53166C38 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:32.490448 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12928 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:48433 -> 193.232.180.191:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF0EB0C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:32.820385 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12929 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38677 -> 193.232.180.128:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB3AFBE0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:34.060566 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12930 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:43457 -> 193.232.180.130:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD1262446 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:35.180568 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12931 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36595 -> 193.232.180.252:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84BBE0F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:35.420755 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12932 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47614 -> 193.232.180.47:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78DD4ACE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:35.730562 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12933 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33201 -> 193.232.180.146:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B793BDB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:36.460670 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12934 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:53778 -> 193.232.180.148:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60634717 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:36.630866 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12935 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:43240 -> 193.232.180.214:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x846E5324 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:36.650572 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12936 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56861 -> 193.232.180.234:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90069235 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:37.100728 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12937 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46850 -> 193.232.180.89:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9A7BBE8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:37.460640 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12938 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:48297 -> 193.232.180.139:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD241283 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:37.510677 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12939 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:34823 -> 193.232.180.93:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x827734B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:38.170704 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12940 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35262 -> 193.232.180.20:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50260656 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:40.810812 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12941 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55806 -> 193.232.180.79:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x721B5BFF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:41.090722 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12942 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33108 -> 193.232.180.14:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA00D02 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:41.731038 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12943 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35330 -> 193.232.180.141:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9C421955 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:41.860862 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12944 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58754 -> 193.232.180.3:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9F751931 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:42.950956 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12945 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:53744 -> 193.232.180.99:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D743EFB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:42.980872 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12946 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52161 -> 193.232.180.156:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6DF8934 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:43.770929 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12947 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60636 -> 193.232.180.245:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE5EBE873 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:43.830835 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12948 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44511 -> 193.232.180.56:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78F5BBB5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:44.590984 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12949 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39787 -> 193.232.180.203:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB3F48AFE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:45.410965 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12950 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:37890 -> 193.232.180.2:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97AC08EF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:46.330945 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12951 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55435 -> 193.232.180.137:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x528923ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:46.890987 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12952 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33854 -> 193.232.180.17:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD64B6D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:47.051160 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12953 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50387 -> 193.232.180.101:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93788973 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:47.711068 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12954 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47338 -> 193.232.180.42:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF000CE95 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:47.801033 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12955 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52764 -> 193.232.180.250:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4E87F5AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:50.081180 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12956 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:37555 -> 193.232.180.238:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9A39C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:50.281156 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12957 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35818 -> 193.232.180.176:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x848D774C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:50.411199 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12958 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47639 -> 193.232.180.81:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1026D22A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:50.911148 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12959 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45052 -> 193.232.180.54:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5030FCD1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:51.411162 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12960 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41290 -> 193.232.180.92:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74FCE5D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:52.691172 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12961 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38207 -> 193.232.180.155:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x481A47BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:52.791204 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12962 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55471 -> 193.232.180.123:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x385738B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:52.991226 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12963 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45565 -> 193.232.180.186:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6A258E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:53.391490 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12964 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35045 -> 193.232.180.188:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCAE65BDA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:53.791415 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12965 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51404 -> 193.232.180.15:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x495D40C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:54.231479 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12966 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60999 -> 193.232.180.134:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA47E91CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:54.301270 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12967 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38607 -> 193.232.180.48:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1388DDD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:54.821510 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12968 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47364 -> 193.232.180.159:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6A6C7D2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:54.981420 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12969 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41371 -> 193.232.180.96:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE350B08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:55.221519 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12970 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33400 -> 193.232.180.135:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x25D19C31 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:55.381357 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12971 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38152 -> 193.232.180.111:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7A91F88 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.351424 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12972 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50764 -> 193.232.180.113:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x577120DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.711370 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12973 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:43190 -> 193.232.180.50:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x471A3024 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.731381 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12974 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44452 -> 193.232.180.65:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56937F2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.771575 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12975 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51937 -> 193.232.180.241:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F47D022 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.821373 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12976 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:53340 -> 193.232.180.106:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4A1910DC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:56.971494 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12977 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47111 -> 193.232.180.31:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x25ECB4EE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:58.231478 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12978 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51326 -> 193.232.180.108:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB6758372 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:58.291429 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12979 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39605 -> 193.232.180.119:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8AAA0F9D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:58:59.381521 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12980 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46778 -> 193.232.180.207:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56CB4978 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:00.411499 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12981 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58134 -> 193.232.180.170:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72256EC8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:01.121596 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12982 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51357 -> 193.232.180.228:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC4F69751 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:02.501869 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12983 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42188 -> 193.232.180.39:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD082948B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:02.981725 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12984 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59335 -> 193.232.180.233:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6C0A1632 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:03.481768 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12985 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52155 -> 193.232.180.98:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x390B9C64 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:04.401755 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12986 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:40135 -> 193.232.180.13:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3296F826 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:05.191799 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12987 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47891 -> 193.232.180.9:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60B4152A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:05.231927 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12988 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59895 -> 193.232.180.230:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6DA9DE15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:05.451788 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12989 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51150 -> 193.232.180.104:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x341CE32C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:05.872002 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12990 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44067 -> 193.232.180.49:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7EE5DA4A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:05.951684 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12991 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39871 -> 193.232.180.69:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9D955B9B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:08.871837 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12992 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56627 -> 193.232.180.171:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA5BBF23 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:09.221935 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12993 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44660 -> 193.232.180.192:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC405012 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:09.904936 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12994 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41613 -> 193.232.180.63:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA84D1D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:10.402178 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12995 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57169 -> 193.232.180.84:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE2BB12E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:11.061935 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12996 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47756 -> 193.232.180.227:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD4C3EAB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:11.382024 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12997 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:43965 -> 193.232.180.143:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFCF8A32 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:11.812029 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12998 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35969 -> 193.232.180.147:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2171B12D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:12.112230 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:12999 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:54678 -> 193.232.180.175:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FFA42C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:13.192152 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13000 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42309 -> 193.232.180.122:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B382992 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:14.042142 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13001 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:54908 -> 193.232.180.162:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1458FD2D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:14.332324 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13002 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41031 -> 193.232.180.179:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD03ED1A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:15.192129 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13003 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36549 -> 193.232.180.167:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69737035 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:17.022351 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13004 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57256 -> 193.232.180.70:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6737EB77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:17.182274 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13005 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35019 -> 193.232.180.193:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA29248F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:17.562303 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13006 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57667 -> 193.232.180.237:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5F2D52E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:17.762320 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13007 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36804 -> 193.232.180.85:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5EAC0015 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:17.842381 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13008 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52543 -> 193.232.180.152:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x462ADBFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:18.282183 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13009 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45375 -> 193.232.180.154:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAF551F4D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:19.132381 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13010 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36245 -> 193.232.180.82:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1A356E34 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:19.292210 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13011 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46636 -> 193.232.180.46:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB29A90B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:19.382362 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13012 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52721 -> 193.232.180.226:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x958B1412 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:20.102333 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13013 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41118 -> 193.232.180.51:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x22F2F1A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:20.582527 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13014 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55883 -> 193.232.180.201:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2DAF0F89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:21.102450 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13015 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39219 -> 193.232.180.251:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x930AAF4F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:21.652402 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13016 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50909 -> 193.232.180.183:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x169C8119 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:21.752591 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13017 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60665 -> 193.232.180.225:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2204043 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:22.282344 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13018 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:40168 -> 193.232.180.133:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED56DB98 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:22.412591 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13019 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49727 -> 193.232.180.58:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB1A4C4F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:22.522515 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13020 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60549 -> 193.232.180.246:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9FFF4214 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:22.962460 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13021 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57060 -> 193.232.180.35:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x75E9C8D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:23.012405 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13022 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33801 -> 193.232.180.168:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE9E92AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:23.542421 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13023 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51109 -> 193.232.180.178:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21F6B971 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:23.932499 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13024 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47931 -> 193.232.180.169:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6043CD29 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:24.022564 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13025 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60795 -> 193.232.180.190:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC63B185A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:24.542609 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13026 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44279 -> 193.232.180.121:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD706E551 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:24.672474 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13027 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:37117 -> 193.232.180.59:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1844A146 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:25.262659 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13028 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58914 -> 193.232.180.44:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1AA905C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:25.712563 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13029 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:37222 -> 193.232.180.206:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x18D2E676 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:25.892381 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13030 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49017 -> 193.232.180.75:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3EAC7169 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:26.182620 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13031 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57918 -> 193.232.180.4:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBAEEA8C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:26.522513 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13032 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46520 -> 193.232.180.126:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDAD4AD47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:26.542671 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13033 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35746 -> 193.232.180.213:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46B8ACFF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:26.922604 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13034 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38245 -> 193.232.180.8:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6D15705 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:27.242745 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13035 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52094 -> 193.232.180.112:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5FF8A5E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:27.292529 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13036 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:53764 -> 193.232.180.23:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF08BEA9A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:27.472544 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13037 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:52542 -> 193.232.180.142:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4BFE5778 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:27.612548 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13038 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50546 -> 193.232.180.107:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xABE643DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:28.212632 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13039 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47105 -> 193.232.180.41:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23477BAF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:28.262587 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13040 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42119 -> 193.232.180.215:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x34322A9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:28.812669 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13041 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59579 -> 193.232.180.181:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29A9444B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:30.682638 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13042 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:36862 -> 193.232.180.216:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71F85C47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:31.122708 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13043 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51009 -> 193.232.180.198:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x974B5B0C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:31.172713 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13044 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60238 -> 193.232.180.195:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7479E7CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:31.732745 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13045 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60392 -> 193.232.180.43:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA89C9E41 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:32.392750 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13046 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:48474 -> 193.232.180.153:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE98FA889 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:34.142967 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13047 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42945 -> 193.232.180.182:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8CB684AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:34.162852 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13048 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45746 -> 193.232.180.24:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35887253 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:35.202898 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13049 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57368 -> 193.232.180.172:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFCC9BDCB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:35.213036 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13050 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39632 -> 193.232.180.235:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB529298D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:35.612869 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13051 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56345 -> 193.232.180.62:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53F067A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:35.902907 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13052 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47250 -> 193.232.180.109:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF5F3B723 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:36.042934 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13053 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:34332 -> 193.232.180.145:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x371B36D2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:38.683032 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13054 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58055 -> 193.232.180.217:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5BAE680E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:39.953262 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13055 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59770 -> 193.232.180.10:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2F1283E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:40.213143 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13056 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59553 -> 193.232.180.185:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7D500543 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:40.213144 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13057 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47225 -> 193.232.180.105:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69FFB82A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:40.563220 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13058 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:40700 -> 193.232.180.91:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD73D73E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:40.663279 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13059 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41054 -> 193.232.180.200:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD04C5C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:41.143129 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13060 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42343 -> 193.232.180.127:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD63C76D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:41.793365 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13061 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:54466 -> 193.232.180.132:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE017A22C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:42.013267 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13062 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:41994 -> 193.232.180.6:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x47222ABF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:42.403321 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13063 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39970 -> 193.232.180.205:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5BA9D9A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:42.593368 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13064 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33908 -> 193.232.180.5:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x343B8E30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:42.873231 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13065 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:51111 -> 193.232.180.103:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B9503ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:43.143239 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13066 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58788 -> 193.232.180.102:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x38410BFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:44.233283 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13067 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:58100 -> 193.232.180.117:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA39EB5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:44.613234 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13068 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45876 -> 193.232.180.78:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB1E42C49 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:44.703342 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13069 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38908 -> 193.232.180.166:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0FCA484 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:44.723275 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13070 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60538 -> 193.232.180.158:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1A9A4631 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:45.263371 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13071 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46348 -> 193.232.180.160:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78221C85 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:45.453313 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13072 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33104 -> 193.232.180.16:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B7F2D9C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:45.533529 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13073 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49772 -> 193.232.180.22:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E71F2C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:45.683541 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13074 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:46342 -> 193.232.180.29:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3B8DF09A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:46.593311 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13075 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38548 -> 193.232.180.25:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9E58F66D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:47.023600 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13076 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47556 -> 193.232.180.72:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B01B8D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:47.683441 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13077 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42325 -> 193.232.180.184:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C08CCBA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:48.253573 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13078 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59391 -> 193.232.180.157:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB7C0B35F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:48.603479 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13079 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:55512 -> 193.232.180.219:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C6D3142 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:50.073543 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13080 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50544 -> 193.232.180.88:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA497E45 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:50.313523 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13081 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50675 -> 193.232.180.74:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A682962 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:50.907408 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13082 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:39885 -> 193.232.180.163:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEEDB0CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:51.443490 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13083 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:59531 -> 193.232.180.220:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E9DEE1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:51.993759 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13084 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42012 -> 193.232.180.131:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5DFAF808 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:52.043591 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13085 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:38189 -> 193.232.180.177:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x70864E54 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:52.773669 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13086 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33841 -> 193.232.180.77:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3879F8B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:53.233811 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13087 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60560 -> 193.232.180.95:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B3806D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:53.423597 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13088 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:44326 -> 193.232.180.243:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53DABD24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:54.133647 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13089 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57850 -> 193.232.180.124:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9C85546 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:54.703598 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13090 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:47594 -> 193.232.180.211:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A021481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:54.953604 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13091 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:57392 -> 193.232.180.222:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8941C144 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:54.973691 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13092 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50346 -> 193.232.180.199:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5733BEBA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:55.783663 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13093 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:33324 -> 193.232.180.26:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x254B40A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:55.893736 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13094 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35586 -> 193.232.180.67:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD640C03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:55.913913 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13095 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60093 -> 193.232.180.208:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE0120ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:56.013885 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13096 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42118 -> 193.232.180.229:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6970BD02 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:56.463677 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13097 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:42363 -> 193.232.180.140:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E2F9778 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:57.893768 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13098 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:49325 -> 193.232.180.149:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA59D5E2F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:58.583804 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13099 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:45213 -> 193.232.180.224:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA2A063B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-19:59:59.763869 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13100 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50204 -> 193.232.180.90:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3CE2309 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:00:00.293914 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13101 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:60499 -> 193.232.180.76:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC2531052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:00:01.343907 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13102 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:50635 -> 193.232.180.27:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB7584973 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:00:01.673888 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13103 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:48230 -> 193.232.180.138:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x55F9464A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:00:02.674016 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13104 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:35513 -> 193.232.180.248:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC48BAD3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:00:03.104016 10.255.255.5 -> 172.202.246.146 +ICMP TTL:63 TOS:0xC0 ID:13105 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.202.246.146:56499 -> 193.232.180.53:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x200976FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:03:11.531427 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5216 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.131:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B483 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:04:47.005031 10.255.255.5 -> 8.38.121.219 +ICMP TTL:63 TOS:0xC0 ID:19961 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.38.121.219 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:14929 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 29263 Id: 14929 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:06:11.668450 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5217 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.198:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:09:13.032916 10.255.255.5 -> 163.171.132.43 +ICMP TTL:63 TOS:0xC0 ID:40629 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.132.43 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:18152 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 13264 Id: 18610 SeqNo: 27497 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:09:14.029028 10.255.255.5 -> 163.171.132.43 +ICMP TTL:63 TOS:0xC0 ID:40630 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.132.43 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:51093 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 49284 Id: 32667 SeqNo: 42955 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:09:17.034182 10.255.255.5 -> 163.171.132.43 +ICMP TTL:63 TOS:0xC0 ID:40631 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.132.43 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:19306 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 13254 Id: 18610 SeqNo: 27507 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:09:18.032315 10.255.255.5 -> 163.171.132.43 +ICMP TTL:63 TOS:0xC0 ID:40632 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.132.43 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:53578 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 49275 Id: 32667 SeqNo: 42964 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:15:34.360613 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5218 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.23:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B417 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:16:20.170710 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30601 -> 193.232.180.57:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:18:05.136604 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57350 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.4:443 +TCP TTL:241 TOS:0x0 ID:10063 IpLen:20 DgmLen:40 +Seq: 0xEF9692F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:18:36.878420 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64083 +TCP TTL:50 TOS:0x0 ID:47414 IpLen:20 DgmLen:91 DF +Seq: 0x6CAA194E +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:18:36.878420 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64083 +TCP TTL:50 TOS:0x0 ID:47415 IpLen:20 DgmLen:52 DF +Seq: 0x6CAA1975 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:18:36.878421 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64083 +TCP TTL:50 TOS:0x0 ID:47416 IpLen:20 DgmLen:52 DF +Seq: 0x6CAA1975 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:18:36.878421 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64083 +TCP TTL:50 TOS:0x0 ID:47417 IpLen:20 DgmLen:91 DF +Seq: 0x6CAA194E +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:22:27.856720 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5219 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 86.110.96.148:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:23:40.703362 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30787 -> 193.232.180.243:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:28:07.150208 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.142:443 +TCP TTL:241 TOS:0x0 ID:18126 IpLen:20 DgmLen:40 +Seq: 0x9552F3FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:28:20.380714 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:60632 -> 86.110.96.154:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42797545 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:28:35.981290 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53356 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:50314 -> 86.110.96.151:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x55979334 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:28:37.241349 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:43255 -> 86.110.96.153:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x16DDE14E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:28:37.691217 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:39634 -> 86.110.96.156:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88FAA7E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:29:15.942740 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:36339 -> 86.110.96.152:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E29465C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:29:29.093257 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:43584 -> 86.110.96.155:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1CEBAC1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:29:40.823715 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:57016 -> 86.110.96.147:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F44B8C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:29:44.823839 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:44680 -> 86.110.96.146:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9142D762 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:30:01.284652 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:48685 -> 86.110.96.158:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA8DA45A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:30:04.274590 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5220 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.203:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:30:20.545406 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:43590 -> 86.110.96.157:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7609383F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:30:28.445742 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:42470 -> 86.110.96.149:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53CD65EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:30:31.775701 10.255.255.5 -> 172.206.143.165 +ICMP TTL:63 TOS:0xC0 ID:53366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.165:47886 -> 86.110.96.148:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6235D6DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:32:01.579378 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:8121 -> 193.232.180.91:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:35:46.623192 10.255.255.5 -> 13.0.35.128 +ICMP TTL:63 TOS:0xC8 ID:10967 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.0.35.128:41175 -> 10.249.246.72:5060 +TCP TTL:1 TOS:0x88 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD86650B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:36:29.111594 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30667 -> 193.232.180.123:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:36:44.955507 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30682 -> 193.232.180.138:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:36:52.574602 10.255.255.5 -> 193.232.180.118 +ICMP TTL:63 TOS:0xC0 ID:38124 IpLen:20 DgmLen:116 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.232.180.118:50000 -> 193.232.180.119:53 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:88 +Len: 60 Csum: 0 +(60 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:38:08.673527 10.255.255.5 -> 172.172.30.220 +ICMP TTL:63 TOS:0xC0 ID:10508 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.220:20675 -> 193.232.180.179:80 +TCP TTL:45 TOS:0x0 ID:13261 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:52:27.387774 10.255.255.5 -> 118.89.72.86 +ICMP TTL:63 TOS:0xC0 ID:27712 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.89.72.86:36889 -> 193.232.180.75:33435 +UDP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 60803 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:52:28.437749 10.255.255.5 -> 118.89.72.86 +ICMP TTL:63 TOS:0xC0 ID:27713 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.89.72.86:36889 -> 193.232.180.75:33435 +UDP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 60804 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:52:31.897003 10.255.255.5 -> 118.89.72.86 +ICMP TTL:63 TOS:0xC0 ID:27714 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.89.72.86:36889 -> 193.232.180.24:33435 +UDP TTL:1 TOS:0x0 ID:26 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 60807 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:52:32.932149 10.255.255.5 -> 118.89.72.86 +ICMP TTL:63 TOS:0xC0 ID:27715 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.89.72.86:36889 -> 193.232.180.24:33435 +UDP TTL:1 TOS:0x0 ID:27 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 60808 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:53:07.958957 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5221 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.101:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B465 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:55:16.253529 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.144:443 +TCP TTL:241 TOS:0x0 ID:36501 IpLen:20 DgmLen:40 +Seq: 0x926F3BBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:55:20.613814 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5222 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.67:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B443 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:55:25.634075 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5223 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.254:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:56:13.745926 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57351 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.237:80 +TCP TTL:241 TOS:0x0 ID:11015 IpLen:20 DgmLen:40 +Seq: 0xF0729FBA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:56:45.500532 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30615 -> 193.232.180.71:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:57:09.965586 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30666 -> 193.232.180.122:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-20:59:23.233547 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5224 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.236:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:00:45.516685 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57352 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.196:80 +TCP TTL:241 TOS:0x0 ID:32326 IpLen:20 DgmLen:40 +Seq: 0x66B7CAD2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:01:44.938863 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5225 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.158:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:04:03.568736 10.255.255.5 -> 172.105.218.40 +ICMP TTL:63 TOS:0xC0 ID:29921 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.105.218.40 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:28285 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 12011 Id: 21330 SeqNo: 61 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:04:03.581628 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30630 -> 193.232.180.86:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:04:03.645677 10.255.255.5 -> 172.105.218.40 +ICMP TTL:63 TOS:0xC0 ID:29922 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.105.218.40 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:28286 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 12010 Id: 21330 SeqNo: 62 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:04:03.648534 10.255.255.5 -> 172.105.218.40 +ICMP TTL:63 TOS:0xC0 ID:29923 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.105.218.40 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:28287 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 12009 Id: 21330 SeqNo: 63 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:04:04.149620 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30698 -> 193.232.180.154:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 9 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:07:14.411645 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57353 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.238:443 +TCP TTL:241 TOS:0x0 ID:49994 IpLen:20 DgmLen:40 +Seq: 0x39AD761F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:09:29.856988 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57354 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.93:80 +TCP TTL:241 TOS:0x0 ID:36830 IpLen:20 DgmLen:40 +Seq: 0x78A73BD3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:09:29.856989 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5226 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.238:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:10:09.148758 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5227 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.145:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B491 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:15:22.221076 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5228 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.152:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6098 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:16:51.874243 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.16:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B410 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:17:20.535373 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.39:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B427 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:18:14.107510 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.137:443 +TCP TTL:241 TOS:0x0 ID:22793 IpLen:20 DgmLen:40 +Seq: 0x5ED5EC3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:18:30.238285 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.96:443 +TCP TTL:241 TOS:0x0 ID:50969 IpLen:20 DgmLen:40 +Seq: 0xCCB072C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:19:55.191395 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5231 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.173:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:21:01.744167 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5232 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.227:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:21:02.122255 10.255.255.5 -> 112.95.75.94 +ICMP TTL:63 TOS:0xC0 ID:12605 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +112.95.75.94 -> 193.232.180.122 +ICMP TTL:1 TOS:0x0 ID:4639 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 28541 Id: 4639 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:22:20.857136 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5233 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.129:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:28:50.682542 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5234 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.56:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B438 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:29:16.437480 10.255.255.5 -> 113.137.46.18 +ICMP TTL:63 TOS:0xC0 ID:17407 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.137.46.18 -> 193.232.180.36 +ICMP TTL:1 TOS:0x0 ID:7051 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26215 Id: 7051 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:29:16.437869 10.255.255.5 -> 113.137.46.18 +ICMP TTL:63 TOS:0xC0 ID:17408 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.137.46.18 -> 193.232.180.15 +ICMP TTL:1 TOS:0x0 ID:7051 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26236 Id: 7051 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:29:16.444391 10.255.255.5 -> 113.137.46.18 +ICMP TTL:63 TOS:0xC0 ID:17409 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.137.46.18 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:7051 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26058 Id: 7051 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:29:16.456148 10.255.255.5 -> 113.137.46.18 +ICMP TTL:63 TOS:0xC0 ID:17410 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.137.46.18 -> 193.232.180.105 +ICMP TTL:1 TOS:0x0 ID:7051 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26146 Id: 7051 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:29:35.543971 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5235 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.146:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:30:51.947217 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:36374 -> 86.110.96.155:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4A20857F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:08.047689 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:40625 -> 86.110.96.147:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E8EF6CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:08.477719 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.240:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:13.007982 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:47395 -> 86.110.96.154:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED5EB3B3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:18.828414 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:59036 -> 86.110.96.148:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3322D949 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:42.179040 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:60300 -> 86.110.96.156:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5397EE5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:46.239523 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30592 -> 193.232.180.48:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:47.054998 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30665 -> 193.232.180.121:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:51.469513 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:38439 -> 86.110.96.151:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB6A3EACC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:54.289708 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:41820 -> 86.110.96.152:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19C2C41E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:31:58.959852 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:45506 -> 86.110.96.146:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB941A260 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:32:12.770335 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:55006 -> 86.110.96.158:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA17B0926 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:32:15.750429 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:42079 -> 86.110.96.157:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51E25DC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:32:31.781037 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:39181 -> 86.110.96.153:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE0482260 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:32:47.721665 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5237 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.153:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B499 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:32:49.631824 10.255.255.5 -> 172.169.207.62 +ICMP TTL:63 TOS:0xC0 ID:2336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.62:38266 -> 86.110.96.149:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBDF77D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:33:39.213379 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30750 -> 193.232.180.206:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:34:25.695646 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5238 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.173:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:37:18.280990 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12592 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30678 -> 193.232.180.134:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:07.694348 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6085 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36461 -> 193.232.180.181:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4143A89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:08.774318 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6086 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43891 -> 193.232.180.88:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6CF3C412 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:09.144298 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6087 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42983 -> 193.232.180.27:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21B0A846 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:09.154177 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6088 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46217 -> 193.232.180.34:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5421B77C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:09.685194 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6089 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36670 -> 193.232.180.47:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AC045E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:11.784318 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6090 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44271 -> 193.232.180.7:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B5EB786 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:12.404681 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6091 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42143 -> 193.232.180.85:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CD4F37C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:12.784415 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6092 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48378 -> 193.232.180.45:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9A4DAA63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:12.874515 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6093 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43848 -> 193.232.180.36:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5ED5CEED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:13.784461 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6094 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55599 -> 193.232.180.81:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4252876E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:14.394435 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6095 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36972 -> 193.232.180.194:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1DCC4A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:14.644461 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6096 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38781 -> 193.232.180.63:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x86DDB4D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:14.784478 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6097 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:35073 -> 193.232.180.234:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7FA9D1F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:16.344543 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6098 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56084 -> 193.232.180.202:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2F1A7874 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:16.994581 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6099 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54724 -> 193.232.180.248:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECF1EEF4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:17.434600 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6100 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59251 -> 193.232.180.84:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6BFDE428 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:17.994872 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6101 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50432 -> 193.232.180.250:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x67780E4D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:18.154611 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6102 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58278 -> 193.232.180.49:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8AC5F03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:18.674659 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6103 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:60401 -> 193.232.180.121:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3CFAF0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:19.414790 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6104 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58855 -> 193.232.180.41:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A95D779 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:19.794691 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6105 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48408 -> 193.232.180.75:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x75FF56F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:20.894698 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6106 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54094 -> 193.232.180.90:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE366B648 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:21.564731 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6107 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40806 -> 193.232.180.106:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB860A2CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:22.695058 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6108 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38686 -> 193.232.180.115:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8CC23A37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:22.934795 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6109 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38206 -> 193.232.180.100:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x579F338D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:23.654837 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6110 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:35867 -> 193.232.180.214:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4487F641 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:23.674873 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6111 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55388 -> 193.232.180.151:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8DFDF2CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:25.694876 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6112 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50062 -> 193.232.180.66:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7519458F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:25.724974 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6113 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43139 -> 193.232.180.155:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE961A85F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:25.805017 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6114 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45758 -> 193.232.180.209:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAABAB3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:26.264999 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6115 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54121 -> 193.232.180.21:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE50F3906 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:27.374887 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6116 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53312 -> 193.232.180.183:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x262EB18F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:27.735049 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6117 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57172 -> 193.232.180.227:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE23E182C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:28.645008 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6118 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43230 -> 193.232.180.140:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC5C3E27 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:29.625272 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6119 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42063 -> 193.232.180.188:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x68A327E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:29.895209 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6120 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48982 -> 193.232.180.99:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AACC505 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:29.915016 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6121 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36381 -> 193.232.180.91:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A3E8C1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:30.305052 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6122 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44411 -> 193.232.180.138:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FD45D73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:32.005173 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6123 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54826 -> 193.232.180.161:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96463B32 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:32.235398 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6124 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57262 -> 193.232.180.72:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x747EB7FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:32.735136 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6125 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55634 -> 193.232.180.9:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A7E3D39 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:33.295324 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6126 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44703 -> 193.232.180.160:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x270EA9DD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:33.905418 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6127 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:47889 -> 193.232.180.144:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x94C8E133 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:34.395229 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6128 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39711 -> 193.232.180.243:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AB8B33 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:34.415356 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6129 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55716 -> 193.232.180.116:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8BBFC828 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:34.875355 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6130 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59165 -> 193.232.180.137:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFC310FA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:35.155349 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6131 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:35827 -> 193.232.180.245:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44212CE5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:35.655539 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6132 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50757 -> 193.232.180.58:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7FA53005 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:36.745309 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6133 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55380 -> 193.232.180.69:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECF95E5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:37.995411 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6134 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44346 -> 193.232.180.143:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x58C34C7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:38.475664 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6135 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44810 -> 193.232.180.171:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB0E862F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:39.375589 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6136 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58674 -> 193.232.180.94:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20526834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:39.855587 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6137 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55806 -> 193.232.180.150:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10DF8EAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:40.945565 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:10841 -> 193.232.180.223:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:41.365512 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6138 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55921 -> 193.232.180.130:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7CF3F1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:42.285583 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6139 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59783 -> 193.232.180.199:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4F90545 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:42.775635 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6140 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42613 -> 193.232.180.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9562D4AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:45.065771 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6141 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:60171 -> 193.232.180.89:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBEA41E1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:45.155738 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6142 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44902 -> 193.232.180.172:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1C6FDBA3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:45.625734 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6143 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39350 -> 193.232.180.169:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9CA9E2EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:45.715730 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6144 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45170 -> 193.232.180.254:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD52CCF9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:46.915928 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6145 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37164 -> 193.232.180.179:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB659B9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:48.835796 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6146 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58389 -> 193.232.180.177:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51B48E77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:50.416010 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6147 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53752 -> 193.232.180.198:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEADE3753 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:50.795950 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54239 -> 193.232.180.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x901F9D26 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:51.005832 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51371 -> 193.232.180.219:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2667CD6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:51.186031 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6150 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56086 -> 193.232.180.10:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFCDDD4EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:51.266053 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6151 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54684 -> 193.232.180.215:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0C7D592 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:51.815949 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6152 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39963 -> 193.232.180.46:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x146C86F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:52.205965 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6153 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43314 -> 193.232.180.128:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x906DE1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:53.146048 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6154 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49565 -> 193.232.180.235:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E36F544 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:54.636246 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6155 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54105 -> 193.232.180.42:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAEFD2724 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:54.866115 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6156 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37588 -> 193.232.180.189:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7FEBF70 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:55.076070 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6157 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54089 -> 193.232.180.252:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4C9FA2FD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:56.676309 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6158 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41683 -> 193.232.180.158:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8151ADE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:57.636455 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6159 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33522 -> 193.232.180.204:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x578C5E04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:57.866149 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6160 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54671 -> 193.232.180.15:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF75BAF6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:58.726233 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6161 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49444 -> 193.232.180.232:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42A84FEC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:38:59.426237 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6162 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58766 -> 193.232.180.52:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x882F59B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:00.766312 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6163 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42557 -> 193.232.180.173:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE743F60D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:00.866286 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6164 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:47565 -> 193.232.180.14:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7BDAACDC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:01.406309 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6165 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57624 -> 193.232.180.55:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFDD8C74D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:01.796281 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6166 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42569 -> 193.232.180.182:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F98E90E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:01.956827 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6167 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34134 -> 193.232.180.175:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7418BE8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:01.966746 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6168 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59573 -> 193.232.180.166:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECDFA174 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:02.606349 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6169 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57216 -> 193.232.180.59:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF6607920 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:03.156537 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6170 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37509 -> 193.232.180.134:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96CEE5CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:03.196617 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6171 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49943 -> 193.232.180.4:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x947099E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:03.386369 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6172 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46964 -> 193.232.180.53:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x903B2CA1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:04.226448 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6173 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58088 -> 193.232.180.133:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x290B4949 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:04.446681 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6174 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:52325 -> 193.232.180.79:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB53BDFC9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:04.746436 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6175 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46290 -> 193.232.180.107:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC765F229 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:05.296842 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6176 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56102 -> 193.232.180.51:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F27BA5F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:05.546560 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6177 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40302 -> 193.232.180.174:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF58AA8CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:05.626721 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6178 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45348 -> 193.232.180.242:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF322173 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:05.666588 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6179 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59053 -> 193.232.180.212:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5ABFC1AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:05.926511 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6180 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42776 -> 193.232.180.205:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2CF0CFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:06.026442 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6181 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44545 -> 193.232.180.38:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3ABC7347 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:06.456456 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6182 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39962 -> 193.232.180.68:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E600344 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:06.836578 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6183 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49552 -> 193.232.180.86:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB95B7FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:07.536650 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6184 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36443 -> 193.232.180.61:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10772A02 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:08.876559 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6185 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48483 -> 193.232.180.170:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF621B62D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:10.016705 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44910 -> 193.232.180.249:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9512A0B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:11.216664 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46431 -> 193.232.180.77:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAFF0350 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:11.646758 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53116 -> 193.232.180.73:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD36661E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:11.756702 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40434 -> 193.232.180.80:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBF46C8A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:11.976737 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42569 -> 193.232.180.236:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x31D667B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:13.456774 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34758 -> 193.232.180.190:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4B9A060 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:13.746770 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55518 -> 193.232.180.64:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A844018 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:13.776779 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43966 -> 193.232.180.118:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x89899493 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:13.926797 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6194 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33874 -> 193.232.180.35:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20CD2D7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:14.026849 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55738 -> 193.232.180.104:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFDFF21EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:14.656935 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51626 -> 193.232.180.167:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2393A1E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:14.746970 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48897 -> 193.232.180.5:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBA662BB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:15.177144 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6198 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58441 -> 193.232.180.222:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2E3D855 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:15.466898 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6199 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51310 -> 193.232.180.184:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x41621E96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:15.667022 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6200 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:35522 -> 193.232.180.8:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F8DCD86 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.106949 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6201 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50766 -> 193.232.180.241:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2E639B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.616921 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58667 -> 193.232.180.237:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD4AEBBAA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.686890 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54321 -> 193.232.180.213:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5939884 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.846944 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42162 -> 193.232.180.247:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57C59CC4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.866925 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38807 -> 193.232.180.125:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B06103C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:16.966975 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46488 -> 193.232.180.197:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8EDE658A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:17.226942 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34191 -> 193.232.180.122:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA7BC4C2F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:17.256925 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59431 -> 193.232.180.95:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C07EFEC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:17.347211 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:60040 -> 193.232.180.238:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2083F7E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:17.996974 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38678 -> 193.232.180.124:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6435B723 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:18.057207 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55733 -> 193.232.180.120:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20DD8F96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:18.567028 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51725 -> 193.232.180.20:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA7E4B1D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:20.097284 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33304 -> 193.232.180.37:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1EABB636 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:20.777214 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6214 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53760 -> 193.232.180.191:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B288162 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:21.007124 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6215 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57969 -> 193.232.180.40:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1C32D5A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:21.177159 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6216 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57679 -> 193.232.180.196:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x76CAE49E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:21.507461 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6217 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50971 -> 193.232.180.111:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD63145C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:21.817140 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6218 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48239 -> 193.232.180.30:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x832F665B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:24.177337 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6219 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41676 -> 193.232.180.132:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29CAF107 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:24.257422 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6220 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39123 -> 193.232.180.13:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39635AA3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:26.157353 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6221 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43637 -> 193.232.180.187:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9F40298 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:26.177289 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6222 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37946 -> 193.232.180.223:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE507A075 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:27.447476 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6223 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37607 -> 193.232.180.44:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E1E365B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:27.467329 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6224 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39808 -> 193.232.180.22:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7EC6A881 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:27.747699 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6225 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41226 -> 193.232.180.229:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xADAC1394 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:28.007415 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6226 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49270 -> 193.232.180.145:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x140A4304 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:28.447404 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6227 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50435 -> 193.232.180.159:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1CD7A05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:28.817395 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6228 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42247 -> 193.232.180.96:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB7DA7474 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:29.077551 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49050 -> 193.232.180.32:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4EFCE63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:29.687548 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5239 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.80:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B450 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:31.787551 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46390 -> 193.232.180.83:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60C94B3D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:31.877474 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6231 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42911 -> 193.232.180.186:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57BA3C3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:32.267478 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6232 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56117 -> 193.232.180.152:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8539FCAE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:32.507592 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6233 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34353 -> 193.232.180.31:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84499E12 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:34.097584 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6234 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56270 -> 193.232.180.29:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF8CFBFED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:34.567590 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6235 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34208 -> 193.232.180.203:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC7F08F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:34.767663 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:52274 -> 193.232.180.135:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93F79724 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:34.897633 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6237 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37850 -> 193.232.180.56:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x179F6541 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:36.827708 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6238 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42510 -> 193.232.180.165:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x839CCD79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:36.937842 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6239 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45398 -> 193.232.180.123:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE475540 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:38.067764 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6240 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44340 -> 193.232.180.17:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2A64D66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:38.997744 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:42311 -> 193.232.180.157:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x49FD352F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:39.267834 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43657 -> 193.232.180.23:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x36EF4E8C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:39.577997 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57547 -> 193.232.180.162:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD44E902C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:39.697893 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37949 -> 193.232.180.92:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x300D02D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:39.697893 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46896 -> 193.232.180.195:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9E810849 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:40.447894 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45275 -> 193.232.180.18:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x248A946C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:40.968891 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33769 -> 193.232.180.208:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8CBA2762 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:41.157813 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54648 -> 193.232.180.230:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9980C7A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:41.267965 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33050 -> 193.232.180.108:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE98EB971 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:41.367947 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55416 -> 193.232.180.178:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D5F85D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:42.098118 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50773 -> 193.232.180.193:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x25637136 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:42.617960 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34545 -> 193.232.180.98:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB47496C4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:42.957890 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44999 -> 193.232.180.201:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8FD168D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:44.027887 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43759 -> 193.232.180.97:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA600188C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:44.738224 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46033 -> 193.232.180.226:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9C158340 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:44.988173 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57511 -> 193.232.180.71:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24E5ED2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:45.028024 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41066 -> 193.232.180.225:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x43094D20 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:45.638007 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55068 -> 193.232.180.176:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC25C0A0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:46.428127 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45860 -> 193.232.180.54:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE54321D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:46.918211 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38564 -> 193.232.180.57:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCEC8B959 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:47.658222 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38263 -> 193.232.180.136:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF3E2F92C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:48.198205 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:39019 -> 193.232.180.70:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x64FF9316 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:50.248291 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41903 -> 193.232.180.168:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x94642C8A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:50.948223 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:47392 -> 193.232.180.110:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A564169 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:51.498301 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57015 -> 193.232.180.142:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63C1805C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:51.818302 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51924 -> 193.232.180.139:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF3B4B87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:51.888287 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53400 -> 193.232.180.2:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF8507422 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:51.908251 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34589 -> 193.232.180.153:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC790FEEE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:51.938396 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:58504 -> 193.232.180.210:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x98579297 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:52.058250 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41303 -> 193.232.180.228:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCB13447 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.118394 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57434 -> 193.232.180.11:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC80F6D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.318355 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43475 -> 193.232.180.117:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FDFAA79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.358381 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38552 -> 193.232.180.220:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74CC69E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.378480 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57080 -> 193.232.180.50:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x79ACFE63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.518499 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:48852 -> 193.232.180.113:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x465A9187 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:53.978362 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41548 -> 193.232.180.129:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3B8554F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:54.058497 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56154 -> 193.232.180.185:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED9FB262 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:54.458376 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55308 -> 193.232.180.109:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E977F10 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:54.658279 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40466 -> 193.232.180.101:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBFFC997 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.108448 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43282 -> 193.232.180.127:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDD8BF729 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.188678 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:57873 -> 193.232.180.231:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA2381934 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.298615 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46808 -> 193.232.180.39:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E9656A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.618428 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36240 -> 193.232.180.180:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x73066518 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.678542 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45700 -> 193.232.180.141:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3758FC5B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:57.798802 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41704 -> 193.232.180.251:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60F8E4AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:58.368543 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56146 -> 193.232.180.119:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC0EC75F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:58.698471 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:41682 -> 193.232.180.93:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF461CC22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:39:58.978586 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6288 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:60820 -> 193.232.180.246:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAAAD69B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:00.408693 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46019 -> 193.232.180.192:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DFAD9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:01.018671 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:60221 -> 193.232.180.126:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3C419E04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:01.358625 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6291 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:51480 -> 193.232.180.67:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x604B6B5F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:01.498630 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:54907 -> 193.232.180.24:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8D54321B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:01.828682 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53647 -> 193.232.180.233:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x14F8C175 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:01.978796 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6294 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44362 -> 193.232.180.87:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x328D14D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:02.468729 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6295 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45242 -> 193.232.180.221:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x248506D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:03.068698 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6296 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50732 -> 193.232.180.43:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD67584A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:03.078761 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6297 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:46983 -> 193.232.180.207:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD02AB5F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:04.018772 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6298 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36874 -> 193.232.180.244:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95359337 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:04.398714 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6299 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:45489 -> 193.232.180.206:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E0943F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:04.838812 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6300 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50698 -> 193.232.180.76:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x620E2E45 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:04.858753 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6301 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40564 -> 193.232.180.82:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D0798B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:05.048826 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6302 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53810 -> 193.232.180.105:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCB914179 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:05.078888 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6303 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40054 -> 193.232.180.217:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD18DEEB7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:05.238745 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6304 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49272 -> 193.232.180.6:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE304CF2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:08.139128 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6305 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37286 -> 193.232.180.146:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9526313D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:08.839143 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6306 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:33557 -> 193.232.180.78:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xABF00E86 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:08.889045 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:55267 -> 193.232.180.112:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFFC57CA6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:09.209005 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:37897 -> 193.232.180.48:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42AF1B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:10.409239 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36088 -> 193.232.180.74:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0E89475 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:10.539057 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:50588 -> 193.232.180.25:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD2371D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:11.359130 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56258 -> 193.232.180.239:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xACBEAF08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:12.599207 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:35465 -> 193.232.180.154:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21D117E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:12.749147 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:59699 -> 193.232.180.211:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B2AD03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:12.829152 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:43724 -> 193.232.180.224:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FAEF860 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:13.099187 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44976 -> 193.232.180.12:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x484723D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:13.529321 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34067 -> 193.232.180.60:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5DFBC8C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:13.699256 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44095 -> 193.232.180.28:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x294AB500 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:14.519422 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:53126 -> 193.232.180.102:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFCD6C1CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:15.409496 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:34773 -> 193.232.180.200:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD447F87A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:15.949408 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:38597 -> 193.232.180.26:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA539DD74 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:16.519356 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:49570 -> 193.232.180.62:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30856F77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:16.979261 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:40956 -> 193.232.180.240:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46F7DE6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:17.039231 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:56882 -> 193.232.180.65:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE3329BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:18.039523 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:44623 -> 193.232.180.3:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA868B13D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:40:18.809399 10.255.255.5 -> 172.168.41.190 +ICMP TTL:63 TOS:0xC0 ID:6325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.41.190:36698 -> 193.232.180.163:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF20F2F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:43:23.426532 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5240 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.146:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:47:35.986414 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.79:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:48:28.008471 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.227:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:49:11.010245 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.7:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B407 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:52:12.767298 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.247:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:53:31.090674 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57356 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.11:80 +TCP TTL:241 TOS:0x0 ID:20696 IpLen:20 DgmLen:40 +Seq: 0xA997E483 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:57:07.002276 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12593 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30672 -> 193.232.180.128:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-21:59:29.072168 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30560 -> 193.232.180.16:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:00:18.666437 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.251:80 +TCP TTL:241 TOS:0x0 ID:16886 IpLen:20 DgmLen:40 +Seq: 0xD599F55D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:02:51.082160 10.255.255.5 -> 163.181.145.195 +ICMP TTL:63 TOS:0xC0 ID:2822 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.145.195 -> 193.232.180.195 +ICMP TTL:1 TOS:0x0 ID:27092 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 57251 Id: 27092 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:06:02.059984 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.198:80 +TCP TTL:241 TOS:0x0 ID:31730 IpLen:20 DgmLen:40 +Seq: 0xBD4ECF64 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:07:39.253598 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.6:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B406 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:11:05.561888 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.133:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B485 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:11:07.911805 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.120:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B478 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:21:51.957268 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.244:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:25:30.242059 10.255.255.5 -> 23.236.126.215 +ICMP TTL:63 TOS:0xC0 ID:21595 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.236.126.215 -> 193.232.180.17 +ICMP TTL:1 TOS:0x0 ID:8918 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 24367 Id: 8918 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:25:30.242060 10.255.255.5 -> 23.236.126.215 +ICMP TTL:63 TOS:0xC0 ID:21594 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.236.126.215 -> 193.232.180.235 +ICMP TTL:1 TOS:0x0 ID:8918 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 24149 Id: 8918 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:27:18.099984 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.245:443 +TCP TTL:241 TOS:0x0 ID:46928 IpLen:20 DgmLen:40 +Seq: 0x5D4C021E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:33:00.313644 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.47:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:37:24.234037 10.255.255.5 -> 107.161.88.35 +ICMP TTL:63 TOS:0xC0 ID:26344 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.161.88.35 -> 193.232.180.24 +ICMP TTL:1 TOS:0x0 ID:18840 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 14438 Id: 18840 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:37:24.261932 10.255.255.5 -> 107.161.88.35 +ICMP TTL:63 TOS:0xC0 ID:26345 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.161.88.35 -> 193.232.180.180 +ICMP TTL:1 TOS:0x0 ID:18840 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 14282 Id: 18840 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:37:24.507155 10.255.255.5 -> 107.161.88.35 +ICMP TTL:63 TOS:0xC0 ID:26346 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.161.88.35 -> 193.232.180.218 +ICMP TTL:1 TOS:0x0 ID:18840 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 14244 Id: 18840 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:37:24.510818 10.255.255.5 -> 107.161.88.35 +ICMP TTL:63 TOS:0xC0 ID:26347 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.161.88.35 -> 193.232.180.84 +ICMP TTL:1 TOS:0x0 ID:18840 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 14378 Id: 18840 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:40:21.050572 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30599 -> 193.232.180.55:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:42:22.265343 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.185:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:45:11.852086 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.226:80 +TCP TTL:241 TOS:0x0 ID:37074 IpLen:20 DgmLen:40 +Seq: 0xAAFD2460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:48:40.040206 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.45:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:51:01.392105 10.255.255.5 -> 207.211.214.162 +ICMP TTL:63 TOS:0xC0 ID:11288 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +207.211.214.162 -> 193.232.180.178 +ICMP TTL:1 TOS:0x0 ID:64795 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33864 Id: 64795 SeqNo: 11 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:51:01.393945 10.255.255.5 -> 207.211.214.162 +ICMP TTL:63 TOS:0xC0 ID:11289 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +207.211.214.162 -> 193.232.180.78 +ICMP TTL:1 TOS:0x0 ID:64795 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33964 Id: 64795 SeqNo: 11 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:51:01.397996 10.255.255.5 -> 207.211.214.162 +ICMP TTL:63 TOS:0xC0 ID:11290 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +207.211.214.162 -> 193.232.180.6 +ICMP TTL:1 TOS:0x0 ID:64795 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 34036 Id: 64795 SeqNo: 11 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:51:01.399999 10.255.255.5 -> 207.211.214.162 +ICMP TTL:63 TOS:0xC0 ID:11291 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +207.211.214.162 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:64795 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33913 Id: 64795 SeqNo: 11 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:53:01.290425 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.169:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:53:13.741056 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.195:443 +TCP TTL:241 TOS:0x0 ID:42851 IpLen:20 DgmLen:40 +Seq: 0xFF87121B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:53:16.851046 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.72:80 +TCP TTL:241 TOS:0x0 ID:39677 IpLen:20 DgmLen:40 +Seq: 0xA1162EE5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:53:44.932170 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.21:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B415 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:54:23.475046 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30591 -> 193.232.180.47:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:54:34.098786 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30644 -> 193.232.180.100:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:54:53.874919 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.130:80 +TCP TTL:241 TOS:0x0 ID:36145 IpLen:20 DgmLen:40 +Seq: 0x4B1539E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:56:27.711347 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30667 -> 193.232.180.123:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:57:17.690463 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.63:443 +TCP TTL:241 TOS:0x0 ID:34338 IpLen:20 DgmLen:40 +Seq: 0x72F833A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:57:50.990996 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30731 -> 193.232.180.187:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-22:59:29.077280 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14029 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30588 -> 193.232.180.44:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:00:16.724473 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14030 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30677 -> 193.232.180.133:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:01:28.398198 10.255.255.5 -> 175.153.165.221 +ICMP TTL:63 TOS:0xC0 ID:41878 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +175.153.165.221 -> 193.232.180.186 +ICMP TTL:1 TOS:0x0 ID:6539 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26577 Id: 6539 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:01:28.567503 10.255.255.5 -> 175.153.165.221 +ICMP TTL:63 TOS:0xC0 ID:41879 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +175.153.165.221 -> 193.232.180.17 +ICMP TTL:1 TOS:0x0 ID:6539 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26746 Id: 6539 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:01:28.572007 10.255.255.5 -> 175.153.165.221 +ICMP TTL:63 TOS:0xC0 ID:41880 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +175.153.165.221 -> 193.232.180.244 +ICMP TTL:1 TOS:0x0 ID:6539 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26519 Id: 6539 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:01:28.572910 10.255.255.5 -> 175.153.165.221 +ICMP TTL:63 TOS:0xC0 ID:41881 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +175.153.165.221 -> 193.232.180.60 +ICMP TTL:1 TOS:0x0 ID:6539 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26703 Id: 6539 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:03:21.124812 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.231:443 +TCP TTL:241 TOS:0x0 ID:54332 IpLen:20 DgmLen:40 +Seq: 0x789E6160 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:03:28.554925 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.212:443 +TCP TTL:241 TOS:0x0 ID:12493 IpLen:20 DgmLen:40 +Seq: 0x935585A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:04:50.088202 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.2:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:05:31.209867 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:27261 -> 193.232.180.135:443 +TCP TTL:241 TOS:0x0 ID:5976 IpLen:20 DgmLen:40 +Seq: 0x4BC7A264 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:07:57.605652 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.17:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B411 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:08:05.135774 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.19:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:12:07.690604 10.255.255.5 -> 185.234.213.135 +ICMP TTL:63 TOS:0xC0 ID:27382 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.234.213.135 -> 193.232.180.232 +ICMP TTL:1 TOS:0x0 ID:36263 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62342 Id: 36263 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:12:07.690605 10.255.255.5 -> 185.234.213.135 +ICMP TTL:63 TOS:0xC0 ID:27381 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.234.213.135 -> 193.232.180.55 +ICMP TTL:1 TOS:0x0 ID:36263 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62519 Id: 36263 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:12:07.690605 10.255.255.5 -> 185.234.213.135 +ICMP TTL:63 TOS:0xC0 ID:27384 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.234.213.135 -> 193.232.180.156 +ICMP TTL:1 TOS:0x0 ID:36263 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62418 Id: 36263 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:12:07.690605 10.255.255.5 -> 185.234.213.135 +ICMP TTL:63 TOS:0xC0 ID:27383 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.234.213.135 -> 193.232.180.165 +ICMP TTL:1 TOS:0x0 ID:36263 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62409 Id: 36263 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:16:46.306316 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.143:443 +TCP TTL:241 TOS:0x0 ID:22113 IpLen:20 DgmLen:40 +Seq: 0x8F27E355 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:18:59.831602 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.182:443 +TCP TTL:241 TOS:0x0 ID:44906 IpLen:20 DgmLen:40 +Seq: 0x7C3B1A67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:19:01.261597 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57367 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.103:80 +TCP TTL:241 TOS:0x0 ID:59037 IpLen:20 DgmLen:40 +Seq: 0x2B7152AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:21:28.191347 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30746 -> 193.232.180.202:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:21:42.517967 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.193:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:24:35.689630 10.255.255.5 -> 138.199.53.212 +ICMP TTL:63 TOS:0xC0 ID:45101 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.199.53.212 -> 193.232.180.93 +ICMP TTL:1 TOS:0x0 ID:13596 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19613 Id: 13596 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:24:35.690620 10.255.255.5 -> 138.199.53.212 +ICMP TTL:63 TOS:0xC0 ID:45102 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.199.53.212 -> 193.232.180.9 +ICMP TTL:1 TOS:0x0 ID:13596 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19697 Id: 13596 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:24:35.693637 10.255.255.5 -> 138.199.53.212 +ICMP TTL:63 TOS:0xC0 ID:45103 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.199.53.212 -> 193.232.180.197 +ICMP TTL:1 TOS:0x0 ID:13596 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19509 Id: 13596 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:24:35.693637 10.255.255.5 -> 138.199.53.212 +ICMP TTL:63 TOS:0xC0 ID:45104 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.199.53.212 -> 193.232.180.109 +ICMP TTL:1 TOS:0x0 ID:13596 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19597 Id: 13596 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:30:27.658729 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.183:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:34:15.627689 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57368 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.165:80 +TCP TTL:241 TOS:0x0 ID:18470 IpLen:20 DgmLen:40 +Seq: 0xFC04FCD3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:36:23.922536 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.98:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B462 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:36:30.893922 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30630 -> 193.232.180.86:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:36:31.793198 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30698 -> 193.232.180.154:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:42:55.121117 10.255.255.5 -> 41.77.138.90 +ICMP TTL:63 TOS:0xC0 ID:60155 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +41.77.138.90:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xCDC99824 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:43:47.899948 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.2:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:48:31.420906 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.130:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B482 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:49:32.093483 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.192:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:50:25.665624 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57369 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.213:443 +TCP TTL:241 TOS:0x0 ID:13161 IpLen:20 DgmLen:40 +Seq: 0xA8F98607 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:53:10.861851 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.140:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:54:08.854161 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.38:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B426 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:54:42.822804 10.255.255.5 -> 185.169.64.13 +ICMP TTL:63 TOS:0xC0 ID:57364 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.169.64.13:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xCDC9981E +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:58:27.285579 10.255.255.5 -> 110.164.35.48 +ICMP TTL:63 TOS:0xC0 ID:3580 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +110.164.35.48 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:38277 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 31397 Id: 19881 SeqNo: 8093 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:58:27.292834 10.255.255.5 -> 110.164.35.48 +ICMP TTL:63 TOS:0xC0 ID:3581 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +110.164.35.48 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:29252 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 6914 Id: 13613 SeqNo: 38844 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:58:31.289096 10.255.255.5 -> 110.164.35.48 +ICMP TTL:63 TOS:0xC0 ID:3582 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +110.164.35.48 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:40512 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 31386 Id: 19881 SeqNo: 8104 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:58:31.297908 10.255.255.5 -> 110.164.35.48 +ICMP TTL:63 TOS:0xC0 ID:3583 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +110.164.35.48 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:31451 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 6903 Id: 13613 SeqNo: 38855 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/20-23:58:52.565270 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57370 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:29820 -> 193.232.180.246:443 +TCP TTL:241 TOS:0x0 ID:11139 IpLen:20 DgmLen:40 +Seq: 0x17F69ECE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:02:48.584515 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.63:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:03:46.076940 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.166:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:16:04.155812 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57371 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.58:80 +TCP TTL:241 TOS:0x0 ID:37918 IpLen:20 DgmLen:40 +Seq: 0x74F32074 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:16:27.998985 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30750 -> 193.232.180.206:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:16:29.018068 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30592 -> 193.232.180.48:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:16:30.325124 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30665 -> 193.232.180.121:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:17:01.557803 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57372 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.7:443 +TCP TTL:241 TOS:0x0 ID:47041 IpLen:20 DgmLen:40 +Seq: 0x2E027D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:20:30.176037 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57373 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.162:80 +TCP TTL:241 TOS:0x0 ID:17091 IpLen:20 DgmLen:40 +Seq: 0x3DB8F631 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:22:29.420664 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.199:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:23:24.372732 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.227:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:26:55.341147 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.167:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:27:10.231639 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57374 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.64:443 +TCP TTL:241 TOS:0x0 ID:60751 IpLen:20 DgmLen:40 +Seq: 0x1F558B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:31:43.582584 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57375 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.58:443 +TCP TTL:241 TOS:0x0 ID:65288 IpLen:20 DgmLen:40 +Seq: 0x97BF4A89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:33:20.616133 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57376 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.115:80 +TCP TTL:241 TOS:0x0 ID:33784 IpLen:20 DgmLen:40 +Seq: 0xF41737DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:33:55.147573 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.208:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:35:58.102520 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57377 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.32:443 +TCP TTL:241 TOS:0x0 ID:11629 IpLen:20 DgmLen:40 +Seq: 0xB72898F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:39:07.049780 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.195:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:41:22.025133 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57378 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.193:80 +TCP TTL:241 TOS:0x0 ID:23483 IpLen:20 DgmLen:40 +Seq: 0xA706EF2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:41:43.424438 10.255.255.5 -> 209.58.168.107 +ICMP TTL:63 TOS:0xC0 ID:55390 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.58.168.107:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B020 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:42:58.274201 10.255.255.5 -> 185.103.44.2 +ICMP TTL:63 TOS:0xC0 ID:10001 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.44.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B016 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:43:14.659537 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57379 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.195:80 +TCP TTL:241 TOS:0x0 ID:47474 IpLen:20 DgmLen:40 +Seq: 0x5DAB0DE1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:43:15.052756 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30704 -> 193.232.180.160:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:43:28.170358 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:9189 -> 86.110.96.149:53 +UDP TTL:1 TOS:0x0 ID:22126 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:44:11.711845 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:56877 -> 193.232.180.160:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:44:36.432775 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57380 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.28:443 +TCP TTL:241 TOS:0x0 ID:15348 IpLen:20 DgmLen:40 +Seq: 0xD2E98E53 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:44:46.170491 10.255.255.5 -> 45.136.160.2 +ICMP TTL:63 TOS:0xC0 ID:18306 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.160.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B016 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:45:51.605646 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57381 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.142:443 +TCP TTL:241 TOS:0x0 ID:34239 IpLen:20 DgmLen:40 +Seq: 0x6162308A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:45:55.713924 10.255.255.5 -> 94.136.166.2 +ICMP TTL:63 TOS:0xC0 ID:4742 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.166.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x11B11406 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:48:01.556019 10.255.255.5 -> 185.91.47.2 +ICMP TTL:63 TOS:0xC0 ID:13849 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.91.47.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B016 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:49:38.494876 10.255.255.5 -> 45.58.118.202 +ICMP TTL:63 TOS:0xC0 ID:19487 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.58.118.202:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B018 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:50:09.058278 10.255.255.5 -> 38.54.114.144 +ICMP TTL:63 TOS:0xC0 ID:22554 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.114.144 -> 193.232.180.123 +ICMP TTL:1 TOS:0x0 ID:57133 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 41581 Id: 57133 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:50:09.062265 10.255.255.5 -> 38.54.114.144 +ICMP TTL:63 TOS:0xC0 ID:22555 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.114.144 -> 193.232.180.87 +ICMP TTL:1 TOS:0x0 ID:57133 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 41617 Id: 57133 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:50:09.117389 10.255.255.5 -> 38.54.114.144 +ICMP TTL:63 TOS:0xC0 ID:22556 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.114.144 -> 193.232.180.186 +ICMP TTL:1 TOS:0x0 ID:57133 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 41518 Id: 57133 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:50:09.323369 10.255.255.5 -> 38.54.114.144 +ICMP TTL:63 TOS:0xC0 ID:22557 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.114.144 -> 193.232.180.195 +ICMP TTL:1 TOS:0x0 ID:57133 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 41509 Id: 57133 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:52:04.225283 10.255.255.5 -> 94.136.161.2 +ICMP TTL:63 TOS:0xC0 ID:35960 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.161.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B018 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:52:16.240741 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57382 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.89:80 +TCP TTL:241 TOS:0x0 ID:42141 IpLen:20 DgmLen:40 +Seq: 0x9C611094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:53:21.653373 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.96:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:56:02.082131 10.255.255.5 -> 185.91.46.2 +ICMP TTL:63 TOS:0xC0 ID:12239 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.91.46.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B012 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:56:06.289050 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30560 -> 193.232.180.16:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:57:46.462177 10.255.255.5 -> 185.103.45.2 +ICMP TTL:63 TOS:0xC0 ID:33588 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.45.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B014 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:58:56.016506 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57383 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.191:443 +TCP TTL:241 TOS:0x0 ID:56668 IpLen:20 DgmLen:40 +Seq: 0x36066858 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-00:59:13.534817 10.255.255.5 -> 185.103.47.2 +ICMP TTL:63 TOS:0xC0 ID:33942 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.47.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B00A +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:00:40.264847 10.255.255.5 -> 45.136.162.2 +ICMP TTL:63 TOS:0xC0 ID:33683 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.162.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B012 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:02:07.134254 10.255.255.5 -> 45.136.163.2 +ICMP TTL:63 TOS:0xC0 ID:6627 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.163.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B010 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:03:48.258066 10.255.255.5 -> 94.136.160.2 +ICMP TTL:63 TOS:0xC0 ID:40321 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.160.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B016 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:05:22.953982 10.255.255.5 -> 158.58.172.238 +ICMP TTL:63 TOS:0xC0 ID:12937 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +158.58.172.238:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B018 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:06:04.483165 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 86.110.96.152:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6098 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:07:19.591833 10.255.255.5 -> 8.38.121.194 +ICMP TTL:63 TOS:0xC0 ID:36142 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.38.121.194 -> 193.232.180.119 +ICMP TTL:1 TOS:0x0 ID:29692 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 28770 Id: 29692 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:08:53.081291 10.255.255.5 -> 45.136.161.2 +ICMP TTL:63 TOS:0xC0 ID:50306 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.161.2:49152 -> 193.232.180.150:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0xDAC9B016 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:10:05.592580 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30547 -> 193.232.180.3:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:10:57.464647 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57384 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.228:80 +TCP TTL:241 TOS:0x0 ID:16501 IpLen:20 DgmLen:40 +Seq: 0x1961F4C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:11:32.116010 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.9:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B409 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:12:26.778224 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57385 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.62:80 +TCP TTL:241 TOS:0x0 ID:32540 IpLen:20 DgmLen:40 +Seq: 0x5B00CB72 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:14:26.462674 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.253:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:16:15.987185 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.100:443 +TCP TTL:241 TOS:0x0 ID:33974 IpLen:20 DgmLen:40 +Seq: 0x990F3169 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:16:22.047355 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.227:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:19:03.103620 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.197:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:23:19.463928 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30742 -> 193.232.180.198:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:27:27.733348 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.75:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:27:31.653454 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.43:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:30:30.600487 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.105:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B469 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:35:17.391692 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.105:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B469 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:44:50.994300 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57386 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.176:80 +TCP TTL:241 TOS:0x0 ID:3314 IpLen:20 DgmLen:40 +Seq: 0xED06B812 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:48:51.393639 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57387 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.126:80 +TCP TTL:241 TOS:0x0 ID:51916 IpLen:20 DgmLen:40 +Seq: 0x206B7EE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:50:15.502165 10.255.255.5 -> 197.189.207.28 +ICMP TTL:63 TOS:0xC0 ID:63264 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.189.207.28 -> 193.232.180.234 +ICMP TTL:1 TOS:0x0 ID:31164 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1904 Id: 31164 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:50:15.505269 10.255.255.5 -> 197.189.207.28 +ICMP TTL:63 TOS:0xC0 ID:63265 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.189.207.28 -> 193.232.180.50 +ICMP TTL:1 TOS:0x0 ID:31164 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 2088 Id: 31164 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:50:15.508379 10.255.255.5 -> 197.189.207.28 +ICMP TTL:63 TOS:0xC0 ID:63266 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.189.207.28 -> 193.232.180.12 +ICMP TTL:1 TOS:0x0 ID:31164 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 2126 Id: 31164 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:50:15.508380 10.255.255.5 -> 197.189.207.28 +ICMP TTL:63 TOS:0xC0 ID:63267 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.189.207.28 -> 193.232.180.67 +ICMP TTL:1 TOS:0x0 ID:31164 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 2071 Id: 31164 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:52:51.443222 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57388 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.118:80 +TCP TTL:241 TOS:0x0 ID:23815 IpLen:20 DgmLen:40 +Seq: 0x9128E921 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-01:55:55.526998 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30599 -> 193.232.180.55:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:00:16.821160 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30706 -> 193.232.180.162:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:03:08.578046 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.106:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:04:26.450426 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.4:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B404 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:04:43.081210 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.154:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:12:52.720186 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.153:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B499 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:15:59.932724 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30591 -> 193.232.180.47:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:16:16.983542 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30644 -> 193.232.180.100:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:16:26.288538 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.49:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B431 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:50.435894 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63045 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54386 -> 193.232.180.27:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE158310 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:50.735894 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63046 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:35274 -> 193.232.180.114:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46553609 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:50.915825 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63047 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46372 -> 193.232.180.168:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD48589A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:51.005976 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63048 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55173 -> 193.232.180.219:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B80FED2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:51.435936 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63049 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59541 -> 193.232.180.58:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCDC1AF11 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:52.136111 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63050 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56957 -> 193.232.180.70:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5E559625 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:53.236024 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63051 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:32897 -> 193.232.180.159:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0AE94BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:53.395984 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63052 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49663 -> 193.232.180.46:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x594BFB9A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:53.436003 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63053 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57831 -> 193.232.180.151:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED6E9EB8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:53.745994 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63054 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:45063 -> 193.232.180.31:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AA2C78B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:54.416185 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63055 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47457 -> 193.232.180.245:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC50B0FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:55.476137 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63056 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48656 -> 193.232.180.50:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9BBCA034 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:55.866281 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63057 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40727 -> 193.232.180.206:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90D54BE9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.116202 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63058 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47950 -> 193.232.180.107:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECD1356 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.226210 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63059 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57834 -> 193.232.180.133:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F58746F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.336276 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63060 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40772 -> 193.232.180.4:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0A8EE9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.446139 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63061 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58011 -> 193.232.180.83:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x87AF384F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.606229 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63062 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46124 -> 193.232.180.36:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x363674EF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.616199 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63063 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37070 -> 193.232.180.8:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x503BF246 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.766249 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63064 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50490 -> 193.232.180.41:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8A5748 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:56.876300 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63065 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58845 -> 193.232.180.229:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5376B3A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:57.226226 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63066 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41826 -> 193.232.180.129:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2141E0F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:57.296193 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63067 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34475 -> 193.232.180.145:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x469EF60A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:23:59.816363 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63068 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46525 -> 193.232.180.136:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x842E0BD9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:00.276245 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63069 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36648 -> 193.232.180.57:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x33C7D95A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:00.506436 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63070 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48060 -> 193.232.180.112:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD6558DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:01.656383 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63071 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56285 -> 193.232.180.42:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4DDFD5C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:02.116491 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63072 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56655 -> 193.232.180.60:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CAC7ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:02.306360 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63073 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53890 -> 193.232.180.218:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B007CCB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:02.406348 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63074 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58690 -> 193.232.180.15:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44B05AA6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:03.306483 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63075 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48069 -> 193.232.180.157:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF4AD59A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:04.066547 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63076 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42066 -> 193.232.180.18:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x41CA9854 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:04.586433 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63077 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43559 -> 193.232.180.34:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74D8E613 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:04.806501 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63078 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55863 -> 193.232.180.190:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9A292C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:04.926612 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63079 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41934 -> 193.232.180.175:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1DD68CEC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:05.236721 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63080 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59393 -> 193.232.180.196:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC8A056B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:05.726506 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63081 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60490 -> 193.232.180.208:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3A17F03F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.066742 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63082 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41603 -> 193.232.180.6:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B2D1F53 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.166622 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63083 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34137 -> 193.232.180.63:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC71F845 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.406518 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63084 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49758 -> 193.232.180.216:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB200E394 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.446491 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63085 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48280 -> 193.232.180.90:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4DF07BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.476604 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63086 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43772 -> 193.232.180.35:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8756D3C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:07.896793 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63087 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33867 -> 193.232.180.21:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB91911CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:08.276698 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63088 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42063 -> 193.232.180.213:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD5FCC82 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:08.876637 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63089 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55472 -> 193.232.180.214:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F405B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:09.606673 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63090 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38281 -> 193.232.180.183:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x940442FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:09.736861 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63091 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37888 -> 193.232.180.200:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB499ECC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:09.886705 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63092 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43641 -> 193.232.180.103:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB2198F9F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:10.726762 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63093 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52541 -> 193.232.180.47:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8AA54238 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:11.186703 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63094 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52488 -> 193.232.180.3:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84E3F9A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:11.466659 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63095 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46617 -> 193.232.180.67:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x33D7BBF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:11.916701 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63096 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39962 -> 193.232.180.235:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x80BD8E79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:13.196924 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63097 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46902 -> 193.232.180.180:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4F850D0F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:14.096854 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63098 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54857 -> 193.232.180.97:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9CF9FFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:14.706878 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63099 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60427 -> 193.232.180.230:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5367F46A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:14.856790 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63100 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36772 -> 193.232.180.211:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69C299E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:15.146846 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63101 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50075 -> 193.232.180.123:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB8DCFFF2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:15.316844 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63102 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33900 -> 193.232.180.163:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5142DF5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:15.746877 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63103 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59705 -> 193.232.180.164:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9A6B78D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:16.417016 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63104 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41164 -> 193.232.180.81:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F5953D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:16.486952 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63105 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53612 -> 193.232.180.48:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1ABCDB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:16.757147 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63106 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55907 -> 193.232.180.193:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C99EA89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:17.936952 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63107 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42042 -> 193.232.180.75:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x31BD6855 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:18.747003 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63108 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37027 -> 193.232.180.186:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6659760D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:18.907218 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63109 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50784 -> 193.232.180.224:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51B9C86D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:18.937060 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63110 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40860 -> 193.232.180.144:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB1A187D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:19.587170 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63111 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43205 -> 193.232.180.223:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xACE7BF17 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:19.787028 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63112 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37846 -> 193.232.180.111:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0992B2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:20.187158 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63113 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51534 -> 193.232.180.86:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B3909F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:20.187158 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63114 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44486 -> 193.232.180.217:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21B811C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:20.737161 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63115 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50117 -> 193.232.180.204:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6A4FBBC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:20.767253 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63116 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60173 -> 193.232.180.118:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x600E59B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:21.767279 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63117 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56764 -> 193.232.180.205:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x736D58B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:22.277204 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63118 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38955 -> 193.232.180.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC625FA50 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:22.367163 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63119 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33689 -> 193.232.180.20:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B947958 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:22.497339 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63120 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60266 -> 193.232.180.120:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E577ECB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:22.907367 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63121 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38858 -> 193.232.180.23:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x49EB62B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:22.997188 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63122 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42868 -> 193.232.180.251:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6CD23E37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:23.747389 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63123 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44485 -> 193.232.180.209:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x861305BB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:23.797192 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63124 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53542 -> 193.232.180.85:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD95A71EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:24.477191 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63125 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50464 -> 193.232.180.16:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA37B4797 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:24.527461 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63126 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33872 -> 193.232.180.134:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8012DFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:24.757217 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63127 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53269 -> 193.232.180.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x45B28D7C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:26.557388 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63128 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60282 -> 193.232.180.240:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x933C9786 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:26.707357 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63129 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56310 -> 193.232.180.242:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5AD53759 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:27.617572 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63130 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59200 -> 193.232.180.135:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A7C7664 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:27.677366 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63131 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58634 -> 193.232.180.77:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x408A104 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:27.707336 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63132 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33704 -> 193.232.180.231:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA1A441F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:27.897430 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63133 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40687 -> 193.232.180.222:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x81AF32AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:28.757484 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63134 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42184 -> 193.232.180.146:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9654E4E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:28.807563 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63135 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56968 -> 193.232.180.221:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46D3414D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:29.617523 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63136 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51104 -> 193.232.180.30:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF72C4E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:30.727579 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63137 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56372 -> 193.232.180.236:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC9D54257 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:32.157777 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63138 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:45880 -> 193.232.180.121:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9A52FDE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:32.767637 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63139 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52296 -> 193.232.180.249:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD480A9AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:34.327600 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63140 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58082 -> 193.232.180.10:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5AC14424 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:35.237756 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63141 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40355 -> 193.232.180.32:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5D43988 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:36.057882 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63142 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48183 -> 193.232.180.239:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA62F37BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:37.267972 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63143 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37682 -> 193.232.180.197:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78FF45A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:37.307861 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63144 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49531 -> 193.232.180.176:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1034810 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:37.777798 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63145 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36961 -> 193.232.180.158:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x250C21CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:38.297929 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63146 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52233 -> 193.232.180.98:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x89AC6C77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:38.737854 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63147 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52236 -> 193.232.180.210:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8196F33 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:39.077938 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63148 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44762 -> 193.232.180.141:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE975823 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:39.517872 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63149 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46965 -> 193.232.180.246:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E281AD7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:39.687836 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63150 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46361 -> 193.232.180.108:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1F64C54 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:40.107896 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63151 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36360 -> 193.232.180.192:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2DAC7851 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:41.347957 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63152 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48950 -> 193.232.180.254:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57FE5215 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:41.367904 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63153 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46209 -> 193.232.180.169:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF109332 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:41.737965 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63154 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59739 -> 193.232.180.80:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC54CE8D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:41.958056 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63155 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:45120 -> 193.232.180.84:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x142D8344 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:43.448169 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63156 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:45124 -> 193.232.180.234:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x865B245D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:44.468057 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63157 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46865 -> 193.232.180.19:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9ACFDD7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:44.848033 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63158 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57707 -> 193.232.180.212:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7BA7A1D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:44.968132 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63159 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41580 -> 193.232.180.126:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3E9D1D9F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:45.008070 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63160 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44083 -> 193.232.180.115:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D5A6A05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:45.968275 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63161 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52474 -> 193.232.180.215:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52EB9290 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:46.248170 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63162 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38016 -> 193.232.180.110:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE552AE0B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:46.278163 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63163 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47080 -> 193.232.180.117:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C6C49C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:47.208147 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63164 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41382 -> 193.232.180.51:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA999EA48 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:47.348177 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63165 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49232 -> 193.232.180.232:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF64041F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:48.148159 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63166 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49282 -> 193.232.180.119:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24E349A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:48.298407 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63167 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39224 -> 193.232.180.95:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB4E1C8E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:50.118347 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63168 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38265 -> 193.232.180.102:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x43542AAF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:50.348294 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63169 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52912 -> 193.232.180.154:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEFB692B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:50.368352 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63170 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39422 -> 193.232.180.43:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEF490D7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:50.828305 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63171 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39228 -> 193.232.180.61:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC54D4774 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:52.358366 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63172 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:59233 -> 193.232.180.88:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6EFD2515 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:53.588441 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63173 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47403 -> 193.232.180.137:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9661D4DD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:54.898471 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63174 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54656 -> 193.232.180.79:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E7A5267 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:55.538571 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63175 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51584 -> 193.232.180.76:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x415E6EA2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:55.818519 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63176 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60257 -> 193.232.180.173:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x144C33BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:56.048453 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63177 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60670 -> 193.232.180.69:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0A04905 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:56.568572 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63178 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37589 -> 193.232.180.149:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9FF979A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:57.098662 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63179 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54501 -> 193.232.180.172:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBC1C3D2F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:57.228540 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63180 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34323 -> 193.232.180.174:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x75E55DD9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:57.568586 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63181 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41895 -> 193.232.180.248:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9CE2FE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:59.508540 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63182 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57535 -> 193.232.180.155:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8C608228 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:59.628850 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63183 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60201 -> 193.232.180.228:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0A2EB96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:24:59.928584 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63184 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53168 -> 193.232.180.99:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3AAE664 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:00.118659 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63185 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37450 -> 193.232.180.9:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4B56AD0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:01.548832 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58346 -> 193.232.180.93:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE90D33F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:01.818856 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34969 -> 193.232.180.187:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x580BEE2E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:02.248701 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33611 -> 193.232.180.22:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3CA01C28 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:02.488930 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42318 -> 193.232.180.113:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78CC0A8E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:03.388676 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:35322 -> 193.232.180.56:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA528CF95 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:05.898887 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47562 -> 193.232.180.7:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24B4C115 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:06.108806 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:32813 -> 193.232.180.125:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6D18240 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:06.168987 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52667 -> 193.232.180.191:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBFFAD1A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:06.699034 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63194 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55085 -> 193.232.180.94:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x41755903 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:06.758903 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:40351 -> 193.232.180.202:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20C4AB4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:06.958984 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:35363 -> 193.232.180.116:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x550D5B6A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:07.179179 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34929 -> 193.232.180.132:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDECBD67E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:08.248944 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63198 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38298 -> 193.232.180.26:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x804FDBD3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:08.318965 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63199 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56002 -> 193.232.180.241:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0C5D610 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:08.839025 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63200 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44411 -> 193.232.180.182:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA1E23F90 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:10.739020 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63201 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56726 -> 193.232.180.100:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA46B2CAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:11.039175 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53585 -> 193.232.180.227:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5F2C5DF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:11.359020 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42294 -> 193.232.180.101:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B79F564 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:12.589190 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46727 -> 193.232.180.39:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AC7C846 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:12.689160 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51103 -> 193.232.180.161:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6DCAB366 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:14.559209 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33017 -> 193.232.180.122:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x28360B72 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:14.819357 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60739 -> 193.232.180.152:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7412923C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:14.939236 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52476 -> 193.232.180.40:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B7DD94D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:14.969257 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43387 -> 193.232.180.55:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E988A11 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:15.719317 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55732 -> 193.232.180.66:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B7E75C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:16.229212 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:48714 -> 193.232.180.72:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x171385E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:16.499488 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47232 -> 193.232.180.185:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x41D949AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:16.989420 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52094 -> 193.232.180.17:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA320B2D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:17.059315 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63214 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55454 -> 193.232.180.198:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE4CFD71 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:17.379314 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63215 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36397 -> 193.232.180.220:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9AC2D3CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:17.669381 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63216 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38538 -> 193.232.180.71:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35F9F2E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:18.719554 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63217 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57362 -> 193.232.180.165:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4DF4B0FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:18.829412 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63218 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47823 -> 193.232.180.68:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71FE53AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:19.349482 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63219 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50238 -> 193.232.180.244:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F2EBCC2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:19.459393 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63220 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46834 -> 193.232.180.199:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4881F6E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:20.899407 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63221 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54530 -> 193.232.180.78:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FC5CEFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:21.909496 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63222 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:35841 -> 193.232.180.140:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBD3EE01 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:22.519597 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63223 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52945 -> 193.232.180.124:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x36FCB101 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:22.769611 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63224 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37615 -> 193.232.180.53:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD987194 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:22.839768 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63225 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44165 -> 193.232.180.62:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4F7E5A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:23.469719 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63226 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41956 -> 193.232.180.74:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF3101B5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:23.539526 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63227 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53985 -> 193.232.180.127:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66BC3454 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:23.739602 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63228 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49247 -> 193.232.180.195:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB8D6F7DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:24.279618 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33768 -> 193.232.180.179:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x970221EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:25.529607 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34290 -> 193.232.180.25:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA099F01B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:25.679648 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63231 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33294 -> 193.232.180.177:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4784998A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:26.079669 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63232 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58489 -> 193.232.180.5:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEFE9069 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:26.249853 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63233 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44041 -> 193.232.180.238:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x645D6E07 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:28.759756 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63234 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58559 -> 193.232.180.243:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF31352A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:29.129703 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63235 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:50575 -> 193.232.180.131:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x233F65BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:30.309843 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34631 -> 193.232.180.82:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x14A3BC8D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:31.739976 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63237 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36939 -> 193.232.180.252:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8DB82CE7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:32.049843 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63238 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36217 -> 193.232.180.73:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x64BCF9B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:33.509932 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63239 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:41706 -> 193.232.180.167:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x37897E7E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:34.439983 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63240 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58976 -> 193.232.180.194:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x73A989AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:34.989983 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57388 -> 193.232.180.28:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2F2F6E0A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:35.089997 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33884 -> 193.232.180.37:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA1E6BB6F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:35.379999 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53201 -> 193.232.180.138:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCCF87AC5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:36.619982 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58561 -> 193.232.180.142:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0727335 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:37.181172 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54764 -> 193.232.180.52:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x548B3A1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:38.490166 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51839 -> 193.232.180.33:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2059101B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:39.160323 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52714 -> 193.232.180.12:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEA35185 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:39.440293 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:49271 -> 193.232.180.92:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x776242E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:39.480316 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34491 -> 193.232.180.45:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA324527B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:40.380422 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33179 -> 193.232.180.166:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B0BB0E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:41.520275 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:32837 -> 193.232.180.105:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB94C0777 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:41.620316 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34912 -> 193.232.180.104:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D3CDF88 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:42.420511 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:44854 -> 193.232.180.237:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE29AE0D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:43.130540 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60834 -> 193.232.180.178:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6363A381 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:43.340509 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33432 -> 193.232.180.201:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE308025 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:44.490567 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:47668 -> 193.232.180.38:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA39EAA79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:46.590724 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:45544 -> 193.232.180.64:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD91E8A3D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:48.400500 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39644 -> 193.232.180.162:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x14E0CE27 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:49.150557 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38632 -> 193.232.180.106:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD421FCB1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:50.070570 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:57904 -> 193.232.180.225:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x269921B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:50.290563 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:51447 -> 193.232.180.226:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE2F4F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:50.500588 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34935 -> 193.232.180.207:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3DD14B58 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:51.340680 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:53727 -> 193.232.180.11:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23A5CF13 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:51.370659 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:52566 -> 193.232.180.2:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B4C3458 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:51.510659 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55638 -> 193.232.180.170:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1C94454 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:51.900838 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:60609 -> 193.232.180.65:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB688394 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:52.100678 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36508 -> 193.232.180.29:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6698B751 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:53.020952 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39270 -> 193.232.180.109:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFDBA619 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:53.440671 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34416 -> 193.232.180.13:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FCC06AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:54.270802 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55131 -> 193.232.180.44:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6662432F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:54.320735 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54113 -> 193.232.180.156:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x99DE18A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:55.770932 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:54590 -> 193.232.180.153:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD3365555 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:56.031127 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36596 -> 193.232.180.49:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCF7408E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:56.110888 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:34994 -> 193.232.180.87:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A602912 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:56.531004 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46006 -> 193.232.180.203:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA2530DA9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:57.240925 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:55280 -> 193.232.180.24:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD0DC3B5E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:57.600906 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:42350 -> 193.232.180.160:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2D54226 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:58.540970 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:46877 -> 193.232.180.253:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFFF71F7B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:58.661029 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33723 -> 193.232.180.233:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE0307C0D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:58.710986 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:43812 -> 193.232.180.89:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8235A26 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:58.741015 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:56526 -> 193.232.180.189:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4CCA4FC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:58.971030 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:36849 -> 193.232.180.171:443 +TCP TTL:231 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8D03CA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:59.160986 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:58863 -> 193.232.180.130:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD6BC49EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:25:59.601088 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:33067 -> 193.232.180.96:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B53DAAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:26:00.221218 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:38622 -> 193.232.180.188:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD9C745A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:26:00.511221 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:39522 -> 193.232.180.143:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC9ADCDD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:26:00.861259 10.255.255.5 -> 172.169.205.214 +ICMP TTL:63 TOS:0xC0 ID:63287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.205.214:37123 -> 193.232.180.150:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2D2BAB08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:28:33.789810 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28407 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30744 -> 193.232.180.200:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:30:32.301512 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:18955 -> 193.232.180.222:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:31:35.224146 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.245:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:33:18.187013 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30696 -> 193.232.180.152:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:36:29.935770 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5288 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.83:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B453 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:37:48.838677 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57389 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.94:443 +TCP TTL:241 TOS:0x0 ID:18898 IpLen:20 DgmLen:40 +Seq: 0x53FBFC37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:42:15.629195 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57390 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.14:80 +TCP TTL:241 TOS:0x0 ID:32091 IpLen:20 DgmLen:40 +Seq: 0xCB32C905 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:44:23.924142 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.62:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:45:30.935988 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28408 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30559 -> 193.232.180.15:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:51:09.860604 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28409 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30729 -> 193.232.180.185:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:51:44.931447 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57391 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.229:80 +TCP TTL:241 TOS:0x0 ID:10377 IpLen:20 DgmLen:40 +Seq: 0x29329C3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:54:50.148677 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57392 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.164:80 +TCP TTL:241 TOS:0x0 ID:4729 IpLen:20 DgmLen:40 +Seq: 0x2F44A68D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:55:42.809123 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30746 -> 193.232.180.202:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:58:28.797394 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.126:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-02:59:37.929836 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30774 -> 193.232.180.230:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:00:23.461994 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57393 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.149:80 +TCP TTL:241 TOS:0x0 ID:56301 IpLen:20 DgmLen:40 +Seq: 0xBCED6F28 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:02:23.566541 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5291 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.146:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:02:31.908296 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28410 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30650 -> 193.232.180.106:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:04:02.830348 10.255.255.5 -> 192.141.9.110 +ICMP TTL:63 TOS:0xC0 ID:330 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.141.9.110:33007 -> 86.110.96.147:80 +TCP TTL:43 TOS:0x0 ID:18322 IpLen:20 DgmLen:60 DF +Seq: 0x3F6435A6 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:08:41.531383 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.153:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B499 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:10:42.132618 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20232 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:369 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 42263 Id: 39939 SeqNo: 42704 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:10:46.140815 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20233 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:2649 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 42254 Id: 39939 SeqNo: 42713 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:10:57.177323 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20234 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:59286 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 17170 Id: 15410 SeqNo: 26791 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:10:58.159396 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20235 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:30190 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 53533 Id: 63052 SeqNo: 8321 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:01.177534 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20236 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:61611 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 17159 Id: 15410 SeqNo: 26802 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:02.158732 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20237 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:31251 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 53524 Id: 63052 SeqNo: 8330 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:13.193244 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20238 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:40294 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 35704 Id: 63571 SeqNo: 25631 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:13.194006 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20239 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:7692 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 3629 Id: 34326 SeqNo: 21416 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:17.202930 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20240 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:42606 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 35693 Id: 63571 SeqNo: 25642 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:11:17.202931 10.255.255.5 -> 202.122.145.90 +ICMP TTL:63 TOS:0xC0 ID:20241 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.122.145.90 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:9451 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 3618 Id: 34326 SeqNo: 21427 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:13:27.654729 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30765 -> 193.232.180.221:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:13:42.765127 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30703 -> 193.232.180.159:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:13:47.437792 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28411 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30649 -> 193.232.180.105:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:16:10.979022 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 86.110.96.158:443 +TCP TTL:242 TOS:0x0 ID:2818 IpLen:20 DgmLen:40 +Seq: 0x560B6A27 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:16:36.539962 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 86.110.96.148:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:17:09.111207 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57394 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.33:80 +TCP TTL:241 TOS:0x0 ID:17859 IpLen:20 DgmLen:40 +Seq: 0xE1CAF1B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:20:28.597502 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30751 -> 193.232.180.207:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:24:05.987603 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57395 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.10:80 +TCP TTL:241 TOS:0x0 ID:11683 IpLen:20 DgmLen:40 +Seq: 0xF22399F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:26:41.093702 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57396 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.236:443 +TCP TTL:241 TOS:0x0 ID:41891 IpLen:20 DgmLen:40 +Seq: 0x899C16F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:27:51.456387 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5294 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.153:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B499 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:28:46.928650 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5295 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.217:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:33:59.530836 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.104:443 +TCP TTL:241 TOS:0x0 ID:23086 IpLen:20 DgmLen:40 +Seq: 0x52EEFFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:36:21.796553 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28412 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30730 -> 193.232.180.186:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:37:57.480189 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57397 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.20:80 +TCP TTL:241 TOS:0x0 ID:1914 IpLen:20 DgmLen:40 +Seq: 0x34E4B33E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:38:55.562380 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5296 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.232:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:41:59.785201 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28413 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30555 -> 193.232.180.11:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:42:01.971217 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28414 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30643 -> 193.232.180.99:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:43:47.733750 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5297 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.243:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:44:41.616005 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5298 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.65:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B441 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:47:40.107710 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28415 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30680 -> 193.232.180.136:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:48:17.234342 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5299 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.201:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:48:49.135656 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57398 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.65:80 +TCP TTL:241 TOS:0x0 ID:63735 IpLen:20 DgmLen:40 +Seq: 0xCE824CE6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:50:14.758960 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57399 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.98:80 +TCP TTL:241 TOS:0x0 ID:45537 IpLen:20 DgmLen:40 +Seq: 0xBCAC05D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:51:53.992850 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5300 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.147:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6093 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:52:31.434438 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5301 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.224:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:53:13.611309 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28416 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30546 -> 193.232.180.2:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:53:17.783426 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28417 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30735 -> 193.232.180.191:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:53:20.540780 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28418 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30709 -> 193.232.180.165:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:57:24.462453 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30614 -> 193.232.180.70:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:58:22.968054 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:57298 -> 193.232.180.223:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-03:58:58.769130 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28419 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30612 -> 193.232.180.68:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:00:15.252631 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57400 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.108:443 +TCP TTL:241 TOS:0x0 ID:32608 IpLen:20 DgmLen:40 +Seq: 0x8FD8CAB7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:00:45.243588 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5302 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.241:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:01:07.204589 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5303 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.132:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B484 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:01:27.705279 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5304 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.157:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:03:01.449023 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:27819 -> 193.232.180.148:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x8ACD10A4 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:05:09.974030 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5305 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.159:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:05:21.564578 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5306 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.242:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:08:34.491999 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.87:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B457 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:10:11.515918 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.228:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:10:16.278568 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28420 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30692 -> 193.232.180.148:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:11:07.879033 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30794 -> 193.232.180.250:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:12:34.081559 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.164:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:12:45.102128 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.113:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B471 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:13:52.664539 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57401 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.88:443 +TCP TTL:241 TOS:0x0 ID:42077 IpLen:20 DgmLen:40 +Seq: 0x8DD411BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:17:14.672438 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57402 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.59:80 +TCP TTL:241 TOS:0x0 ID:44168 IpLen:20 DgmLen:40 +Seq: 0xFCA218E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:17:36.193219 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57403 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.188:80 +TCP TTL:241 TOS:0x0 ID:30906 IpLen:20 DgmLen:40 +Seq: 0x60D4CC56 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:19:43.508324 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57404 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.153:80 +TCP TTL:241 TOS:0x0 ID:44078 IpLen:20 DgmLen:40 +Seq: 0x878518E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:21:14.311695 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.235:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:21:23.224941 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57405 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.43:80 +TCP TTL:241 TOS:0x0 ID:39254 IpLen:20 DgmLen:40 +Seq: 0x57392D2D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:21:35.844139 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28421 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30683 -> 193.232.180.139:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:23:52.608197 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.230:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:24:35.293029 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30656 -> 193.232.180.112:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:26:31.406858 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30736 -> 193.232.180.192:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:29:33.501584 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.232:443 +TCP TTL:241 TOS:0x0 ID:13169 IpLen:20 DgmLen:40 +Seq: 0x36CC8622 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:43.608833 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64360 +TCP TTL:52 TOS:0x0 ID:27688 IpLen:20 DgmLen:91 DF +Seq: 0xC2A6EE1B +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:43.608834 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64360 +TCP TTL:52 TOS:0x0 ID:27689 IpLen:20 DgmLen:52 DF +Seq: 0xC2A6EE42 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:43.608834 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64360 +TCP TTL:52 TOS:0x0 ID:27690 IpLen:20 DgmLen:52 DF +Seq: 0xC2A6EE42 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:43.608834 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64360 +TCP TTL:52 TOS:0x0 ID:27691 IpLen:20 DgmLen:91 DF +Seq: 0xC2A6EE1B +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:43.608834 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64360 +TCP TTL:52 TOS:0x0 ID:27692 IpLen:20 DgmLen:91 DF +Seq: 0xC2A6EE1B +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:44.596639 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.45:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:31:58.417269 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57406 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.179:443 +TCP TTL:241 TOS:0x0 ID:54132 IpLen:20 DgmLen:40 +Seq: 0x4D80667C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:32:50.039254 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.229:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:32:55.614902 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28422 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30565 -> 193.232.180.21:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:37:01.929147 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.110:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:38:36.169687 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28423 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30673 -> 193.232.180.129:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:39:39.495187 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.163:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:40:07.916355 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57407 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.37:443 +TCP TTL:241 TOS:0x0 ID:45537 IpLen:20 DgmLen:40 +Seq: 0xB7B8047F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:45:15.278274 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.138:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:46:05.630272 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57408 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.222:80 +TCP TTL:241 TOS:0x0 ID:27250 IpLen:20 DgmLen:40 +Seq: 0x45C4DEFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:51:45.693799 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.195:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:55:29.372003 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28424 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30764 -> 193.232.180.220:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:55:32.420162 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28425 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30626 -> 193.232.180.82:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:58:25.764676 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30704 -> 193.232.180.160:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:58:35.359657 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.76:443 +TCP TTL:241 TOS:0x0 ID:54931 IpLen:20 DgmLen:40 +Seq: 0x99906364 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-04:58:48.307571 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:9189 -> 86.110.96.149:53 +UDP TTL:1 TOS:0x0 ID:22126 IpLen:20 DgmLen:70 DF +Len: 5 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:01:09.730686 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28426 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30576 -> 193.232.180.32:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:01:13.469830 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28427 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30777 -> 193.232.180.233:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:03:33.221303 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57409 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.12:80 +TCP TTL:241 TOS:0x0 ID:33401 IpLen:20 DgmLen:40 +Seq: 0xA7CB3625 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:05:00.614746 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57410 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.173:443 +TCP TTL:241 TOS:0x0 ID:40909 IpLen:20 DgmLen:40 +Seq: 0xEE1C2ADB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:06:54.211863 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28428 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30651 -> 193.232.180.107:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:07:08.159730 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57411 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.216:443 +TCP TTL:241 TOS:0x0 ID:49036 IpLen:20 DgmLen:40 +Seq: 0xBF200AEF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:08:12.585843 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30675 -> 193.232.180.131:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:08:16.342412 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.36:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B424 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:09:15.694762 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:22707 -> 193.232.180.67:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B443 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:10:28.591839 10.255.255.5 -> 218.60.22.67 +ICMP TTL:63 TOS:0xC0 ID:23772 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.60.22.67 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:30243 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 52783 Id: 32617 SeqNo: 39506 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:10:28.597559 10.255.255.5 -> 218.60.22.67 +ICMP TTL:63 TOS:0xC0 ID:23773 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.60.22.67 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:61883 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 24135 Id: 50906 SeqNo: 49865 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:10:32.593796 10.255.255.5 -> 218.60.22.67 +ICMP TTL:63 TOS:0xC0 ID:23774 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.60.22.67 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:32360 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 52774 Id: 32617 SeqNo: 39515 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:10:32.598732 10.255.255.5 -> 218.60.22.67 +ICMP TTL:63 TOS:0xC0 ID:23775 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.60.22.67 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:63107 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 24126 Id: 50906 SeqNo: 49874 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:12:21.442049 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.101:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B465 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:13:13.644202 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.19:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:13:36.165198 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57412 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.157:443 +TCP TTL:241 TOS:0x0 ID:53400 IpLen:20 DgmLen:40 +Seq: 0x91F265BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:19:38.129119 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.148:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B494 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:20:35.181357 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57413 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.193:443 +TCP TTL:241 TOS:0x0 ID:37528 IpLen:20 DgmLen:40 +Seq: 0x9E0327E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:21:54.376668 10.255.255.5 -> 164.113.200.5 +ICMP TTL:63 TOS:0xC0 ID:60293 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +164.113.200.5 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 50418 Id: 50418 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:21:59.396588 10.255.255.5 -> 164.113.200.5 +ICMP TTL:63 TOS:0xC0 ID:60294 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +164.113.200.5 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 50418 Id: 50418 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:22:04.456921 10.255.255.5 -> 164.113.200.5 +ICMP TTL:63 TOS:0xC0 ID:60295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +164.113.200.5 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 50418 Id: 50418 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:22:43.416603 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.132:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B484 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:22:51.246878 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.245:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:23:51.667254 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28429 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30640 -> 193.232.180.96:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:24:52.631862 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.138:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:26:10.827146 10.255.255.5 -> 107.150.112.182 +ICMP TTL:63 TOS:0xC0 ID:53581 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.150.112.182 -> 193.232.180.236 +ICMP TTL:1 TOS:0x0 ID:15754 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 17312 Id: 15754 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:26:11.081148 10.255.255.5 -> 107.150.112.182 +ICMP TTL:63 TOS:0xC0 ID:53582 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.150.112.182 -> 193.232.180.3 +ICMP TTL:1 TOS:0x0 ID:15754 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 17545 Id: 15754 SeqNo: 22 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:27:35.937911 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57414 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.178:443 +TCP TTL:241 TOS:0x0 ID:57794 IpLen:20 DgmLen:40 +Seq: 0x506154CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:28:04.848965 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.17:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B411 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:29:15.601762 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57415 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.217:80 +TCP TTL:241 TOS:0x0 ID:33060 IpLen:20 DgmLen:40 +Seq: 0x27635AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:29:27.614034 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28430 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30676 -> 193.232.180.132:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:29:57.103666 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57416 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.148:80 +TCP TTL:241 TOS:0x0 ID:3169 IpLen:20 DgmLen:40 +Seq: 0x5612B8A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:30:57.635820 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.219:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:32:22.779408 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:23512 -> 86.110.96.151:80 +TCP TTL:241 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xA4C04DFC +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:34:33.214344 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57417 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.145:443 +TCP TTL:241 TOS:0x0 ID:37389 IpLen:20 DgmLen:40 +Seq: 0xC42727 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:47.831450 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23844 IpLen:20 DgmLen:576 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:244 -> 192.168.0.107:46940 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:1278 DF +Len: 1250 Csum: 55274 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:47.950792 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23845 IpLen:20 DgmLen:576 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:1278 DF +Len: 1250 Csum: 11596 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:48.130272 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23846 IpLen:20 DgmLen:576 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:244 -> 192.168.0.107:46940 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:1278 DF +Len: 1250 Csum: 18625 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:48.428486 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23847 IpLen:20 DgmLen:576 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:244 -> 192.168.0.107:46940 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:1278 DF +Len: 1250 Csum: 64117 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:48.895350 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23848 IpLen:20 DgmLen:576 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:1278 DF +Len: 1250 Csum: 36357 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:52.263139 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23849 IpLen:20 DgmLen:158 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:130 DF +Len: 102 Csum: 2814 +(102 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:52.562241 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23850 IpLen:20 DgmLen:158 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:130 DF +Len: 102 Csum: 15551 +(102 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:53.163828 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23851 IpLen:20 DgmLen:158 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:130 DF +Len: 102 Csum: 45755 +(102 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:54.364386 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23852 IpLen:20 DgmLen:158 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:130 DF +Len: 102 Csum: 28952 +(102 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:54.587162 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23853 IpLen:20 DgmLen:134 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:106 DF +Len: 78 Csum: 45418 +(78 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:55.211329 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23854 IpLen:20 DgmLen:81 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:53 DF +Len: 25 Csum: 59537 +(25 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:55.310433 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23855 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 32549 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:56.288288 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23856 IpLen:20 DgmLen:81 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:53 DF +Len: 25 Csum: 47038 +(25 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:56.637063 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23857 IpLen:20 DgmLen:82 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:54 DF +Len: 26 Csum: 35000 +(26 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:57.338982 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23858 IpLen:20 DgmLen:84 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:56 DF +Len: 28 Csum: 54941 +(28 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:57.710337 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23859 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 14211 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:58.310465 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23860 IpLen:20 DgmLen:84 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:56 DF +Len: 28 Csum: 34153 +(28 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:58.434985 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23861 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 29591 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:37:58.740242 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23862 IpLen:20 DgmLen:86 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 56009 +(30 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:01.411891 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23863 IpLen:20 DgmLen:86 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 35892 +(30 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:01.506834 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23864 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 53747 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:01.558253 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23865 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 24037 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:04.513538 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23866 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 51075 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:04.607649 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23867 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 51012 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:07.147775 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23868 IpLen:20 DgmLen:90 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:62 DF +Len: 34 Csum: 44394 +(34 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:07.610724 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23869 IpLen:20 DgmLen:90 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:62 DF +Len: 34 Csum: 61188 +(34 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:07.710788 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23870 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 7138 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:10.711889 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23871 IpLen:20 DgmLen:90 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:62 DF +Len: 34 Csum: 3568 +(34 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:38:10.812146 10.255.255.5 -> 142.251.39.106 +ICMP TTL:63 TOS:0xC0 ID:23872 IpLen:20 DgmLen:218 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +142.251.39.106:299 -> 192.168.0.107:53422 +UDP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:190 DF +Len: 162 Csum: 8331 +(162 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:39:12.000224 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30547 -> 193.232.180.3:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:44:37.367905 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57418 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.182:80 +TCP TTL:241 TOS:0x0 ID:30753 IpLen:20 DgmLen:40 +Seq: 0x9C77CCC7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:52:07.300407 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30679 -> 193.232.180.135:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:52:50.827279 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.13:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:53:16.178401 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.114:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B472 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:58:43.401208 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18115 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:33355 -> 86.110.96.154:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x89A3B770 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:58:46.951301 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18116 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:40824 -> 86.110.96.158:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEBCD1FB7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:58:54.851595 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18117 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:55048 -> 86.110.96.156:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2DD88F68 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:59:04.352188 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18118 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:46386 -> 86.110.96.149:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA1DC8BDF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:59:10.500416 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30742 -> 193.232.180.198:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:59:11.682275 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18119 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:41457 -> 86.110.96.146:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD113689 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:59:43.443485 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18121 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:50276 -> 86.110.96.157:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C9F1207 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-05:59:58.543972 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18122 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:59289 -> 86.110.96.147:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7746D8B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:00:06.704436 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18123 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:48398 -> 86.110.96.152:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B8C4AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:00:09.574620 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18124 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:46254 -> 86.110.96.151:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9AA100EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:00:41.745804 10.255.255.5 -> 172.212.61.171 +ICMP TTL:63 TOS:0xC0 ID:18125 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.61.171:55196 -> 86.110.96.153:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA634CC55 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:03:28.518225 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28431 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30689 -> 193.232.180.145:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:11:50.272010 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.2:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:14:48.527127 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28432 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30767 -> 193.232.180.223:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:15:28.900666 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.91:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:15:31.520739 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.16:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B410 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:18:26.147633 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.74:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:21:50.635616 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.217:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:24:20.095840 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:47236 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:62989 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:24:20.095840 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:47941 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:62989 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:24:25.841769 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.23:80 +TCP TTL:241 TOS:0x0 ID:2105 IpLen:20 DgmLen:40 +Seq: 0x4351BC7E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:26:03.351368 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28433 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30645 -> 193.232.180.101:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:26:59.867542 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.187:80 +TCP TTL:241 TOS:0x0 ID:1279 IpLen:20 DgmLen:40 +Seq: 0x1D24B014 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:27:57.209868 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.29:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:33:11.772209 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.178:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:36:42.740275 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:65444 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:56605 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:36:42.740275 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:52813 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:56605 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:37:24.592384 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28434 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30632 -> 193.232.180.88:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:38:01.760162 10.255.255.5 -> 209.209.59.230 +ICMP TTL:63 TOS:0xC0 ID:37485 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.209.59.230 -> 193.232.180.99 +ICMP TTL:1 TOS:0x0 ID:59225 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 39513 Id: 59225 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:38:01.965275 10.255.255.5 -> 209.209.59.230 +ICMP TTL:63 TOS:0xC0 ID:37486 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.209.59.230 -> 193.232.180.48 +ICMP TTL:1 TOS:0x0 ID:59225 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 39564 Id: 59225 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:38:01.965275 10.255.255.5 -> 209.209.59.230 +ICMP TTL:63 TOS:0xC0 ID:37487 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.209.59.230 -> 193.232.180.67 +ICMP TTL:1 TOS:0x0 ID:59225 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 39545 Id: 59225 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:38:02.013053 10.255.255.5 -> 209.209.59.230 +ICMP TTL:63 TOS:0xC0 ID:37488 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.209.59.230 -> 193.232.180.18 +ICMP TTL:1 TOS:0x0 ID:59225 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 39594 Id: 59225 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:39:36.587489 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.149:443 +TCP TTL:242 TOS:0x0 ID:27270 IpLen:20 DgmLen:40 +Seq: 0x44F80BA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:41:07.210940 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.222:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:41:43.612295 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.181:443 +TCP TTL:241 TOS:0x0 ID:24463 IpLen:20 DgmLen:40 +Seq: 0x1A2EEA81 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:41:58.522867 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.194:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:42:59.135333 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28435 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30618 -> 193.232.180.74:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:01.514124 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28436 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30708 -> 193.232.180.164:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:02.501971 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28437 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30580 -> 193.232.180.36:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:15.594980 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:42783 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:16.711678 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:26416 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:18.879066 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:59419 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:18.879186 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:59993 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:20.066707 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:8281 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:20.066707 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:12433 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:25.064797 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:27612 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:25.064966 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:17781 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:29.286410 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.47:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:43:30.070356 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:19828 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:50494 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:46:03.011134 10.255.255.5 -> 47.246.2.165 +ICMP TTL:63 TOS:0xC0 ID:56188 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.2.165 -> 193.232.180.125 +ICMP TTL:1 TOS:0x0 ID:10875 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 10909 Id: 10875 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:46:46.624155 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.152:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6098 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:47:37.816078 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5341 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.61:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:48:58.482331 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30701 -> 193.232.180.157:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:49:58.661314 10.255.255.5 -> 185.186.79.37 +ICMP TTL:63 TOS:0xC0 ID:55933 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.79.37 -> 193.232.180.74 +ICMP TTL:1 TOS:0x0 ID:32008 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1220 Id: 32008 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:49:58.726256 10.255.255.5 -> 185.186.79.37 +ICMP TTL:63 TOS:0xC0 ID:55934 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.79.37 -> 193.232.180.254 +ICMP TTL:1 TOS:0x0 ID:32008 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1040 Id: 32008 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:49:58.760262 10.255.255.5 -> 185.186.79.37 +ICMP TTL:63 TOS:0xC0 ID:55935 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.79.37 -> 193.232.180.11 +ICMP TTL:1 TOS:0x0 ID:32008 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1283 Id: 32008 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:53:12.939193 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5342 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.104:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B468 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:55:26.824425 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5343 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.175:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:57:15.188615 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.15:443 +TCP TTL:241 TOS:0x0 ID:46461 IpLen:20 DgmLen:40 +Seq: 0xC4D00C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:57:25.559153 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.6:443 +TCP TTL:241 TOS:0x0 ID:8857 IpLen:20 DgmLen:40 +Seq: 0xAE19724 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:58:39.031993 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5344 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.114:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B472 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-06:59:10.033205 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.123:80 +TCP TTL:241 TOS:0x0 ID:14987 IpLen:20 DgmLen:40 +Seq: 0xA61E8EA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:00:40.436664 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.152:80 +TCP TTL:241 TOS:0x0 ID:61475 IpLen:20 DgmLen:40 +Seq: 0x311F44EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:06:22.180074 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5345 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.100:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B464 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:08:21.914968 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.85:80 +TCP TTL:241 TOS:0x0 ID:29386 IpLen:20 DgmLen:40 +Seq: 0xEC14C6CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:08:29.335167 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5346 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.23:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B417 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:08:33.682467 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:22213 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:64031 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:08:33.683426 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:29570 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:64031 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:11:14.254499 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:30614 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:63261 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:11:14.254499 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:63281 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:63261 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:14:17.868739 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5347 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.180:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:17:22.615858 10.255.255.5 -> 192.81.216.55 +ICMP TTL:63 TOS:0xC0 ID:34025 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.81.216.55:59450 -> 193.232.180.165:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xFB6BACB4 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:17:39.716544 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5348 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.148:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:05.516701 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:21134 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:06.199965 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:61814 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:07.293365 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:21904 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:07.293365 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:18810 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:10.205484 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:21809 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:10.205484 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:22661 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:15.327405 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:18426 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:15.327405 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:26054 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:20.216470 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:2380 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:54622 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:20:42.073724 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5349 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.138:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:22:26.637846 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.169:80 +TCP TTL:241 TOS:0x0 ID:40676 IpLen:20 DgmLen:40 +Seq: 0xF4D2A1D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:23:42.430887 10.255.255.5 -> 172.104.13.193 +ICMP TTL:63 TOS:0xC0 ID:4739 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.13.193:45408 -> 193.232.180.210:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x7BF9612 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:26:19.007185 10.255.255.5 -> 172.104.13.193 +ICMP TTL:63 TOS:0xC0 ID:4740 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.13.193:60968 -> 193.232.180.225:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xD1F0DE97 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:26:49.418044 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5350 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.212:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:27:23.583143 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:26442 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:57764 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:64 DF +Len: 36 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:27:23.587554 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:19846 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:57764 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:64 DF +Len: 36 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:28:51.513016 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5351 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.76:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:29:08.103554 10.255.255.5 -> 192.241.130.226 +ICMP TTL:63 TOS:0xC0 ID:8900 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.130.226:44374 -> 193.232.180.21:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x6C40664A +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:29:37.044700 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5352 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.187:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:35:47.169159 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50512 -> 193.232.180.40:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC6089C8F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:36:02.489741 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.133:443 +TCP TTL:241 TOS:0x0 ID:13329 IpLen:20 DgmLen:40 +Seq: 0x2A68812F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:37:23.333215 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.190:80 +TCP TTL:241 TOS:0x0 ID:35525 IpLen:20 DgmLen:40 +Seq: 0xC72E3E2B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:38:26.165269 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5353 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.250:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:39:10.647284 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5354 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.201:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:40:56.501280 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38654 -> 193.232.180.74:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3298C3D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:41:42.423027 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56951 -> 193.232.180.118:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0B3210A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:42:00.413689 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.123:443 +TCP TTL:241 TOS:0x0 ID:43701 IpLen:20 DgmLen:40 +Seq: 0x4B3A1F75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:42:29.384782 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.180:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:44:52.360428 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44201 -> 193.232.180.123:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x36A4A5F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:46:35.484563 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40698 -> 193.232.180.49:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9676C762 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:49:00.380214 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.190:443 +TCP TTL:241 TOS:0x0 ID:6749 IpLen:20 DgmLen:40 +Seq: 0x86BFAF58 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:49:41.341786 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.162:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:31.560703 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:2581 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:32.561027 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:16693 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:33.643939 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:13076 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:33.643939 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:2125 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:36.611402 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:16937 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:36.611402 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:11147 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:41.629223 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:37562 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:50:41.629223 185.93.41.55 -> 172.224.40.135 +ICMP TTL:60 TOS:0x0 ID:35116 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60614 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:52:30.948359 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41638 -> 193.232.180.213:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9DC8E8F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:53:57.811828 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.184:443 +TCP TTL:241 TOS:0x0 ID:803 IpLen:20 DgmLen:40 +Seq: 0xF91CB620 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:54:14.992403 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.252:443 +TCP TTL:241 TOS:0x0 ID:34639 IpLen:20 DgmLen:40 +Seq: 0xC4ED3208 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:56:45.008347 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.224:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:56:53.288696 185.93.41.55 -> 172.224.39.136 +ICMP TTL:60 TOS:0x0 ID:12549 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:49189 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:56:53.288697 185.93.41.55 -> 172.224.39.136 +ICMP TTL:60 TOS:0x0 ID:12373 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:49189 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:57:00.209226 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.242:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-07:57:52.220930 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:7029 -> 193.232.180.103:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B467 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:00:04.116436 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44232 -> 193.232.180.190:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10A1EC51 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:00:16.734162 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30660 -> 193.232.180.116:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:01:41.078238 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30648 -> 193.232.180.104:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:03:33.884602 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.107:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:34.437403 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:52161 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:35.527731 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:28576 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:36.499254 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:9005 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:36.499255 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:4270 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:39.521932 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:3229 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:39.521932 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:18556 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:44.539539 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:62538 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:44.539539 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:46288 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:05:49.438986 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:16621 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58424 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:08:16.460959 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61750 Id: 61750 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:08:19.475964 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11296 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61750 Id: 61750 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:08:25.625853 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40510 -> 193.232.180.209:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB24FE9AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:10:58.811832 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24500 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:57255 -> 86.110.96.157:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCFD90476 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:11:59.674343 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24501 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:56239 -> 86.110.96.154:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB21F3363 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:19.275147 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24502 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:38121 -> 86.110.96.158:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x475C729C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:22.025131 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24503 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:42836 -> 86.110.96.147:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF20E2F36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:22.155179 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24504 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:51083 -> 86.110.96.156:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC691C052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:22.385079 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24505 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:34927 -> 86.110.96.148:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2B30FDA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:31.825493 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24506 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:37122 -> 86.110.96.146:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0A4DD02 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:37.215629 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24507 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:49559 -> 86.110.96.152:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4C7C8073 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:44.725929 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.205:80 +TCP TTL:241 TOS:0x0 ID:42456 IpLen:20 DgmLen:40 +Seq: 0xD2F11145 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:49.666123 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24508 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:33147 -> 86.110.96.149:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB89934C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:12:51.166183 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24509 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:55332 -> 86.110.96.155:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x601AC2DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:13:04.306811 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24510 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:58945 -> 86.110.96.153:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D6EEBC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:13:14.257163 10.255.255.5 -> 172.168.40.234 +ICMP TTL:63 TOS:0xC0 ID:24511 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.234:45452 -> 86.110.96.151:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96F3F0B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:15:35.684497 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:9508 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:50537 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x144D219D +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:15:35.986917 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:9509 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:50537 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x144D219D +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:15:38.018462 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:9511 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:50537 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x144D219D +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:16:43.735840 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40168 -> 193.232.180.194:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x48B47C48 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:18:37.149822 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59025 -> 193.232.180.205:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA9B9AEF1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:18:55.250570 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60012 -> 193.232.180.151:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4ACFA15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:21:29.606548 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41876 -> 193.232.180.133:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC48FBFA2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:22:15.268480 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57840 -> 193.232.180.185:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA81314EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:24:23.858820 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30774 -> 193.232.180.230:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:24:29.523690 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.45:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:28:21.732766 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47700 -> 193.232.180.122:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6139708D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:32:06.356532 10.255.255.5 -> 41.77.138.90 +ICMP TTL:63 TOS:0xC0 ID:60155 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +41.77.138.90:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2B605424 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:33:09.371635 10.255.255.5 -> 209.58.168.107 +ICMP TTL:63 TOS:0xC0 ID:55390 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.58.168.107:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C24 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:34:39.166999 10.255.255.5 -> 185.103.44.2 +ICMP TTL:63 TOS:0xC0 ID:10001 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.44.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:35:26.999444 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.166:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:36:27.861644 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.65:443 +TCP TTL:241 TOS:0x0 ID:32705 IpLen:20 DgmLen:40 +Seq: 0x9E97CA3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:36:31.554501 10.255.255.5 -> 45.136.160.2 +ICMP TTL:63 TOS:0xC0 ID:18306 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.160.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:38:31.053024 185.93.41.55 -> 172.224.39.132 +ICMP TTL:60 TOS:0x0 ID:27527 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:57336 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:38:31.053024 185.93.41.55 -> 172.224.39.132 +ICMP TTL:60 TOS:0x0 ID:43889 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:57336 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:38:50.885730 10.255.255.5 -> 111.48.225.229 +ICMP TTL:63 TOS:0xC0 ID:52557 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.48.225.229 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:36177 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 23131 Id: 56768 SeqNo: 45007 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:38:54.893606 10.255.255.5 -> 111.48.225.229 +ICMP TTL:63 TOS:0xC0 ID:52558 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.48.225.229 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:38117 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 23122 Id: 56768 SeqNo: 45016 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:39:18.473839 10.255.255.5 -> 94.136.166.2 +ICMP TTL:63 TOS:0xC0 ID:4742 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.166.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x3C00C06 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:39:59.348124 10.255.255.5 -> 185.91.47.2 +ICMP TTL:63 TOS:0xC0 ID:13849 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.91.47.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:40:33.231427 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.28:80 +TCP TTL:241 TOS:0x0 ID:5252 IpLen:20 DgmLen:40 +Seq: 0x15FBA0C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:40:47.323313 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30785 -> 193.232.180.241:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:40:51.262351 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.77:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:41:47.417383 10.255.255.5 -> 45.58.118.202 +ICMP TTL:63 TOS:0xC0 ID:19487 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.58.118.202:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:42:33.186350 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.187:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:42:45.246551 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.146:443 +TCP TTL:241 TOS:0x0 ID:8761 IpLen:20 DgmLen:40 +Seq: 0x12AB9710 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:44:08.171346 10.255.255.5 -> 94.136.161.2 +ICMP TTL:63 TOS:0xC0 ID:35960 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.161.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:44:32.979641 10.255.255.5 -> 185.169.64.13 +ICMP TTL:63 TOS:0xC0 ID:57364 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.169.64.13:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2B60541E +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:44:41.641515 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40265 -> 193.232.180.246:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x999E3FA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:45:01.319995 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30765 -> 193.232.180.221:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:45:14.642409 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40431 -> 193.232.180.178:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1450062C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:45:23.484937 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30703 -> 193.232.180.159:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:46:06.454730 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49814 -> 193.232.180.110:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x47A1B054 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:47:13.697305 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55382 -> 193.232.180.251:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B22C07F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:48:07.291068 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:10712 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:53144 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:48:07.291068 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:16070 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:52390 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:48:07.291069 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:21123 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:52390 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:48:07.291069 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:36932 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:53144 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:48:12.843520 10.255.255.5 -> 185.91.46.2 +ICMP TTL:63 TOS:0xC0 ID:12239 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.91.46.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:49:54.788331 10.255.255.5 -> 218.11.1.2 +ICMP TTL:63 TOS:0xC0 ID:10983 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.11.1.2 -> 193.232.180.26 +ICMP TTL:1 TOS:0x0 ID:10033 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 23243 Id: 10033 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:49:54.810300 10.255.255.5 -> 218.11.1.2 +ICMP TTL:63 TOS:0xC0 ID:10984 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +218.11.1.2 -> 193.232.180.73 +ICMP TTL:1 TOS:0x0 ID:10033 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 23196 Id: 10033 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:49:59.058812 10.255.255.5 -> 185.103.45.2 +ICMP TTL:63 TOS:0xC0 ID:33588 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.45.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:51:00.978754 10.255.255.5 -> 111.203.180.219 +ICMP TTL:63 TOS:0xC0 ID:34087 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.203.180.219 -> 86.110.96.146 +ICMP TTL:1 TOS:0x0 ID:53608 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 28566 Id: 53608 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:51:15.156533 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.228:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:51:29.046952 10.255.255.5 -> 185.103.47.2 +ICMP TTL:63 TOS:0xC0 ID:33942 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.103.47.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C0A +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:52:57.021137 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.168:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:53:00.028532 10.255.255.5 -> 45.136.162.2 +ICMP TTL:63 TOS:0xC0 ID:33683 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.162.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:54:11.183441 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.96:80 +TCP TTL:241 TOS:0x0 ID:3098 IpLen:20 DgmLen:40 +Seq: 0xB485B82A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:55:41.116971 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33839 -> 193.232.180.230:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A9D742F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:56:16.172164 10.255.255.5 -> 94.136.160.2 +ICMP TTL:63 TOS:0xC0 ID:40321 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.136.160.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:57:19.049365 10.255.255.5 -> 3.126.152.131 +ICMP TTL:63 TOS:0xC0 ID:33493 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.126.152.131 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:57:26.892513 10.255.255.5 -> 3.126.152.131 +ICMP TTL:63 TOS:0xC0 ID:33494 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.126.152.131 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:12 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 11 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-08:58:24.676420 10.255.255.5 -> 158.58.172.238 +ICMP TTL:63 TOS:0xC0 ID:12937 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +158.58.172.238:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:00:48.448244 10.255.255.5 -> 154.55.139.226 +ICMP TTL:63 TOS:0xC0 ID:24148 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +154.55.139.226 -> 86.110.96.158 +ICMP TTL:1 TOS:0x0 ID:21559 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 60603 Id: 21559 SeqNo: 10 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:01:26.475389 10.255.255.5 -> 45.136.161.2 +ICMP TTL:63 TOS:0xC0 ID:50306 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.136.161.2:49152 -> 193.232.180.41:80 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Seq: 0x2E224C16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:01:53.123719 10.255.255.5 -> 115.220.3.36 +ICMP TTL:63 TOS:0xC0 ID:65503 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +115.220.3.36 -> 193.232.180.62 +ICMP TTL:1 TOS:0x0 ID:11470 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21770 Id: 11470 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:01:53.288763 10.255.255.5 -> 115.220.3.36 +ICMP TTL:63 TOS:0xC0 ID:65504 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +115.220.3.36 -> 193.232.180.237 +ICMP TTL:1 TOS:0x0 ID:11470 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21595 Id: 11470 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:01:53.362691 10.255.255.5 -> 115.220.3.36 +ICMP TTL:63 TOS:0xC0 ID:65505 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +115.220.3.36 -> 193.232.180.112 +ICMP TTL:1 TOS:0x0 ID:11470 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21720 Id: 11470 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:01:53.523736 10.255.255.5 -> 115.220.3.36 +ICMP TTL:63 TOS:0xC0 ID:65506 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +115.220.3.36 -> 193.232.180.70 +ICMP TTL:1 TOS:0x0 ID:11470 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21762 Id: 11470 SeqNo: 24 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:02:32.263195 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5367 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.197:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:03:40.305837 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.129:443 +TCP TTL:241 TOS:0x0 ID:15681 IpLen:20 DgmLen:40 +Seq: 0x4FC5887B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:03:42.450713 10.255.255.5 -> 3.250.0.204 +ICMP TTL:63 TOS:0xC0 ID:32876 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.250.0.204 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:10 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 9 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:03:47.467316 10.255.255.5 -> 3.250.0.204 +ICMP TTL:63 TOS:0xC0 ID:32877 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.250.0.204 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:05:08.419504 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33262 -> 193.232.180.64:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x798DBEE4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:06:19.092335 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.186:443 +TCP TTL:241 TOS:0x0 ID:13777 IpLen:20 DgmLen:40 +Seq: 0x760880D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:06:26.022198 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:35922 -> 193.232.180.56:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B92F697 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:07:05.914292 10.255.255.5 -> 52.194.223.80 +ICMP TTL:63 TOS:0xC0 ID:26203 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.194.223.80 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:25 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 24 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:07:10.924514 10.255.255.5 -> 52.194.223.80 +ICMP TTL:63 TOS:0xC0 ID:26204 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.194.223.80 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:26 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 25 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:07:16.154358 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.147:443 +TCP TTL:242 TOS:0x0 ID:53012 IpLen:20 DgmLen:40 +Seq: 0xA5EAE3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:07:51.001582 10.255.255.5 -> 15.236.154.140 +ICMP TTL:63 TOS:0xC0 ID:59579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.236.154.140 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:10 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 9 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:07:56.009483 10.255.255.5 -> 15.236.154.140 +ICMP TTL:63 TOS:0xC0 ID:59580 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.236.154.140 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:08:54.658384 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50014 -> 193.232.180.166:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDBBA5460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:09:25.268183 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30688 -> 193.232.180.144:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:09:54.514635 10.255.255.5 -> 3.83.193.244 +ICMP TTL:63 TOS:0xC0 ID:55898 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.83.193.244 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:09:59.525718 10.255.255.5 -> 3.83.193.244 +ICMP TTL:63 TOS:0xC0 ID:55899 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.83.193.244 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:28.241775 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60011 -> 193.232.180.41:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3CDAA334 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:35.531998 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:63400 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:36.630044 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:4184 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:37.653440 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:30091 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:37.653491 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:23110 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:40.626898 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:22410 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:10:40.626898 185.93.41.55 -> 172.224.40.132 +ICMP TTL:60 TOS:0x0 ID:7989 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:55482 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.232857 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5227 IpLen:20 DgmLen:107 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23903 IpLen:20 DgmLen:79 DF +Seq: 0x413CDE1 +(51 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.232858 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5228 IpLen:20 DgmLen:92 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23904 IpLen:20 DgmLen:64 DF +Seq: 0x413CE08 +(36 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.232858 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23905 IpLen:20 DgmLen:40 DF +Seq: 0x413CE20 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.232858 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23906 IpLen:20 DgmLen:40 DF +Seq: 0x413CE20 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.232858 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5231 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23907 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:08.233031 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5232 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23908 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:11.232803 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5233 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23910 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:11.232803 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5234 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23911 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:11.232803 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5235 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23912 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:14.233008 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5236 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23913 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:14.233008 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5237 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23914 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:14.233008 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5238 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23915 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:17.233195 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5239 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23916 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:17.233195 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5240 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23917 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:17.233196 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5241 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23918 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:20.233646 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5242 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23919 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:20.233647 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5243 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23920 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:20.233647 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5244 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23921 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:23.233611 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5245 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23922 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:23.233611 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5246 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23923 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:23.233611 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5247 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23924 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:26.233769 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5248 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23925 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:26.233770 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5249 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23926 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:26.233770 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5250 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23927 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:29.233988 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5251 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23928 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:29.233988 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5252 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23929 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:29.233988 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5253 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23930 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:32.234149 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5254 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23931 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:32.234149 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5255 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23932 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:32.234150 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5256 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23933 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:35.234698 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5257 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23934 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:35.234698 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5258 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23935 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:35.234755 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5259 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23936 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:38.234803 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5260 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23937 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:38.234886 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5261 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23938 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:38.234886 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5262 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23939 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:41.235063 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5263 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23940 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:41.235064 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5264 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23941 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:41.235064 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5265 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23942 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:44.235012 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5266 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23943 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:44.235012 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5267 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23944 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:44.235012 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5268 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23945 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:47.235312 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5269 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23946 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:11:47.235312 185.93.41.55 -> 172.65.229.194 +ICMP TTL:61 TOS:0xC0 ID:5270 IpLen:20 DgmLen:131 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.65.229.194:443 -> 185.93.41.55:61049 +TCP TTL:51 TOS:0x0 ID:23947 IpLen:20 DgmLen:103 DF +Seq: 0x413CDE1 +(75 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:00.322174 192.178.241.65 -> 185.93.41.55 +ICMP TTL:250 TOS:0x0 ID:44386 IpLen:20 DgmLen:96 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 64.233.161.94 +ICMP TTL:1 TOS:0x80 ID:65141 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 52467 Id: 1 SeqNo: 9991 +(40 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:00.842291 192.178.241.66 -> 185.93.41.55 +ICMP TTL:250 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 64.233.161.94 +ICMP TTL:1 TOS:0x80 ID:65142 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 52466 Id: 1 SeqNo: 9992 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798485 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63066 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60821 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798485 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63067 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60822 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798486 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63068 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60823 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798486 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63069 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60824 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798486 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63070 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25635 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:34.798486 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63071 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25636 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:38.168402 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63072 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25639 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:38.168402 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63073 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60826 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:38.168402 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63074 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25640 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:42.468633 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63075 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60827 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:42.468633 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63076 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25641 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:50.149370 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63077 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61020 +TCP TTL:51 TOS:0x28 ID:60828 IpLen:20 DgmLen:40 +Seq: 0x61975E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:12:50.149370 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63078 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61034 +TCP TTL:51 TOS:0x28 ID:25642 IpLen:20 DgmLen:40 +Seq: 0x36837834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:17.327443 10.255.255.5 -> 54.180.232.194 +ICMP TTL:63 TOS:0xC0 ID:31180 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.180.232.194 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:42 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 41 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.342804 10.255.255.5 -> 54.180.232.194 +ICMP TTL:63 TOS:0xC0 ID:31181 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.180.232.194 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:43 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 42 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.891504 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63079 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10367 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.891504 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63080 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10368 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.891504 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63081 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10369 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.891504 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63082 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10370 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:22.891504 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63083 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10371 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:26.561455 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63084 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10372 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:30.221781 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63085 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10373 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:13:35.462300 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63086 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:61137 +TCP TTL:51 TOS:0x28 ID:10374 IpLen:20 DgmLen:40 +Seq: 0x6DD963D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:31.931426 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48761 -> 193.232.180.18:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD5379EE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:44.491887 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9391 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45135 -> 193.232.180.90:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD2A2D53 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:44.571773 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9392 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59495 -> 193.232.180.152:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B73DDD2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:44.842231 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9393 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:32960 -> 193.232.180.225:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6B25B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:46.301901 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9394 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:34119 -> 193.232.180.153:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFA8D49F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:46.521915 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9395 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36650 -> 193.232.180.79:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA35D65A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:47.441969 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9396 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33285 -> 193.232.180.134:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB49C6662 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:47.621928 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9397 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39154 -> 193.232.180.213:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA55D9091 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:48.911998 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9398 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52333 -> 193.232.180.228:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62F72E34 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:49.582145 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9399 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38709 -> 193.232.180.166:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9B5EA6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:50.441950 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9400 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41392 -> 193.232.180.171:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5449EB36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:50.872129 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9401 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58968 -> 193.232.180.44:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA04AB555 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:51.352149 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9402 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55690 -> 193.232.180.64:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBDD1C8FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:51.852131 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9403 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59003 -> 193.232.180.244:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x150AC327 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:52.192299 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9404 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:49446 -> 193.232.180.105:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4E969434 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:52.581998 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9405 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:51230 -> 193.232.180.53:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8CA3BCE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:52.912268 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9406 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57600 -> 193.232.180.164:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAF58DAD8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:54.792339 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9407 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48922 -> 193.232.180.215:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC3FA58EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:55.192237 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9408 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60355 -> 193.232.180.151:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1668D37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:55.542201 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9409 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44566 -> 193.232.180.17:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x781B8349 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:55.902179 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9410 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36637 -> 193.232.180.237:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCEEA7456 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:56.032346 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9411 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37258 -> 193.232.180.210:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4EFDFB11 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:56.642473 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9412 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39054 -> 193.232.180.195:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E17878E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:56.822357 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9413 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59731 -> 193.232.180.32:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x617923F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:56.842254 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9414 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45201 -> 193.232.180.42:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x333C3DD0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:56.842255 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9415 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58775 -> 193.232.180.83:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1303CA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:57.662249 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9416 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39635 -> 193.232.180.184:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE237C009 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:57.692477 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9417 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40354 -> 193.232.180.11:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x602DF6B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:58.182260 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9418 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38245 -> 193.232.180.82:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD9682CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:14:59.542649 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9419 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40001 -> 193.232.180.60:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62E67D52 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:01.712487 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9420 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52659 -> 193.232.180.38:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF4D4AA2C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:02.742427 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9421 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37096 -> 193.232.180.200:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6244F178 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:02.742427 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9422 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55032 -> 193.232.180.94:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53BCA025 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:02.892776 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9423 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:51939 -> 193.232.180.146:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x37DB67E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:03.472748 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9424 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53609 -> 193.232.180.248:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9166D2A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:04.972556 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9425 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57957 -> 193.232.180.247:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x611191CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:05.302689 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9426 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36177 -> 193.232.180.57:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x79B90D4E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:05.372533 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9427 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58564 -> 193.232.180.169:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9180F532 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:05.602690 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9428 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45738 -> 193.232.180.122:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2E7A21C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:05.742592 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9429 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42085 -> 193.232.180.30:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC47BE609 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:06.172655 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9430 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55814 -> 193.232.180.9:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9783E234 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:07.782607 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9431 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37616 -> 193.232.180.41:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5DDCEE75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:07.862918 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9432 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37416 -> 193.232.180.99:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE0C8022 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:09.122914 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9433 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41574 -> 193.232.180.101:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA75874A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:09.902802 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9434 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45345 -> 193.232.180.116:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B58A66E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:10.543042 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9435 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53970 -> 193.232.180.78:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD94B06B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:10.842849 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9436 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36395 -> 193.232.180.8:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF07F5ECC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:11.592819 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9437 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:35756 -> 193.232.180.80:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8A2BE542 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:11.803030 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9438 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58622 -> 193.232.180.117:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD4AAC68 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:12.992924 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9439 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37588 -> 193.232.180.100:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC9E5B5A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:14.282944 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9440 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:34048 -> 193.232.180.113:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x985C98C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:14.513000 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9441 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37885 -> 193.232.180.162:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x375727A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:14.742999 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9442 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55138 -> 193.232.180.242:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5BAD1B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:16.463103 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9443 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37313 -> 193.232.180.46:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB75FBA05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.263184 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9444 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38280 -> 193.232.180.191:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAAF0B8A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.293008 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9445 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41258 -> 193.232.180.25:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE948109A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.323343 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9446 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55733 -> 193.232.180.202:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBEAF92FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.333126 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9447 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52219 -> 193.232.180.227:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C12AB3F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.543240 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9448 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37680 -> 193.232.180.145:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0B0B1FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:17.853028 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9449 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37796 -> 193.232.180.231:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFEFC31E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:18.693157 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9450 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57468 -> 193.232.180.143:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5AB3F3E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:18.853360 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9451 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56742 -> 193.232.180.71:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFD403D3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:19.173156 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9452 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48791 -> 193.232.180.39:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2C83BF13 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:19.213285 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9453 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33010 -> 193.232.180.31:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x70C01AB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:19.493265 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9454 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47751 -> 193.232.180.218:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x27D962A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:21.003250 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9455 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37479 -> 193.232.180.223:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC4E1D5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:21.033152 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9456 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53173 -> 193.232.180.54:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDDCB9807 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:22.033471 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9457 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50768 -> 193.232.180.208:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x942123AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:22.273241 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9458 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38613 -> 193.232.180.77:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8A5B7C4B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:23.273339 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9459 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37335 -> 193.232.180.73:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB08E12BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:23.653587 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9460 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55878 -> 193.232.180.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2ECF7834 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:24.263367 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47973 -> 193.232.180.254:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x441AF1CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:25.503385 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9462 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57380 -> 193.232.180.98:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC7DD9BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:25.583333 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9463 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44833 -> 193.232.180.115:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x873C8CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:25.783472 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9464 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59497 -> 193.232.180.161:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCE681B4E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:25.843567 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9465 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50944 -> 193.232.180.139:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE944E9FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:25.923370 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9466 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38237 -> 193.232.180.18:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6968F04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:26.053529 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9467 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55902 -> 193.232.180.61:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD88BDB96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:26.753442 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9468 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33155 -> 193.232.180.34:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2363B99F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:27.343362 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9469 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:35995 -> 193.232.180.5:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7CAD71AB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:27.593453 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9470 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50779 -> 193.232.180.253:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF81DD328 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:27.633514 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9471 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44650 -> 193.232.180.155:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA9C415C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:29.863475 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9472 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59125 -> 193.232.180.211:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B24015 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:30.033630 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9473 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44507 -> 193.232.180.127:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90427A24 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:31.173572 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9474 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37982 -> 193.232.180.106:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E7FABC0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:32.243835 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9475 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38292 -> 193.232.180.45:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECE40CBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:32.323823 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9476 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39759 -> 193.232.180.221:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB091F9F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:34.094007 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9477 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36994 -> 193.232.180.4:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED4AFC30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:34.273779 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9478 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57025 -> 193.232.180.76:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA274DEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:34.743844 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9479 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41174 -> 193.232.180.159:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C2758C4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:34.763791 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9480 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41353 -> 193.232.180.238:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62A7FF1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:34.934108 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9481 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44972 -> 193.232.180.19:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC261E8DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:35.423910 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9482 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40327 -> 193.232.180.22:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51729D68 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:35.853780 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9483 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57436 -> 193.232.180.193:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B692D33 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:35.933845 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9484 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36216 -> 193.232.180.183:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9535134E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:36.123831 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9485 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53349 -> 193.232.180.135:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x986EFB1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:37.223740 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9487 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33878 -> 193.232.180.96:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x45E10CB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:37.803793 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9488 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38431 -> 193.232.180.2:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3FD3AC10 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:38.353776 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9489 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:34841 -> 193.232.180.201:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1530A38B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:39.853962 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9490 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36554 -> 193.232.180.199:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC45FEB48 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:40.183910 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9491 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42347 -> 193.232.180.196:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A72FA1D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:40.243942 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9492 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53496 -> 193.232.180.89:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x509C7641 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:40.443964 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9493 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57243 -> 193.232.180.158:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x119AACC8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:41.373962 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9494 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60411 -> 193.232.180.243:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC13AC15F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:41.613971 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9495 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56002 -> 193.232.180.216:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8C6ED8F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:41.863954 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9496 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38407 -> 193.232.180.47:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6D3259D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:42.663980 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9497 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36973 -> 193.232.180.13:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x15FB8543 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:42.824040 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9498 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45163 -> 193.232.180.157:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9032B5A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:43.204146 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9499 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36749 -> 193.232.180.33:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x38B1FC80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:43.834307 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9500 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56973 -> 193.232.180.16:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DE6A650 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:43.974192 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9501 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36021 -> 193.232.180.188:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBDDD15B8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:44.344128 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9502 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33536 -> 193.232.180.204:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0E7195B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:44.644369 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9503 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56837 -> 193.232.180.251:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7E5DDAE4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:45.214248 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9504 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47749 -> 193.232.180.50:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5D527FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:45.294234 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9505 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54906 -> 193.232.180.203:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBAA99328 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:45.984187 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9506 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60704 -> 193.232.180.156:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB249738B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:46.074290 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9507 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41216 -> 193.232.180.95:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50F11538 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:48.024361 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9508 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59936 -> 193.232.180.103:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9D0DD92B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:49.074518 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9509 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56396 -> 193.232.180.35:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53E52889 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:49.454481 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9510 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54434 -> 193.232.180.154:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF461D49B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:49.644324 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9511 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36213 -> 193.232.180.128:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBAC1C381 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:50.924354 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9512 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59060 -> 193.232.180.150:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD4ECDA2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:53.484493 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9513 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37115 -> 193.232.180.186:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDBAAB6A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:54.464523 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9514 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47948 -> 193.232.180.10:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46069637 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:54.524557 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9515 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39113 -> 193.232.180.224:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x269E54A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:55.084665 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9516 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48608 -> 193.232.180.14:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x86B0F0D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:55.744544 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9517 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55033 -> 193.232.180.189:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCA6B7A74 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:56.634554 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9518 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59923 -> 193.232.180.21:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7ACBCC92 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:57.144608 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9519 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39078 -> 193.232.180.58:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFC9B8334 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:57.254559 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9520 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44352 -> 193.232.180.249:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7458DCF4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:57.864759 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9521 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41914 -> 193.232.180.15:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2C45C271 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:58.164670 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9522 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40421 -> 193.232.180.84:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCFDF872F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:58.424673 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9523 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57041 -> 193.232.180.170:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED2D28DC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:58.704671 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9524 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33276 -> 193.232.180.108:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD09E2FD2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:15:59.404687 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9525 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33469 -> 193.232.180.180:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB1C8D8B3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:00.845110 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9526 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36400 -> 193.232.180.181:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51BCE74C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:02.004765 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9527 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48786 -> 193.232.180.87:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB57236 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:02.354867 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9528 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54930 -> 193.232.180.214:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA71D92CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:02.394743 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9529 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46285 -> 193.232.180.226:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x48EA967B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:02.414802 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9530 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55058 -> 193.232.180.40:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x425CCB98 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:04.394891 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9531 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:51400 -> 193.232.180.252:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9D9E9A1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:05.714865 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9532 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60949 -> 193.232.180.206:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE4062D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:05.794887 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9533 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47466 -> 193.232.180.111:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4650A0CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:06.604935 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9534 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57970 -> 193.232.180.62:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF89C27A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:06.844926 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9535 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41944 -> 193.232.180.92:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1A21B89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:06.964974 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9536 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47385 -> 193.232.180.172:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD07FDF59 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:07.444934 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9537 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47042 -> 193.232.180.56:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7AD96787 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:07.464945 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9538 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60859 -> 193.232.180.136:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1A6460C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:08.215023 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9539 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39781 -> 193.232.180.149:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA041EE40 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:08.794996 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9540 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42497 -> 193.232.180.43:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1DB5C3D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:09.085057 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9541 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47303 -> 193.232.180.124:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10508772 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:09.125024 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9542 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47140 -> 193.232.180.81:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E862664 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:09.255056 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9543 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38071 -> 193.232.180.48:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B86E8C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:09.305056 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9544 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42622 -> 193.232.180.110:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF192AE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:10.365152 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9545 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58222 -> 193.232.180.51:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1FA07D5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:10.985132 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9546 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55910 -> 193.232.180.70:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72D98AF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:11.355141 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9547 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42404 -> 193.232.180.167:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x27ADFDEC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:12.095160 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9548 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60732 -> 193.232.180.222:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51F003D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:12.795223 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9549 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36960 -> 193.232.180.217:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9CDE2333 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:13.095160 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9550 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39051 -> 193.232.180.6:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE8A8D6F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:13.955223 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9551 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53403 -> 193.232.180.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1DBA90F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:14.620115 10.255.255.5 -> 13.127.126.165 +ICMP TTL:63 TOS:0xC0 ID:40895 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.127.126.165 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:14.665275 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9552 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:44990 -> 193.232.180.176:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x516F2905 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:15.255268 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9553 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52278 -> 193.232.180.141:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF312A13 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:15.565221 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9554 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58294 -> 193.232.180.86:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2533315 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:15.745285 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9555 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39503 -> 193.232.180.182:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEF40ACC1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:15.835491 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9556 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45805 -> 193.232.180.138:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2704B6D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:17.565638 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9557 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56351 -> 193.232.180.66:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x13EF11D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:18.385694 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9558 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46585 -> 193.232.180.68:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB32DC945 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:18.935563 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9559 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37578 -> 193.232.180.212:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC9384BDE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:19.595855 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9560 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:35460 -> 193.232.180.160:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FCDE161 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:19.875746 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9561 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:34958 -> 193.232.180.67:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE7857DFE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:20.035533 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9562 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:57384 -> 193.232.180.220:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x740EE7CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:20.160641 10.255.255.5 -> 13.127.126.165 +ICMP TTL:63 TOS:0xC0 ID:40896 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.127.126.165 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:20.855540 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9563 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46017 -> 193.232.180.119:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x217B4A30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:21.245626 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9564 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40839 -> 193.232.180.174:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD51BE2E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:21.515505 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9565 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48032 -> 193.232.180.240:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE02C735 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:21.805860 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9566 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47589 -> 193.232.180.144:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1CD7B1C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:22.205654 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9567 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:43759 -> 193.232.180.168:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC3C49C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:22.695792 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9568 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:47971 -> 193.232.180.36:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x365E56A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:24.145668 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9569 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36139 -> 193.232.180.126:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56E91644 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:24.425682 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9570 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36319 -> 193.232.180.114:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD9B48A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:24.805696 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9571 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45413 -> 193.232.180.52:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x433EEA23 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:25.415896 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9572 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54712 -> 193.232.180.179:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x345D1570 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:25.945735 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9573 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48069 -> 193.232.180.246:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC09D86E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:26.255771 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9574 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41318 -> 193.232.180.69:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74D092A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:27.175937 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9575 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41352 -> 193.232.180.120:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x54F13F80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:27.960574 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48841 -> 193.232.180.85:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFE720E7E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:28.065815 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9577 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40184 -> 193.232.180.37:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x83FD219E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:28.325823 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9578 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52067 -> 193.232.180.233:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAFCC71C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:29.435948 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9579 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42865 -> 193.232.180.229:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6EA561D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:29.615881 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9580 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:55385 -> 193.232.180.192:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8F1D2C47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:29.796028 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9581 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40491 -> 193.232.180.65:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0BEBFAE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:29.855939 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9582 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40399 -> 193.232.180.121:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8D55F915 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:30.345951 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9583 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58859 -> 193.232.180.23:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC57F5AF7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:30.825871 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9584 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45594 -> 193.232.180.185:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x429E8B52 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:31.106008 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9585 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46609 -> 193.232.180.165:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24834CE6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:32.255895 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9586 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:35300 -> 193.232.180.133:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D9526C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:32.436033 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9587 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38576 -> 193.232.180.132:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3FE800C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:32.966040 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9588 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38626 -> 193.232.180.74:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA52EA26 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:33.756067 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9589 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48855 -> 193.232.180.72:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10BF8612 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:33.776013 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9590 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56707 -> 193.232.180.26:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xACFA3DE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:34.426252 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9591 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46955 -> 193.232.180.104:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FB4C903 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:34.466132 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9592 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:49903 -> 193.232.180.197:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED538AC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:35.406119 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9593 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36176 -> 193.232.180.107:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0493E6D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:35.606268 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9594 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:49221 -> 193.232.180.205:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCCD88A4C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:36.066131 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9595 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36331 -> 193.232.180.209:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CC1D350 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:36.326381 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9596 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50188 -> 193.232.180.55:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB18E642C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:37.636171 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9597 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42817 -> 193.232.180.125:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8A5A1C7B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:38.246464 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9598 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50355 -> 193.232.180.245:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52E1C7B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:38.626267 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9599 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33931 -> 193.232.180.28:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA648B489 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:38.666234 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9600 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54939 -> 193.232.180.130:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEDFC9488 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:38.706220 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9601 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48657 -> 193.232.180.91:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC2E7383 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:38.886261 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9602 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:50729 -> 193.232.180.241:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF7134AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:39.226560 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9603 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48626 -> 193.232.180.118:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x362E1E87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:39.646230 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9604 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:34254 -> 193.232.180.93:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4DDA2527 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:40.266496 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9605 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56866 -> 193.232.180.123:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4FD303B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:40.706321 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9606 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:46311 -> 193.232.180.142:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA694BD30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:40.806491 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9607 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:40951 -> 193.232.180.177:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1FAC993E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:41.926693 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9608 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:53217 -> 193.232.180.109:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E24C4C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:41.996631 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9609 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56988 -> 193.232.180.232:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7205DB02 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:42.816653 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9610 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:45090 -> 193.232.180.137:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x58886E78 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:43.876398 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9611 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:43375 -> 193.232.180.59:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1FDB5F0A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:45.566607 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9612 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36200 -> 193.232.180.175:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1EE73C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:45.686484 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9613 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48708 -> 193.232.180.97:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7E3E8990 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:46.256677 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9614 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38084 -> 193.232.180.131:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1CBD3E67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:46.326668 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9615 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60889 -> 193.232.180.75:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4591154A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:47.506706 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9616 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54304 -> 193.232.180.190:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF6144C4D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:48.636609 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9617 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42041 -> 193.232.180.235:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E7EAF1F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.546688 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9618 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:39969 -> 193.232.180.250:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF8C5E593 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.556666 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9619 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:56835 -> 193.232.180.198:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4F6CC979 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.816722 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.242:443 +TCP TTL:241 TOS:0x0 ID:48889 IpLen:20 DgmLen:40 +Seq: 0xBEF70BB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.827195 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9620 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:52481 -> 193.232.180.173:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBFC0C48D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.866674 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9621 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38316 -> 193.232.180.178:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35F34093 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.976840 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9623 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:37766 -> 193.232.180.236:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB3E49B8F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:49.976841 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9622 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:35132 -> 193.232.180.49:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x26A1C3FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:50.046873 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9624 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41203 -> 193.232.180.102:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x53C0725 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:50.766647 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9625 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59027 -> 193.232.180.29:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20C23DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:51.416696 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9626 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:51254 -> 193.232.180.219:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F7C52C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:52.326786 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9627 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:48938 -> 193.232.180.7:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9AAE4578 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:52.536746 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9628 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:58139 -> 193.232.180.234:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8F991174 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:53.956884 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9629 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:38981 -> 193.232.180.112:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9F9EF8C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:53.986898 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9630 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:33889 -> 193.232.180.194:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBEB01E87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:54.346879 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9631 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:36473 -> 193.232.180.230:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5EF1585E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:54.366841 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9632 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:49896 -> 193.232.180.88:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5C2FE54 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:54.576866 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9633 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60457 -> 193.232.180.20:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0400578 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:54.967038 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9634 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:41111 -> 193.232.180.3:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x81238122 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:55.027137 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9635 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:59897 -> 193.232.180.63:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE3E930AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:55.086911 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9636 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:60365 -> 193.232.180.187:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1C694B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:55.247204 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9637 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:42752 -> 193.232.180.239:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD0ADFFDA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:55.746874 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9638 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:49027 -> 193.232.180.207:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2D3EE85 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:16:56.926934 10.255.255.5 -> 172.169.2.172 +ICMP TTL:63 TOS:0xC0 ID:9639 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.2.172:54488 -> 193.232.180.12:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x285BFBDF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:07.089332 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:50591 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:08.086487 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:10018 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:09.085603 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:40126 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:09.085603 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:18444 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:12.143419 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:29738 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:12.143691 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:17077 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:18:23.711388 185.93.41.55 -> 172.224.40.133 +ICMP TTL:62 TOS:0xC0 ID:10901 IpLen:20 DgmLen:114 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58925 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 44444 +(58 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:20:00.919587 10.255.255.5 -> 18.144.59.87 +ICMP TTL:63 TOS:0xC0 ID:47190 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.144.59.87 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:20:05.920674 10.255.255.5 -> 18.144.59.87 +ICMP TTL:63 TOS:0xC0 ID:47191 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.144.59.87 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:20:57.099715 185.93.41.55 -> 172.224.48.16 +ICMP TTL:61 TOS:0x0 ID:37851 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.16:443 -> 185.93.41.55:64236 +UDP TTL:245 TOS:0x0 ID:3581 IpLen:20 DgmLen:331 DF +Len: 303 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:22:22.339776 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:44750 -> 193.232.180.173:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:22:29.669913 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5368 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.242:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:22:59.456132 10.255.255.5 -> 18.118.11.184 +ICMP TTL:63 TOS:0xC0 ID:43112 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.118.11.184 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:23:04.458331 10.255.255.5 -> 18.118.11.184 +ICMP TTL:63 TOS:0xC0 ID:43113 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.118.11.184 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:23:37.042962 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30568 -> 193.232.180.24:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:23:57.573389 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36152 -> 193.232.180.169:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5F60814 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:25:57.865516 185.93.41.55 -> 172.224.40.136 +ICMP TTL:61 TOS:0x0 ID:53126 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.136:443 -> 185.93.41.55:59886 +UDP TTL:50 TOS:0x0 ID:41543 IpLen:20 DgmLen:321 DF +Len: 293 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:26:14.648788 10.255.255.5 -> 35.182.141.67 +ICMP TTL:63 TOS:0xC0 ID:15351 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +35.182.141.67 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:29 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 28 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:26:21.997364 10.255.255.5 -> 35.182.141.67 +ICMP TTL:63 TOS:0xC0 ID:15352 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +35.182.141.67 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:30 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 29 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:27:19.441483 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.7:80 +TCP TTL:241 TOS:0x0 ID:51935 IpLen:20 DgmLen:40 +Seq: 0xF1ED7E88 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:30:15.358604 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.134:80 +TCP TTL:241 TOS:0x0 ID:63328 IpLen:20 DgmLen:40 +Seq: 0xAD1A43B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:30:45.649740 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5369 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.134:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B486 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:31:51.003555 10.255.255.5 -> 8.45.176.250 +ICMP TTL:63 TOS:0xC0 ID:2176 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.45.176.250 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:10568 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 33392 Id: 10568 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:33:29.760331 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30722 -> 193.232.180.178:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:33:43.236528 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42494 -> 193.232.180.121:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2D8AE8E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:34:46.564261 10.255.255.5 -> 3.8.28.28 +ICMP TTL:63 TOS:0xC0 ID:39390 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.8.28.28 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:34:52.971410 10.255.255.5 -> 3.8.28.28 +ICMP TTL:63 TOS:0xC0 ID:39391 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +3.8.28.28 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:36:19.507626 10.255.255.5 -> 13.250.111.159 +ICMP TTL:63 TOS:0xC0 ID:55564 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.250.111.159 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:28 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 27 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:36:24.541958 10.255.255.5 -> 13.250.111.159 +ICMP TTL:63 TOS:0xC0 ID:55565 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.250.111.159 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:29 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 28 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-09:38:32.191729 172.104.241.110 -> 185.93.41.55 +ICMP TTL:50 TOS:0x0 ID:30444 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:35339 Seq:20775 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-09:38:43.545332 172.104.94.121 -> 185.93.41.55 +ICMP TTL:44 TOS:0x0 ID:6526 IpLen:20 DgmLen:34 +Type:8 Code:0 ID:6526 Seq:0 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:39:53.658270 10.255.255.5 -> 13.210.54.119 +ICMP TTL:63 TOS:0xC0 ID:38447 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.210.54.119 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:29 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 28 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:39:58.672424 10.255.255.5 -> 13.210.54.119 +ICMP TTL:63 TOS:0xC0 ID:38448 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.210.54.119 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:30 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 29 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:55.345487 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32417 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05842 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:55.404021 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32418 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:55.535627 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32419 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:55.691481 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32420 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:55.819476 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32421 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:56.054782 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32422 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:56.386410 10.255.255.2 -> 193.108.119.216 +ICMP TTL:253 TOS:0xC0 ID:32427 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +193.108.119.216:8080 -> 10.196.133.163:46834 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x83B05FF7 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:58.473648 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:63829 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:62138 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:40:58.473648 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:36830 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:62138 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:42:07.906277 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5370 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.31:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:42:32.287142 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.207:80 +TCP TTL:241 TOS:0x0 ID:43052 IpLen:20 DgmLen:40 +Seq: 0xB3B81CB3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:46:53.157355 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60941 -> 193.232.180.144:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD89A1D0A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:46:54.869927 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30614 -> 193.232.180.70:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:47:30.098764 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5371 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.73:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B449 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:48:08.610237 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.52:80 +TCP TTL:241 TOS:0x0 ID:38377 IpLen:20 DgmLen:40 +Seq: 0xD4B6218D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:48:47.925701 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:14474 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:62567 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:49:07.096581 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:21119 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:51714 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:49:07.096726 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:59778 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:51714 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:05.113442 10.255.255.5 -> 54.233.18.96 +ICMP TTL:63 TOS:0xC0 ID:63566 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.233.18.96 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:10.121742 10.255.255.5 -> 54.233.18.96 +ICMP TTL:63 TOS:0xC0 ID:63567 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.233.18.96 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:19.145539 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.71:443 +TCP TTL:241 TOS:0x0 ID:38337 IpLen:20 DgmLen:40 +Seq: 0x3EB2203D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:32.199802 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:47989 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:32.672194 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:49024 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:33.756922 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:25985 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:33.756922 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:58108 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:41.593735 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:607 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:41.593735 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:54049 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:50:46.600689 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:33833 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53911 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:51:02.127362 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36241 -> 193.232.180.153:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9F2ACD6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:51:36.900966 10.255.255.5 -> 13.48.42.141 +ICMP TTL:63 TOS:0xC0 ID:6680 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.48.42.141 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:51:41.902240 10.255.255.5 -> 13.48.42.141 +ICMP TTL:63 TOS:0xC0 ID:6681 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.48.42.141 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:52:29.810741 10.255.255.5 -> 172.206.1.22 +ICMP TTL:63 TOS:0xC0 ID:30513 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.1.22:58859 -> 193.232.180.93:80 +TCP TTL:108 TOS:0x0 ID:18542 IpLen:20 DgmLen:52 DF +Seq: 0x7C376DE9 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:52:29.810742 10.255.255.5 -> 172.206.1.22 +ICMP TTL:63 TOS:0xC0 ID:30514 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.1.22:58859 -> 193.232.180.93:80 +TCP TTL:108 TOS:0x0 ID:18543 IpLen:20 DgmLen:52 DF +Seq: 0x7C376DE9 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:52:31.620733 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5372 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.6:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B406 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:52:32.810856 10.255.255.5 -> 172.206.1.22 +ICMP TTL:63 TOS:0xC0 ID:30515 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.1.22:58859 -> 193.232.180.93:80 +TCP TTL:108 TOS:0x0 ID:18544 IpLen:20 DgmLen:52 DF +Seq: 0x7C376DE9 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:52:54.423868 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30772 -> 193.232.180.228:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:54:14.364591 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5373 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.151:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B497 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:54:16.471428 185.93.41.55 -> 172.224.40.134 +ICMP TTL:60 TOS:0x0 ID:23225 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:57219 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:59 DF +Len: 31 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:12.207031 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5374 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.91:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:21.646016 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:45969 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:32803 IpLen:20 DgmLen:1332 +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:21.646017 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:31662 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:32804 IpLen:20 DgmLen:1332 +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:21.646017 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:65295 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:32805 IpLen:20 DgmLen:732 +Len: 704 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:21.678699 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:64355 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:32859 IpLen:20 DgmLen:1332 DF +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:21.949144 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:28759 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:32963 IpLen:20 DgmLen:1332 DF +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:22.360530 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:29385 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:33149 IpLen:20 DgmLen:732 DF +Len: 704 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:23.009530 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:21385 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:33574 IpLen:20 DgmLen:1332 DF +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:24.529451 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:11415 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:34453 IpLen:20 DgmLen:1332 DF +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:27.683138 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:25428 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:36100 IpLen:20 DgmLen:732 DF +Len: 704 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:31.379347 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:54815 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:38697 IpLen:20 DgmLen:1332 +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:31.379347 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:4718 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:38698 IpLen:20 DgmLen:1332 +Len: 1304 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:31.379347 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:3251 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:38699 IpLen:20 DgmLen:417 +Len: 389 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:31.379347 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:64551 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:38698 IpLen:20 DgmLen:390 DF +Len: 362 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:33.187146 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:49031 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:59868 +UDP TTL:244 TOS:0x0 ID:40064 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:55:58.069044 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5375 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.147:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6093 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:08.569200 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.136:443 +TCP TTL:241 TOS:0x0 ID:33591 IpLen:20 DgmLen:40 +Seq: 0x8C13604 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:39.784394 192.178.241.119 -> 185.93.41.55 +ICMP TTL:250 TOS:0x0 ID:15384 IpLen:20 DgmLen:96 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 74.125.131.94 +ICMP TTL:1 TOS:0x80 ID:36964 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 51876 Id: 1 SeqNo: 10582 +(40 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:39.790289 192.178.243.132 -> 185.93.41.55 +ICMP TTL:250 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 74.125.131.94 +ICMP TTL:1 TOS:0x80 ID:36965 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 51875 Id: 1 SeqNo: 10583 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:39.851630 172.253.64.113 -> 185.93.41.55 +ICMP TTL:248 TOS:0x0 ID:63965 IpLen:20 DgmLen:96 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 74.125.131.94 +ICMP TTL:1 TOS:0x80 ID:36968 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 51872 Id: 1 SeqNo: 10586 +(40 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:40.500598 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.159:443 +TCP TTL:241 TOS:0x0 ID:33576 IpLen:20 DgmLen:40 +Seq: 0xCB1F360C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-09:56:48.600739 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.160:80 +TCP TTL:241 TOS:0x0 ID:64852 IpLen:20 DgmLen:40 +Seq: 0x1F4149A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:01:57.305830 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:59389 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:01:58.268157 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:6315 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:01:59.259772 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:24439 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:01:59.261473 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:35856 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:02:02.257859 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:8679 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:02:02.257860 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:27724 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:02:07.307913 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:25340 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:02:07.309763 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:20150 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:02:12.406955 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:8839 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:53348 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:03:44.986999 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5376 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.231:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:06:25.023300 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.105:443 +TCP TTL:241 TOS:0x0 ID:17865 IpLen:20 DgmLen:40 +Seq: 0x5D1F01B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:10.589947 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5377 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.224:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:13.296869 185.93.41.55 -> 172.224.39.136 +ICMP TTL:60 TOS:0x0 ID:52412 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63988 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:13.296870 185.93.41.55 -> 172.224.39.136 +ICMP TTL:60 TOS:0x0 ID:26402 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.136:443 -> 185.93.41.55:63988 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:15.403064 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:24640 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:57945 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:15.403064 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:17914 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:57945 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:15.499283 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:52132 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:55647 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:15.499283 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:36356 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:55647 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:20.465424 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:48312 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:57945 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:20.509329 185.93.41.55 -> 172.224.40.134 +ICMP TTL:61 TOS:0x0 ID:48136 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:55647 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:43.394751 10.255.255.5 -> 116.211.239.113 +ICMP TTL:63 TOS:0xC0 ID:65187 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +116.211.239.113 -> 193.232.180.85 +ICMP TTL:1 TOS:0x0 ID:12114 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21103 Id: 12114 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:43.403453 10.255.255.5 -> 116.211.239.113 +ICMP TTL:63 TOS:0xC0 ID:65188 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +116.211.239.113 -> 193.232.180.167 +ICMP TTL:1 TOS:0x0 ID:12114 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21021 Id: 12114 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:09:43.664456 10.255.255.5 -> 116.211.239.113 +ICMP TTL:63 TOS:0xC0 ID:65189 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +116.211.239.113 -> 193.232.180.108 +ICMP TTL:1 TOS:0x0 ID:12114 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21080 Id: 12114 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:11:05.954519 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:43882 -> 193.232.180.35:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B423 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:11:52.476202 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.8:80 +TCP TTL:241 TOS:0x0 ID:21042 IpLen:20 DgmLen:40 +Seq: 0xBFC9E66A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:12:03.176612 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5378 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.111:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:14:34.999724 192.178.241.181 -> 185.93.41.55 +ICMP TTL:59 TOS:0xC0 ID:50510 IpLen:20 DgmLen:120 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 74.125.205.147 +ICMP TTL:1 TOS:0x80 ID:50151 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 60318 Id: 1 SeqNo: 2140 +(64 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:14:35.005363 192.178.241.146 -> 185.93.41.55 +ICMP TTL:250 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 74.125.205.147 +ICMP TTL:1 TOS:0x80 ID:50152 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 60317 Id: 1 SeqNo: 2141 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:15:11.144187 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5379 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.154:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:17:13.598735 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8462 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:56161 -> 193.232.180.127:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:17:26.819265 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5380 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.117:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B475 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:20:27.946357 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.49:80 +TCP TTL:241 TOS:0x0 ID:24124 IpLen:20 DgmLen:40 +Seq: 0xA7BAEA5D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:23:53.668410 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30634 -> 193.232.180.90:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:24:15.149547 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:29336 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:55088 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:24:15.149548 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:4415 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:55088 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:25:08.847603 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54646 -> 193.232.180.89:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x529F9844 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:25:40.876011 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14029 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30577 -> 193.232.180.33:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:26:09.733618 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:60672 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:60801 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:26:09.733619 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:48239 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:60801 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:27:08.042061 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:32026 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:57040 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:27:15.202268 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5381 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.41:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B429 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:27:49.505186 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12592 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30736 -> 193.232.180.192:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:28:08.471151 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12593 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30656 -> 193.232.180.112:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:30:41.520647 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58921 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:37036 -> 86.110.96.152:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x935FE416 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:30:50.600772 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58922 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:53462 -> 86.110.96.151:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7D581746 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:06.291366 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58923 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:57923 -> 86.110.96.155:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x964A60F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:17.841936 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.187:443 +TCP TTL:241 TOS:0x0 ID:18323 IpLen:20 DgmLen:40 +Seq: 0x9343F293 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:19.951943 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58924 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:60539 -> 86.110.96.147:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x78B5969A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:25.412166 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58925 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:51101 -> 86.110.96.149:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x54662C77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:25.742028 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58926 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:35388 -> 86.110.96.148:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0C94E2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:31:27.242239 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.131:80 +TCP TTL:241 TOS:0x0 ID:2658 IpLen:20 DgmLen:40 +Seq: 0x7AB1BEB1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:08.814039 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51468 -> 193.232.180.34:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC083C6C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:13.614264 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58927 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:47109 -> 86.110.96.156:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6FEDB474 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:21.354318 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58928 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:40266 -> 86.110.96.154:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D9C7F6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:30.324639 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58929 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:38209 -> 86.110.96.153:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5EBB661 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:33.426226 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58930 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:47219 -> 86.110.96.146:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7074BA7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:44.955462 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58931 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:41789 -> 86.110.96.158:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3B30EE6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:32:47.965359 10.255.255.5 -> 172.206.143.231 +ICMP TTL:63 TOS:0xC0 ID:58932 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.143.231:48065 -> 86.110.96.157:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBAA5031E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:42.238198 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46002 +TCP TTL:50 TOS:0x0 ID:15984 IpLen:20 DgmLen:91 DF +Seq: 0xDA80B4DA +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:42.238199 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46002 +TCP TTL:50 TOS:0x0 ID:15985 IpLen:20 DgmLen:52 DF +Seq: 0xDA80B501 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:42.238199 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46002 +TCP TTL:50 TOS:0x0 ID:15986 IpLen:20 DgmLen:52 DF +Seq: 0xDA80B501 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:42.238199 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46002 +TCP TTL:50 TOS:0x0 ID:15987 IpLen:20 DgmLen:91 DF +Seq: 0xDA80B4DA +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:42.238199 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46002 +TCP TTL:50 TOS:0x0 ID:15988 IpLen:20 DgmLen:91 DF +Seq: 0xDA80B4DA +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:48.028392 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59152 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46006 +TCP TTL:52 TOS:0x0 ID:41450 IpLen:20 DgmLen:91 DF +Seq: 0x22D0E5E7 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:48.028392 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59153 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46006 +TCP TTL:52 TOS:0x0 ID:41451 IpLen:20 DgmLen:52 DF +Seq: 0x22D0E60E +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:48.028393 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59154 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46006 +TCP TTL:52 TOS:0x0 ID:41452 IpLen:20 DgmLen:52 DF +Seq: 0x22D0E60E +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:48.028393 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59155 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46006 +TCP TTL:52 TOS:0x0 ID:41453 IpLen:20 DgmLen:91 DF +Seq: 0x22D0E5E7 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:48.028393 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59156 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46006 +TCP TTL:52 TOS:0x0 ID:41454 IpLen:20 DgmLen:91 DF +Seq: 0x22D0E5E7 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:51.998529 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46004 +TCP TTL:52 TOS:0x0 ID:23830 IpLen:20 DgmLen:91 DF +Seq: 0xB6D0995C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:51.998529 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46004 +TCP TTL:52 TOS:0x0 ID:23831 IpLen:20 DgmLen:52 DF +Seq: 0xB6D09983 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:51.998529 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46004 +TCP TTL:52 TOS:0x0 ID:23832 IpLen:20 DgmLen:52 DF +Seq: 0xB6D09983 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:51.998529 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46004 +TCP TTL:52 TOS:0x0 ID:23833 IpLen:20 DgmLen:91 DF +Seq: 0xB6D0995C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:51.998529 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:46004 +TCP TTL:52 TOS:0x0 ID:23834 IpLen:20 DgmLen:91 DF +Seq: 0xB6D0995C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:35:54.002777 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34077 -> 193.232.180.105:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x12AB8036 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:37:16.465967 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37232 -> 193.232.180.5:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5A3EF3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:37:51.257252 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39193 -> 193.232.180.42:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAE34A1BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:40:01.003103 185.93.41.55 -> 172.224.40.134 +ICMP TTL:60 TOS:0x0 ID:28814 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:61307 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:40:02.055445 185.93.41.55 -> 172.224.40.134 +ICMP TTL:60 TOS:0x0 ID:14142 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:61307 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:40:03.079616 185.93.41.55 -> 172.224.40.134 +ICMP TTL:60 TOS:0x0 ID:16990 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:61307 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:459 DF +Len: 431 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:40:03.079685 185.93.41.55 -> 172.224.40.134 +ICMP TTL:60 TOS:0x0 ID:47674 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.134:443 -> 185.93.41.55:61307 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:44:13.805780 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:45793 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:57119 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:44:13.805832 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:39467 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:57119 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:45:41.995724 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5382 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.78:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:47:43.120600 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48417 -> 193.232.180.160:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5EB812EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:48:51.233588 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36499 -> 193.232.180.22:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEF58F67B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:49:31.314639 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33096 -> 193.232.180.15:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4AE25423 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:53:04.682922 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41055 -> 193.232.180.36:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEF49E51E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:54:13.588247 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:40448 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:58246 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:54:13.588247 185.93.41.55 -> 172.224.40.132 +ICMP TTL:61 TOS:0x0 ID:20105 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.132:443 -> 185.93.41.55:58246 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-10:55:42.829146 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:22994 -> 193.232.180.20:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B414 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:23.940202 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:23.940202 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:23.940203 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:23.940203 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:23.940473 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:55705 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 43092 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:23.940474 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:55706 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 49348 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:26.944965 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:26.944965 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:26.944965 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:26.944965 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:26.945132 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:56224 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 49348 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:26.945132 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:56225 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 43092 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:28.270778 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:28.270778 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:29.655920 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:29.655920 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:29.656195 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:57206 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 31793 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:31.272704 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:31.272704 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:32.440055 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1665 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:22507 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:32.440055 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1665 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:22507 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:32.440325 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:57704 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:22507 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:32.657201 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:32.657201 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:32.657327 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:57755 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 31793 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:33.169179 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43285 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23531 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:33.169179 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43285 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23531 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:33.169294 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:57582 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:23531 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:34.278725 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:34.278725 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:35.658174 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:35.658174 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:35.658355 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:57907 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 31793 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:36.940745 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17488 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28907 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:36.940745 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17488 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28907 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:36.940823 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59229 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:28907 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:38.089039 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51186 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30955 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:38.089039 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51186 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30955 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:38.089269 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:4384 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:30955 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:38.255787 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11985 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:31211 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:38.255787 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11985 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:31211 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:39.250850 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11986 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33003 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:39.250850 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11986 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33003 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:40.255514 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11987 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:34795 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:40.255514 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11987 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:34795 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:42.613796 192.168.12.83 -> 192.168.177.40 +ICMP TTL:27 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.168.177.40:62976 -> 192.168.12.83:62992 +UDP TTL:124 TOS:0x0 ID:16019 IpLen:20 DgmLen:345 +Len: 317 Csum: 60520 +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:48.672628 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:48.672628 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:48.672629 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:48.672629 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:48.672951 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:59577 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 2325 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:48.672951 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:59578 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 35835 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:10:51.085046 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28742 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:48619 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:51.085046 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28742 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:48619 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:51.085237 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:43492 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:48619 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:51.676809 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:51.676809 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:51.676809 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:51.676809 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:51.677111 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:60154 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 2325 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:51.677112 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:60155 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 35835 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:54.676838 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:54.676838 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:54.676838 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:54.676838 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:54.676989 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:60569 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 35835 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:54.676989 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:60570 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 2325 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:59.920916 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:10:59.920916 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:10:59.921077 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:44204 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 19424 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:02.455295 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1666 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61931 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:02.455295 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1666 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61931 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:02.455487 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:60704 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:61931 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:02.924541 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:02.924541 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:02.924721 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:44804 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 19424 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:03.182307 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43286 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:62955 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:03.182307 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43286 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:62955 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:03.182587 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:58969 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:62955 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:05.926644 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:05.926644 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:05.926881 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:45301 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 19424 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:06.959629 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17490 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2540 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:06.959629 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17490 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2540 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:06.959630 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59234 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:2540 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:08.112449 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51187 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4588 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:08.112449 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51187 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4588 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:08.112612 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:7667 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:4588 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:08.270213 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11988 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4844 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:08.270213 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11988 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4844 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:09.266429 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11989 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:6380 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:09.266429 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11989 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:6380 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:10.269883 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11990 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8428 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:10.269883 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11990 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8428 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:18.930149 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:18.930149 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:18.930149 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:18.930149 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:18.930149 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:46432 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 3472 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:18.930344 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:46433 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 34477 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:21.101556 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28743 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:21996 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:21.101556 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28743 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:21996 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:21.101789 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:46633 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:21996 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:21.934074 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:21.934074 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:21.934075 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:21.934075 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:21.934243 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:46835 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 34477 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:21.934243 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:46836 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 3472 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:24.935248 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:24.935248 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:24.935248 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:11:24.935248 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:24.935614 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:47380 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 3472 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:24.935614 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:47381 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 34477 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:32.471548 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1667 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33004 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:32.471548 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1667 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33004 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:32.471797 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:65095 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:33004 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:33.201989 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43287 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33260 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:33.201989 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43287 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33260 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:33.202107 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:59768 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:33260 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:34.421808 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:22784 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:0 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:34.421808 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:22784 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:0 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:34.425710 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:51127 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:2407 Seq:0 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:34.425710 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:51127 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:2407 Seq:0 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:35.425727 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:64565 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:35.425727 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:64565 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:1 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:35.549311 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:2467 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:5749 Seq:0 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:35.549311 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:2467 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:5749 Seq:0 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:36.429504 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:39532 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:2 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:36.429504 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:39532 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:2 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:36.447786 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:38956 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:2407 Seq:0 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:36.447786 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:38956 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:2407 Seq:0 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:36.975000 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17492 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:36076 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:36.975000 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17492 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:36076 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:36.975113 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59239 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:36076 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:37.437291 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:26853 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:3 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:37.437291 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:26853 IpLen:20 DgmLen:348 +Type:8 Code:0 ID:9470 Seq:3 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:37.562247 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:17743 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:5749 Seq:0 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:37.562247 192.168.32.219 -> 192.168.32.1 +ICMP TTL:64 TOS:0x0 ID:17743 IpLen:20 DgmLen:1368 +Type:8 Code:0 ID:5749 Seq:0 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:38.126842 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51188 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37356 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:38.126842 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51188 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37356 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:11:38.126995 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:14505 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:37356 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:11:38.280200 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11991 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37612 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:36.505906 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17496 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8173 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:36.505906 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17496 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8173 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:36.506058 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59249 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:8173 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:37.657881 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51190 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9453 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:37.657881 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51190 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9453 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:37.658012 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:22236 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:9453 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:37.817644 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11997 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9709 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:37.817644 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11997 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9709 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:38.819870 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11998 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:10733 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:38.819870 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11998 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:10733 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:39.820022 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11999 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:12013 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:39.820022 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:11999 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:12013 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:12:50.650382 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28746 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18413 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:50.650382 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28746 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18413 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:12:50.650617 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:61909 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:18413 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:02.017559 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1670 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23533 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:02.017559 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1670 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23533 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:02.017810 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:4704 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:23533 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:02.748098 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43290 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:24045 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:02.748098 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43290 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:24045 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:02.748098 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:2629 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:24045 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:06.517988 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17498 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:26861 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:06.517988 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17498 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:26861 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:06.517988 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59254 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:26861 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:07.668107 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51191 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28141 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:07.668107 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51191 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28141 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:07.668230 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:22867 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:28141 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:07.829369 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12000 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28397 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:07.829369 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12000 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28397 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:08.832369 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12001 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:29421 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:08.832369 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12001 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:29421 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:09.835498 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12002 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30701 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:09.835498 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12002 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30701 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:12.295652 192.168.12.83 -> 192.168.177.40 +ICMP TTL:27 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.168.177.40:62976 -> 192.168.12.83:62992 +UDP TTL:124 TOS:0x0 ID:16021 IpLen:20 DgmLen:345 +Len: 317 Csum: 59243 +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:13.598256 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59255 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 8556 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:13.598256 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599409 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599409 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:16.599410 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59256 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 17723 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:16.599410 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:18.182546 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:18.182735 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24633 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 44222 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:18.182735 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24634 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 63148 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:18.182735 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24635 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 32499 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:18.182736 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24636 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 16164 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:19.595549 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59257 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 8556 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:19.595549 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:20.667041 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28747 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37101 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:20.667041 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28747 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37101 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:20.667254 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:63406 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:37101 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176383 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176383 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:21.176384 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:21.176743 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25180 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 16164 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:21.176743 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25181 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 32499 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:21.176743 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25182 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 44222 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:21.176743 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25183 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 63148 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182228 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182228 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:24.182229 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:24.182492 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25928 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 16164 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:24.182492 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25929 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 32499 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:24.182492 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:25930 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 63148 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048479 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048479 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048480 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048480 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048480 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048480 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048598 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:25.048598 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:25.048739 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:63883 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 58649 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:25.048914 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:63884 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 8668 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:25.048914 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:63885 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 34897 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:25.048914 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:63886 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 23029 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:27.346967 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:27.347316 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4178 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 17990 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:27.347316 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4179 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 60357 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:27.347316 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4180 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 46223 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:27.347316 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4181 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 61798 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054721 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054721 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:28.054722 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:28.054935 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64270 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 23029 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:28.054935 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64271 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 34897 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:28.054935 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64272 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 58649 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:28.054936 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64273 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 8668 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640035 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640186 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:29.640186 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:29.640186 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:7751 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 58862 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:29.640346 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:7752 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 10873 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:29.640346 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:7753 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 38468 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:29.640346 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:7754 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 19365 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:30.348523 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:30.348694 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4810 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 61798 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:30.348694 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4811 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 46223 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:30.348875 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4812 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 60357 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:30.348875 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:4813 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 17990 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051233 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051233 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051233 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051233 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051234 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051234 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051234 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:31.051234 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:31.051420 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64700 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 23029 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:31.051420 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64701 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 8668 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:31.051420 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:64702 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 34897 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:32.036016 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1671 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:42477 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.036016 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1671 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:42477 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.036410 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:8123 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:42477 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641897 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641897 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:32.641898 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.642090 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8178 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 19365 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.642090 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8179 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 38468 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.642090 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8180 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 10873 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.642090 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8181 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 58862 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:13:32.763332 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43291 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:42733 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.763332 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43291 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:42733 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:32.763528 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:5131 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:42733 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350135 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350136 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:33.350136 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:33.350306 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:5274 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 60357 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:33.350307 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:5275 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 61798 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:33.350462 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:5276 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 46223 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:33.350462 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:5277 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 17990 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650275 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650275 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650275 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650275 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650276 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650276 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650276 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:13:35.650276 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:35.650439 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8266 IpLen:20 DgmLen:103 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:75 DF +Len: 47 Csum: 19365 +(47 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:35.650581 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8267 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 10873 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:35.650581 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8268 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 38468 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:13:35.650581 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:8269 IpLen:20 DgmLen:99 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:71 DF +Len: 43 Csum: 58862 +(43 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:01.838480 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1672 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61165 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:01.838480 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1672 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61165 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:01.838585 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:12888 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:61165 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:02.390069 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:02.390069 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:02.390184 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:29981 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 58079 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:02.569359 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43292 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61421 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:02.569359 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43292 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61421 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:02.569677 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:7682 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:61421 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:06.331365 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17502 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:64237 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:06.331365 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17502 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:64237 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:06.331365 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59267 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:64237 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:07.490539 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51193 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65517 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:07.490539 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51193 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65517 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:07.490539 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:30655 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:65517 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:07.641934 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12006 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:238 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:07.641934 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12006 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:238 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:08.651489 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12007 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:1262 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:08.651489 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12007 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:1262 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:09.648318 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12008 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2286 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:09.648318 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12008 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2286 ECHO + +[**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] +[Classification: Potentially Bad Traffic] [Priority: 2] +[AppID: DNS] +08/21-11:14:13.739505 192.168.177.1:53 -> 192.168.177.40:62454 +UDP TTL:64 TOS:0x0 ID:39792 IpLen:20 DgmLen:104 DF +Len: 76 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:15.402566 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:15.402566 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:15.402567 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:15.402567 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:15.402747 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:30998 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 1306 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:15.402747 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:30999 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 10365 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:18.399339 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:18.399339 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:18.399339 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:18.399339 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:18.399507 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31163 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 1306 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:18.399507 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31164 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 10365 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:20.486763 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28749 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8942 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:20.486763 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28749 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8942 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:20.487053 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:3896 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:8942 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:20.902927 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:20.902927 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:21.405422 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:21.405422 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:21.405422 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:21.405422 10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:21.405772 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31914 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 1306 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:21.405867 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31915 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.100:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 10365 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:23.900127 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:23.900127 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:26.909242 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:26.909242 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:31.850556 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1673 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14062 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:31.850556 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1673 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14062 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:31.850742 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:17235 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:14062 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:32.580370 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43293 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14574 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:32.580370 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43293 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14574 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:32.580583 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:11347 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:14574 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:36.348120 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17504 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:17390 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:36.348120 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17504 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:17390 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:36.348120 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59272 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:17390 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:37.501687 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51194 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18414 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:37.501687 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51194 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18414 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:37.501924 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:34219 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:18414 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:37.663447 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12009 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18926 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:37.663447 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12009 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18926 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:38.661318 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12010 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:19950 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:38.661318 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12010 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:19950 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:39.662757 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12011 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:20974 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:39.662757 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12011 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:20974 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:39.916207 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:39.916207 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:39.916208 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:39.916208 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:42.023996 192.168.12.83 -> 192.168.177.40 +ICMP TTL:27 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.168.177.40:62976 -> 192.168.12.83:62992 +UDP TTL:124 TOS:0x0 ID:16022 IpLen:20 DgmLen:345 +Len: 317 Csum: 58475 +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:42.916350 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:42.916350 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:42.916351 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:42.916351 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:45.918487 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:45.918487 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:45.918487 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:14:45.918487 10.255.255.5:38187 -> 192.168.177.36:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:14:50.495869 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28750 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:27630 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:50.495869 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28750 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:27630 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:14:50.496149 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:4621 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:27630 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:01.861907 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1674 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:32750 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:01.861907 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1674 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:32750 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:01.862057 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:21803 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:32750 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:02.600642 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43294 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33262 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:02.600642 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43294 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:33262 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:02.600959 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:17100 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:33262 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:06.363272 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17506 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:36078 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:06.363272 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17506 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:36078 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:06.363272 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59277 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:36078 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:07.517665 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51195 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37102 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:07.517665 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51195 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37102 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:07.517665 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:41035 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:37102 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:07.679550 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12012 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37614 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:07.679550 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12012 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:37614 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:08.676201 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12013 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:38638 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:08.676201 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12013 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:38638 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:09.677391 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12014 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:39662 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:09.677391 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12014 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:39662 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:19.440495 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:19.440495 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:19.440702 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:19815 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 26749 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:20.514060 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28751 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:46318 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:20.514060 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28751 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:46318 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:20.514248 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:10273 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:46318 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:22.442400 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:22.442400 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:22.442657 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:20369 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 26749 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:25.444788 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:25.444788 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:25.445009 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:21114 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 26749 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:26.719871 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:26.719871 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:26.719872 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59278 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 20722 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:26.719872 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:26.719872 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:29.717746 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:29.717746 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:29.717747 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59280 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 20722 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:29.717747 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:29.717747 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:31.882430 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1675 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:51438 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:31.882430 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1675 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:51438 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:31.882665 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:25611 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:51438 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:32.615458 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43295 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:51950 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:32.615458 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43295 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:51950 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:32.615637 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:21703 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:51950 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:32.725364 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:32.725364 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:32.725364 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59284 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 20722 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:32.725364 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:32.725364 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:36.386686 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17508 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:54766 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:36.386686 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17508 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:54766 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:36.386686 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59285 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:54766 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:37.534238 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51196 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:56046 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:37.534238 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51196 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:56046 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:37.534438 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:44236 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:56046 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:37.695679 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12015 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:56302 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:37.695679 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12015 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:56302 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:38.458191 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:38.458191 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:38.458191 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:38.458191 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:38.458192 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:22822 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 27956 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:38.458192 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:22823 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4648 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:38.693250 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12016 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:57326 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:38.693250 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12016 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:57326 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:39.693201 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12017 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:58350 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:39.693201 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12017 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:58350 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:41.452251 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:41.452251 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:41.452251 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:41.452251 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:41.452465 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:23449 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 27956 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:41.452465 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:23450 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4648 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:44.456980 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:44.456980 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:44.456980 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:44.456980 10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:44.457265 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24110 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 27956 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:44.457310 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:24111 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.240:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4648 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:45.731883 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:45.731883 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:45.731883 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59286 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4517 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:47.136572 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:47.136572 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:47.136851 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:28407 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 29161 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:48.726489 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:48.726489 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:48.726489 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59287 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4517 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:50.144395 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:50.144395 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:50.144590 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:28671 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 29161 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:15:50.533598 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28752 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65006 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:50.533598 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28752 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65006 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:50.533792 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:11491 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:65006 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:51.735048 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:51.735048 10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:51.735049 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59288 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.40:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 4517 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:53.139806 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:15:53.139806 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:15:53.140058 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:28998 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 29161 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:01.899199 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1676 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4591 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:01.899199 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1676 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:4591 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:01.899352 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:30779 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:4591 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:02.629007 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43296 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:5103 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:02.629007 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43296 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:5103 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:02.629315 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:25833 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:5103 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:06.153742 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:06.153742 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:06.153742 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:06.153742 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:06.153982 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31212 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 50723 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:06.153982 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31213 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 43925 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:06.401601 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17510 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:7919 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:06.401601 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17510 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:7919 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:06.401601 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59293 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:7919 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:07.552248 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51197 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8943 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:07.552248 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51197 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8943 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:07.552375 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:46845 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:8943 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:07.708327 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12018 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9455 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:07.708327 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12018 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:9455 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:08.708654 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12019 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:10479 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:08.708654 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12019 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:10479 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:09.147830 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:09.147830 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:09.147830 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:09.147830 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:09.148064 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31616 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 43925 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:09.148064 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31617 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 50723 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:09.713919 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12020 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:11503 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:09.713919 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12020 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:11503 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:12.072204 192.168.12.83 -> 192.168.177.40 +ICMP TTL:27 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.168.177.40:62976 -> 192.168.12.83:62992 +UDP TTL:124 TOS:0x0 ID:16023 IpLen:20 DgmLen:345 +Len: 317 Csum: 57707 +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:12.148398 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:12.148398 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:12.148399 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:12.148399 10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:12.148638 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31825 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 50723 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:12.148638 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:31826 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.242:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 43925 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:17.402963 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:17.402963 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:17.403209 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:11768 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 17850 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:20.409442 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:20.409442 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:20.409721 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:11786 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 17850 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:20.548491 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28753 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18159 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:20.548491 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28753 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18159 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:20.548791 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:11795 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:18159 ECHO REPLY + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:23.406146 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:23.406146 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:23.406347 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:11923 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 17850 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:31.912137 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1677 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23279 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:31.912137 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1677 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:23279 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:31.912415 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:33544 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:23279 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:32.646124 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43297 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:24047 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:32.646124 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43297 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:24047 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:32.646364 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:31112 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:24047 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:36.414243 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17512 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:26863 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:36.414243 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17512 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:26863 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:36.414244 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:36.414244 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:36.414244 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:36.414244 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:36.414244 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59298 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:26863 ECHO REPLY + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:36.414443 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12210 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 23507 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:36.414443 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12211 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 14009 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:37.572049 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51198 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28143 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:37.572049 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51198 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28143 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:37.572164 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:50866 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:28143 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:37.726309 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12021 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28399 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:37.726309 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12021 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:28399 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:38.724694 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12022 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:29423 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:38.724694 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12022 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:29423 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:39.423038 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:39.423038 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:39.423039 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:39.423039 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:39.423039 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12407 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 23507 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:39.423039 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12408 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 14009 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:16:39.726077 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12023 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30447 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:39.726077 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12023 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:30447 ECHO + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:42.415998 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:42.415998 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1411:21] "PROTOCOL-SNMP public access udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:42.415998 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:1417:18] "PROTOCOL-SNMP request udp" [**] +[Classification: Attempted Information Leak] [Priority: 2] +08/21-11:16:42.415998 10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:42.416141 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12767 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 14009 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:16:42.416141 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0xC0 ID:12768 IpLen:20 DgmLen:101 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +10.255.255.5:38187 -> 192.168.177.235:161 +UDP TTL:63 TOS:0x0 ID:0 IpLen:20 DgmLen:73 DF +Len: 45 Csum: 23507 +(45 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:20.576501 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28755 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:55791 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:20.576501 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28755 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:55791 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:20.576702 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:19976 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:55791 ECHO REPLY + +[**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] +[Classification: Potentially Bad Traffic] [Priority: 2] +[AppID: DNS] +08/21-11:17:28.378098 192.168.177.1:53 -> 192.168.177.36:56979 +UDP TTL:64 TOS:0x0 ID:58747 IpLen:20 DgmLen:114 DF +Len: 86 + +[**] [1:254:17] "PROTOCOL-DNS SPOOF query response with TTL of 1 min. and no authority" [**] +[Classification: Potentially Bad Traffic] [Priority: 2] +[AppID: DNS] +08/21-11:17:28.379360 192.168.177.1:53 -> 192.168.177.36:56979 +UDP TTL:64 TOS:0x0 ID:58749 IpLen:20 DgmLen:114 DF +Len: 86 + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:31.945984 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1679 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61167 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:31.945984 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1679 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61167 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:31.946124 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:35617 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:61167 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:32.677945 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43299 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61423 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:32.677945 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43299 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:61423 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:32.678221 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:40654 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:61423 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:36.448548 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17516 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:64239 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:36.448548 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17516 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:64239 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:36.448549 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59308 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:64239 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:37.607347 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51200 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65519 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:37.607347 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51200 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:65519 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:37.607492 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:63340 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:65519 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:37.757020 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12027 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:240 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:37.757020 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12027 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:240 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:38.757751 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12028 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:1264 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:38.757751 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12028 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:1264 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:39.756251 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12029 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2288 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:39.756251 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12029 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:2288 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:42.117276 192.168.12.83 -> 192.168.177.40 +ICMP TTL:27 TOS:0x0 ID:0 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.168.177.40:62976 -> 192.168.12.83:62992 +UDP TTL:124 TOS:0x0 ID:16024 IpLen:20 DgmLen:345 +Len: 317 Csum: 56939 +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:17:50.593816 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28756 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8944 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:50.593816 10.255.255.5 -> 192.168.177.235 +ICMP TTL:63 TOS:0x0 ID:28756 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:8944 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:17:50.594095 192.168.177.235 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:25279 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:8944 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:18:01.962767 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1680 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14064 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:01.962767 10.255.255.5 -> 192.168.177.242 +ICMP TTL:63 TOS:0x0 ID:1680 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14064 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:01.962931 192.168.177.242 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:42224 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:14064 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:18:02.692307 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43300 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14576 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:02.692307 10.255.255.5 -> 192.168.177.240 +ICMP TTL:63 TOS:0x0 ID:43300 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:14576 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:02.692499 192.168.177.240 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:46262 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:14576 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:18:06.458923 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17518 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:17392 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:06.458923 10.255.255.5 -> 192.168.177.40 +ICMP TTL:63 TOS:0x0 ID:17518 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:17392 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:06.458923 192.168.177.40 -> 10.255.255.5 +ICMP TTL:128 TOS:0x0 ID:59313 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:17392 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:18:07.625453 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51201 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18672 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:07.625453 10.255.255.5 -> 192.168.177.100 +ICMP TTL:63 TOS:0x0 ID:51201 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18672 ECHO + +[**] [1:408:8] "PROTOCOL-ICMP Echo Reply" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:07.625681 192.168.177.100 -> 10.255.255.5 +ICMP TTL:64 TOS:0x0 ID:277 IpLen:20 DgmLen:56 +Type:0 Code:0 ID:33811 Seq:18672 ECHO REPLY + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-11:18:07.768679 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12030 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18928 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:18:07.768679 10.255.255.5 -> 192.168.177.36 +ICMP TTL:63 TOS:0x0 ID:12030 IpLen:20 DgmLen:56 +Type:8 Code:0 ID:33811 Seq:18928 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:29:07.312148 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30603 -> 193.232.180.59:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:29:11.381683 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5392 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.189:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:29:37.109598 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12594 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30675 -> 193.232.180.131:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:29:52.553953 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5393 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.183:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:02.403820 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:15145 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15145 Seq:3 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:02.403820 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:15145 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15145 Seq:3 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:02.800432 10.255.255.5 -> 119.96.108.84 +ICMP TTL:63 TOS:0xC0 ID:51845 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +119.96.108.84 -> 86.110.96.154 +ICMP TTL:1 TOS:0x0 ID:64271 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 17895 Id: 64271 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:23.080175 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58559 -> 193.232.180.71:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEFF28EA9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:23.490992 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44636 -> 193.232.180.173:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9AF58BAF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:30:45.454148 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30657 -> 193.232.180.113:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:31:02.438126 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:35054 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35054 Seq:3 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:31:02.438126 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:35054 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35054 Seq:3 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:31:02.445215 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:35054 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35054 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:31:02.445215 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:35054 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35054 Seq:69 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:32:02.582406 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:36282 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36282 Seq:3 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:32:02.582406 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:36282 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36282 Seq:3 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:32:31.689395 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5394 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.47:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:33:02.508862 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:14842 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:14842 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:33:02.508862 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:14842 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:14842 Seq:69 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:34:02.548074 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:12630 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:12630 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:34:02.548074 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:12630 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:12630 Seq:160 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:35:02.584169 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:31738 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31738 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:35:02.584169 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:31738 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31738 Seq:160 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:35:49.115839 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57346 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.236:80 +TCP TTL:241 TOS:0x0 ID:28447 IpLen:20 DgmLen:40 +Seq: 0xE1CBDBA3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:35:54.789310 185.93.41.55 -> 172.224.94.6 +ICMP TTL:61 TOS:0x0 ID:19965 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:58939 +UDP TTL:48 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:35:54.789337 185.93.41.55 -> 172.224.94.6 +ICMP TTL:61 TOS:0x0 ID:8869 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:58939 +UDP TTL:48 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:36:02.680369 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:40108 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40108 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:36:02.680369 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:40108 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40108 Seq:160 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:37:02.912924 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:8272 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8272 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:37:02.912924 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:8272 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8272 Seq:160 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:39:02.987458 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:50814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50814 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:39:02.987458 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:50814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50814 Seq:160 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:40:03.024692 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:14492 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:14492 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:40:03.024692 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:14492 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:14492 Seq:160 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:40:51.949110 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5395 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.94:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:41:03.055218 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:55896 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55896 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:41:03.055218 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:55896 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55896 Seq:160 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:41:25.649547 185.93.41.55 -> 172.224.48.15 +ICMP TTL:60 TOS:0x0 ID:59617 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.15:443 -> 185.93.41.55:54079 +UDP TTL:244 TOS:0x0 ID:63243 IpLen:20 DgmLen:333 DF +Len: 305 Csum: 0 +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:03.094650 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26757 Seq:160 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:03.094650 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26757 Seq:160 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:17.726869 10.255.255.5 -> 213.183.62.133 +ICMP TTL:63 TOS:0xC0 ID:25352 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +213.183.62.133 -> 193.232.180.99 +ICMP TTL:1 TOS:0x0 ID:37603 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 61135 Id: 37603 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:17.779942 10.255.255.5 -> 213.183.62.133 +ICMP TTL:63 TOS:0xC0 ID:25353 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +213.183.62.133 -> 193.232.180.46 +ICMP TTL:1 TOS:0x0 ID:37603 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 61188 Id: 37603 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:17.928010 10.255.255.5 -> 213.183.62.133 +ICMP TTL:63 TOS:0xC0 ID:25354 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +213.183.62.133 -> 193.232.180.176 +ICMP TTL:1 TOS:0x0 ID:37603 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 61058 Id: 37603 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:42:17.930926 10.255.255.5 -> 213.183.62.133 +ICMP TTL:63 TOS:0xC0 ID:25355 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +213.183.62.133 -> 193.232.180.87 +ICMP TTL:1 TOS:0x0 ID:37603 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 61147 Id: 37603 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:44:03.179854 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:65526 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:65526 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:44:03.179854 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:65526 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:65526 Seq:129 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:44:03.947251 10.255.255.5 -> 47.246.2.132 +ICMP TTL:63 TOS:0xC0 ID:3146 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.2.132 -> 193.232.180.100 +ICMP TTL:1 TOS:0x0 ID:23204 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 9182 Id: 23204 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:44:38.635259 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16768 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30738 -> 193.232.180.194:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:45:03.179036 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:42049 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42049 Seq:36 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:45:03.179036 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:42049 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42049 Seq:36 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:46:03.205596 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:57009 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57009 Seq:36 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:46:03.205596 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:57009 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57009 Seq:36 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:46:03.213439 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:57009 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57009 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:46:03.213439 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:57009 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57009 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:46:16.403940 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.150:443 +TCP TTL:241 TOS:0x0 ID:11297 IpLen:20 DgmLen:40 +Seq: 0xD3A3990C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:47:03.246548 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:28168 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:28168 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:47:03.246548 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:28168 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:28168 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:47:17.657018 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.240:443 +TCP TTL:241 TOS:0x0 ID:6057 IpLen:20 DgmLen:40 +Seq: 0x9EC1A2E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:48:50.506901 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57347 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.16:80 +TCP TTL:241 TOS:0x0 ID:5247 IpLen:20 DgmLen:40 +Seq: 0xEA3CA03F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:49:03.315463 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:38461 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38461 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:49:03.315463 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:38461 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38461 Seq:129 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:50:03.346482 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:9154 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9154 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:50:03.346482 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:9154 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9154 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:50:48.310372 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5396 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.107:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:50:50.091347 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57348 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.234:80 +TCP TTL:241 TOS:0x0 ID:39132 IpLen:20 DgmLen:40 +Seq: 0x103D2C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:00.096844 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57349 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.46:80 +TCP TTL:241 TOS:0x0 ID:7965 IpLen:20 DgmLen:40 +Seq: 0xF709AB63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:03.371717 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:19664 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19664 Seq:36 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:03.371717 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:19664 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19664 Seq:36 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:03.379449 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19664 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19664 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:03.379449 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19664 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19664 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:12.903657 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.193:443 +TCP TTL:241 TOS:0x0 ID:31164 IpLen:20 DgmLen:40 +Seq: 0xCDF7CCC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:51:19.197058 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57350 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.197:80 +TCP TTL:241 TOS:0x0 ID:48883 IpLen:20 DgmLen:40 +Seq: 0x58F30A66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:52:03.405592 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:4535 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:4535 Seq:36 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:52:03.405592 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:4535 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:4535 Seq:36 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:52:03.413544 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:4535 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:4535 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:52:03.413544 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:4535 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:4535 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:52:47.684747 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57351 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.181:80 +TCP TTL:241 TOS:0x0 ID:30374 IpLen:20 DgmLen:40 +Seq: 0x24ACC243 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:53:03.442840 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:9930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9930 Seq:36 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:53:03.442840 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:9930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9930 Seq:36 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:53:03.450936 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:9930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9930 Seq:129 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:53:03.450936 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:9930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:9930 Seq:129 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:54:03.775800 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57352 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.157:80 +TCP TTL:241 TOS:0x0 ID:56487 IpLen:20 DgmLen:40 +Seq: 0x1B24686A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:55:00.546291 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.221:443 +TCP TTL:241 TOS:0x0 ID:7582 IpLen:20 DgmLen:40 +Seq: 0x2F2DA8F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:55:08.130347 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5397 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.151:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6097 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:55:08.510626 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57353 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.146:80 +TCP TTL:241 TOS:0x0 ID:33843 IpLen:20 DgmLen:40 +Seq: 0xAD1C30F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:55:16.705094 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5398 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.232:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:56:03.555676 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:51491 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51491 Seq:37 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:56:03.555676 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:51491 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51491 Seq:37 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:57:20.491732 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57354 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.13:80 +TCP TTL:241 TOS:0x0 ID:14922 IpLen:20 DgmLen:40 +Seq: 0x536C8E17 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:03.615343 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38725 Seq:16 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:03.615343 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38725 Seq:16 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:03.617252 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:38725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38725 Seq:37 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:03.617252 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:38725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38725 Seq:37 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:52.528583 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49242 +TCP TTL:50 TOS:0x0 ID:53518 IpLen:20 DgmLen:91 DF +Seq: 0xA71B18C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:52.528583 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49242 +TCP TTL:50 TOS:0x0 ID:53519 IpLen:20 DgmLen:52 DF +Seq: 0xA71B1B3 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:52.528584 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49242 +TCP TTL:50 TOS:0x0 ID:53520 IpLen:20 DgmLen:52 DF +Seq: 0xA71B1B3 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:52.528584 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49242 +TCP TTL:50 TOS:0x0 ID:53521 IpLen:20 DgmLen:91 DF +Seq: 0xA71B18C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:58:52.528584 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49242 +TCP TTL:50 TOS:0x0 ID:53522 IpLen:20 DgmLen:91 DF +Seq: 0xA71B18C +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:37.385528 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.141:80 +TCP TTL:241 TOS:0x0 ID:1100 IpLen:20 DgmLen:40 +Seq: 0x65C4B091 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:47.538475 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49250 +TCP TTL:50 TOS:0x0 ID:10664 IpLen:20 DgmLen:91 DF +Seq: 0x758DC517 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:47.538475 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49250 +TCP TTL:50 TOS:0x0 ID:10665 IpLen:20 DgmLen:52 DF +Seq: 0x758DC53E +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:47.538475 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49250 +TCP TTL:50 TOS:0x0 ID:10666 IpLen:20 DgmLen:52 DF +Seq: 0x758DC53E +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:47.538475 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49250 +TCP TTL:50 TOS:0x0 ID:10667 IpLen:20 DgmLen:91 DF +Seq: 0x758DC517 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-11:59:47.538509 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49250 +TCP TTL:50 TOS:0x0 ID:10668 IpLen:20 DgmLen:91 DF +Seq: 0x758DC517 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:00:03.673148 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:61118 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61118 Seq:16 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:00:03.673148 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:61118 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61118 Seq:16 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:00:32.605431 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.61:443 +TCP TTL:241 TOS:0x0 ID:53512 IpLen:20 DgmLen:40 +Seq: 0xD466648E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:02:03.740809 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51636 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51636 Seq:16 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:02:03.740809 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51636 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51636 Seq:16 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:02:03.742667 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:51636 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51636 Seq:37 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:02:03.742667 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:51636 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51636 Seq:37 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:04:03.808845 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:21260 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21260 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:04:03.808845 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:21260 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21260 Seq:4 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:04:09.612363 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5399 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.5:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B405 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:04:49.121652 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5400 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.208:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:05:49.630085 10.255.255.5 -> 47.246.50.218 +ICMP TTL:63 TOS:0xC0 ID:46960 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.50.218 -> 193.232.180.254 +ICMP TTL:1 TOS:0x0 ID:1529 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 10479 Id: 1529 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:03.839189 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2708 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2708 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:03.839189 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2708 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2708 Seq:4 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:14.691091 10.255.255.5 -> 123.184.59.70 +ICMP TTL:63 TOS:0xC0 ID:7062 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.184.59.70 -> 193.232.180.152 +ICMP TTL:1 TOS:0x0 ID:31330 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1820 Id: 31330 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:14.702992 10.255.255.5 -> 123.184.59.70 +ICMP TTL:63 TOS:0xC0 ID:7063 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.184.59.70 -> 193.232.180.30 +ICMP TTL:1 TOS:0x0 ID:31330 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1942 Id: 31330 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:14.704999 10.255.255.5 -> 123.184.59.70 +ICMP TTL:63 TOS:0xC0 ID:7064 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.184.59.70 -> 193.232.180.196 +ICMP TTL:1 TOS:0x0 ID:31330 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1776 Id: 31330 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:14.717963 10.255.255.5 -> 123.184.59.70 +ICMP TTL:63 TOS:0xC0 ID:7065 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +123.184.59.70 -> 193.232.180.108 +ICMP TTL:1 TOS:0x0 ID:31330 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1864 Id: 31330 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:18.535178 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:26462 -> 193.232.180.90:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x82D852E6 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:28.165697 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30618 -> 193.232.180.74:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:30.543015 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28407 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30708 -> 193.232.180.164:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:06:31.531900 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28408 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30580 -> 193.232.180.36:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:07:03.843549 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:8899 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8899 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:07:03.843549 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:8899 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8899 Seq:4 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:10:07.184228 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57356 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.127:443 +TCP TTL:241 TOS:0x0 ID:11123 IpLen:20 DgmLen:40 +Seq: 0xDD8A9EB7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:11:05.466379 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51266 -> 193.232.180.179:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44417581 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:12:11.769694 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28409 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30749 -> 193.232.180.205:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:12:44.840327 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39489 -> 86.110.96.146:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB7EC957 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:13:03.880441 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50544 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50544 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:13:03.880441 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50544 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50544 Seq:4 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:14:03.884690 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:46253 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46253 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:14:03.884690 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:46253 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46253 Seq:4 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:16:03.872872 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:44749 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44749 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:16:03.872872 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:44749 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44749 Seq:4 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:16:08.108238 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.60:80 +TCP TTL:241 TOS:0x0 ID:48618 IpLen:20 DgmLen:40 +Seq: 0xE2350986 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.464082 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40957 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B095C03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.497768 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40959 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7DFF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.501898 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40960 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B095D03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.544860 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40962 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B095EE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.547796 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40963 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286A64 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.559786 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40964 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B095EE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.559912 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40965 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.561730 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40966 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C378E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.578830 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40968 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34828 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xEF933892 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.578830 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40969 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0960AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.597619 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40970 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0960AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.619735 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40971 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09612B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.640674 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40972 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09627F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.666425 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40973 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7DFF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.670853 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40974 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0962FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.679629 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40975 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0962FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.704352 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40976 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09644B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.741893 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40979 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0964C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.772827 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40980 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096613 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.783723 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40981 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096613 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.824720 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40983 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0967F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.851998 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40984 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.866188 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40987 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0967F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.884140 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40988 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.884210 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40989 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09694B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.897982 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40990 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34838 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xE94F9678 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.910703 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40991 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0969FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.944402 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40992 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096B4B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.979590 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40993 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7DFF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:05.981519 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40994 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096B4B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.006144 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40995 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096CAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.027005 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40996 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286D80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.049615 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40997 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096CAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.051181 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40998 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096CAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.067797 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:40999 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096DFB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.108708 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41000 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096F47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.139956 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41001 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.154115 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41003 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B096F47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.172969 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41004 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.202108 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41005 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097097 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.229743 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41006 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34844 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xF4B3BA5D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.305768 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41007 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09734F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.370835 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41008 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0974AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.488036 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41009 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B09775F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.542878 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41010 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B0978C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.551059 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41011 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286D80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.555835 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41012 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7DFF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.609982 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41013 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097A27 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.666501 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41014 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.715737 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41015 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.718829 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41016 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C378E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.747746 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41017 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.869937 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41018 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:06.971229 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41019 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.438933 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41020 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.707956 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41021 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7DFF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.755058 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41022 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286D80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.868116 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41023 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.871514 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41024 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C378E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.899235 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41025 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:07.991902 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41026 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E1F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.111834 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41027 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.124644 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41028 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.389851 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41029 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.393945 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41030 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F0128 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.522840 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41031 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.549012 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41032 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE7E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.558860 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41033 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F0290 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.634952 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41034 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F0344 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.710995 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41035 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE7E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.771061 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41036 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F036A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.840837 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41037 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.935402 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41038 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:08.966038 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41039 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.150961 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41040 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.435191 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41041 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.435772 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41042 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.511514 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41043 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.565810 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41044 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.726460 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41045 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.874272 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41046 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:09.948998 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41047 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.099036 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41048 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.099036 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41049 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286D80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.140033 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41050 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.243035 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41051 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.396006 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41052 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F052 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.398413 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41053 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.559192 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41055 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.576209 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41056 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.632790 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41057 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.654136 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41058 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.687038 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41059 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.870338 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41060 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:10.879465 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41061 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:11.166995 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41062 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:11.471095 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41063 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F2B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:11.564246 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41064 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:11.582271 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41065 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:11.912097 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41066 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.351097 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41067 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.399121 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41068 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.454836 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41069 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.646340 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41070 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.668057 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41071 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.913228 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41072 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:12.913228 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41073 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:13.214205 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41074 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:13.214205 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41075 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:13.739264 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41076 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:13.955460 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41077 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:14.751395 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41078 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:14.751540 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41079 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:14.753966 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41080 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:14.771417 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41081 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:34848 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x44286D80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.003172 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41082 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.006229 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41083 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.259826 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41084 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.464226 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41085 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.516335 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41086 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.717329 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41087 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:15.974341 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41088 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:17.030413 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41089 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:17.515517 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41090 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:17.515517 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41091 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:17.822022 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41092 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:17.826321 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41093 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:18.610536 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41094 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:19.643486 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41095 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:20.590554 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41096 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:23.963893 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41097 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:23.979811 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41098 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:24.220091 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41099 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:24.222354 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41100 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:24.476136 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41101 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:25.990801 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41102 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:26.474063 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41103 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:26.744077 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41104 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:27.038269 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41105 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:27.041756 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41106 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:27.804029 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41107 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:28.495021 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41108 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:28.573892 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41109 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:28.609570 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41110 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:29.476887 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41111 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:30.624117 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41112 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:31.071138 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41113 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:31.071165 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41114 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:36.449418 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41115 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.909150 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41116 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.909250 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41117 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.909299 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41118 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.909349 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41119 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.912655 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41120 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:42.973750 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41121 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57640 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x3C241BA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:43.013925 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41122 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.062985 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41123 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.267579 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41124 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.267704 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41125 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.725846 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41126 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.931983 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41127 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.934510 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41128 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.939765 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41129 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:45.939765 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41130 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:47.016000 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41131 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:47.016000 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41132 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:47.989588 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41133 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:47.994042 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41134 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:17:57.971953 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41135 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:00.829334 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41136 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:01.037547 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41137 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:13.076265 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41138 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:15.934503 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41139 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:16.140265 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41140 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:19.785090 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41141 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:19.785090 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41142 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:19.785091 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41143 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:19.787451 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41144 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:20.810894 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41145 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:20.810894 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41146 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:22.823813 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41147 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57610 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x87C37C66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:22.823813 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41148 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:22.824103 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41149 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:23.882770 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41150 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:23.882770 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41151 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:24.857790 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41152 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57586 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x70C8F481 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:26.907791 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41153 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:28.178176 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41154 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:31.039067 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41155 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:31.248143 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41156 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:34.473966 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.173:80 +TCP TTL:241 TOS:0x0 ID:34949 IpLen:20 DgmLen:40 +Seq: 0x8CB3C78 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:43.281843 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41157 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:45.104974 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41158 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:46.362434 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41159 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:18:58.386555 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41160 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:01.456639 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41161 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:03.865427 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:60392 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60392 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:03.865427 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:60392 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60392 Seq:4 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:13.493361 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41162 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:59888 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAD0056D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:16.563533 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41163 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57450 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8ED60343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:32.701969 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41164 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57600 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4B097B7F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:32.701969 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41165 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57562 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD2B7E413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:34.495907 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41166 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57626 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD36F03F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:36.543428 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41167 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4EFFE896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:19:42.686545 10.255.255.5 -> 188.116.24.17 +ICMP TTL:63 TOS:0xC0 ID:41168 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +188.116.24.17:443 -> 10.167.204.222:57528 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x8433B182 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:20:14.690752 10.255.255.5 -> 129.152.29.126 +ICMP TTL:63 TOS:0xC0 ID:5935 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +129.152.29.126 -> 193.232.180.206 +ICMP TTL:1 TOS:0x0 ID:17734 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15362 Id: 17734 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:20:14.925915 10.255.255.5 -> 129.152.29.126 +ICMP TTL:63 TOS:0xC0 ID:5936 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +129.152.29.126 -> 193.232.180.185 +ICMP TTL:1 TOS:0x0 ID:17734 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15383 Id: 17734 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:20:14.929710 10.255.255.5 -> 129.152.29.126 +ICMP TTL:63 TOS:0xC0 ID:5937 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +129.152.29.126 -> 193.232.180.244 +ICMP TTL:1 TOS:0x0 ID:17734 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15324 Id: 17734 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:20:14.933249 10.255.255.5 -> 129.152.29.126 +ICMP TTL:63 TOS:0xC0 ID:5938 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +129.152.29.126 -> 193.232.180.104 +ICMP TTL:1 TOS:0x0 ID:17734 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15464 Id: 17734 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:20:38.868972 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5401 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.100:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B464 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:21:03.872026 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:10884 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10884 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:21:03.872026 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:10884 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10884 Seq:4 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:03.873008 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:43502 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43502 Seq:4 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:03.873008 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:43502 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43502 Seq:4 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:12.385531 185.93.41.55 -> 172.224.48.21 +ICMP TTL:62 TOS:0x0 ID:2020 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:12977 +UDP TTL:247 TOS:0x0 ID:0 IpLen:20 DgmLen:847 DF +Len: 819 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:12.385569 185.93.41.55 -> 172.224.48.21 +ICMP TTL:62 TOS:0x0 ID:51320 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:12977 +UDP TTL:247 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:12.385569 185.93.41.55 -> 172.224.48.21 +ICMP TTL:62 TOS:0x0 ID:47199 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:12977 +UDP TTL:247 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:22:12.385618 185.93.41.55 -> 172.224.48.21 +ICMP TTL:62 TOS:0x0 ID:26767 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.21:443 -> 185.93.41.55:12977 +UDP TTL:247 TOS:0x0 ID:0 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:23:09.784850 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5402 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.102:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B466 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:23:24.566227 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28410 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30653 -> 193.232.180.109:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:23:27.672421 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28411 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30681 -> 193.232.180.137:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:23:28.208480 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28412 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30574 -> 193.232.180.30:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:24:58.832567 10.255.255.5 -> 108.157.214.71 +ICMP TTL:63 TOS:0xC0 ID:53621 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +108.157.214.71:443 -> 172.30.16.248:50933 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x4C670C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:27:03.895220 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:35930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35930 Seq:40 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:27:03.895220 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:35930 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35930 Seq:40 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:27:09.804331 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41280 -> 193.232.180.177:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1C005B01 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:28:03.900300 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:49920 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:49920 Seq:40 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:28:03.900300 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:49920 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:49920 Seq:40 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:28:16.007476 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5403 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.240:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:29:03.825205 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28413 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30594 -> 193.232.180.50:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:29:28.529631 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34982 -> 193.232.180.114:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC3A47C56 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:31:03.913983 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:53370 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53370 Seq:40 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:31:03.913983 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:53370 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53370 Seq:40 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:31:48.975190 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:32852 -> 193.232.180.170:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x34E01ABD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:32:03.915064 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:29396 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29396 Seq:40 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:32:03.915064 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:29396 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29396 Seq:40 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:32:51.891387 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30679 -> 193.232.180.135:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:34:29.731390 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33301 -> 193.232.180.95:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9659181D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:34:47.374083 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28414 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30726 -> 193.232.180.182:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:34:50.130203 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28415 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30758 -> 193.232.180.214:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:34:58.622524 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38832 -> 193.232.180.219:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63999EE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:35:03.918886 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:57407 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57407 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:35:03.918886 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:57407 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57407 Seq:69 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:36:03.925724 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:49739 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:49739 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:36:03.925724 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:49739 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:49739 Seq:69 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:37:03.924649 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:3830 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:3830 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:37:03.924649 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:3830 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:3830 Seq:69 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:37:52.395041 10.255.255.5 -> 172.104.94.121 +ICMP TTL:63 TOS:0xC0 ID:19603 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.104.94.121 -> 86.110.96.151 +ICMP TTL:1 TOS:0x0 ID:9178 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 7456 Id: 9178 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:38:51.161697 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57635 -> 193.232.180.65:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC39A9503 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:40:03.934059 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:48797 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48797 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:40:03.934059 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:48797 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48797 Seq:69 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:41:04.011985 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54826 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54826 Seq:69 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:41:04.011985 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54826 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54826 Seq:69 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:43:58.489985 10.255.255.5 -> 178.176.128.128 +ICMP TTL:63 TOS:0xC0 ID:39929 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.176.128.128:443 -> 172.30.16.248:51995 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xCE8CEFAA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:44:42.725418 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.158:80 +TCP TTL:241 TOS:0x0 ID:43916 IpLen:20 DgmLen:40 +Seq: 0x25E71F42 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:45:03.946871 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:51093 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51093 Seq:20 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:45:03.946871 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:51093 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51093 Seq:20 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:45:21.487154 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48915 -> 193.232.180.129:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2037A002 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:46:52.030564 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.244:80 +TCP TTL:241 TOS:0x0 ID:63382 IpLen:20 DgmLen:40 +Seq: 0x998A4332 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:48:03.956888 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:13668 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13668 Seq:20 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:48:03.956888 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:13668 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13668 Seq:20 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:49:03.963626 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:8176 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8176 Seq:20 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:49:03.963626 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:8176 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:8176 Seq:20 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:49:04.465731 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5404 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.150:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B496 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:49:59.917898 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5405 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.161:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:50:06.138323 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.30:443 +TCP TTL:241 TOS:0x0 ID:61795 IpLen:20 DgmLen:40 +Seq: 0x42A144C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:50:10.538353 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:45061 -> 86.110.96.155:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBC3D4896 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:51:48.564047 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28416 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30674 -> 193.232.180.130:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:54:24.998275 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5406 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.215:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:55:03.991530 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:24506 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24506 Seq:90 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:55:03.991530 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:24506 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24506 Seq:90 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:56:03.991855 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:52519 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52519 Seq:57 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:56:03.991855 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:52519 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52519 Seq:57 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:56:27.843143 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.38:80 +TCP TTL:241 TOS:0x0 ID:44828 IpLen:20 DgmLen:40 +Seq: 0x95751B6A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:56:44.153669 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5407 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.218:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:57:30.830175 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28417 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30684 -> 193.232.180.140:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:58:04.002457 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:42942 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42942 Seq:57 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:58:04.002457 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:42942 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42942 Seq:57 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:58:45.518410 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.12:443 +TCP TTL:241 TOS:0x0 ID:6901 IpLen:20 DgmLen:40 +Seq: 0xCF3AAF42 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:59:07.429374 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37235 -> 193.232.180.87:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4FF2166 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:59:12.299518 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5408 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.38:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B426 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-12:59:51.601148 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.75:80 +TCP TTL:241 TOS:0x0 ID:47062 IpLen:20 DgmLen:40 +Seq: 0xF3A703CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:00:04.009524 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:35036 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35036 Seq:90 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:00:04.009524 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:35036 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:35036 Seq:90 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:01:04.013360 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:56187 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56187 Seq:57 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:01:04.013360 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:56187 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56187 Seq:57 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:02:04.017486 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:34899 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34899 Seq:90 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:02:04.017486 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:34899 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34899 Seq:90 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:05:04.026210 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:63016 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63016 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:05:04.026210 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:63016 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63016 Seq:56 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:05:56.198375 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30797 -> 193.232.180.253:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:06:04.035686 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:60198 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60198 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:06:04.035686 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:60198 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60198 Seq:56 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:06:35.626923 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48832 -> 193.232.180.152:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8955B2B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:07:04.039801 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:33942 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:33942 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:07:04.039801 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:33942 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:33942 Seq:56 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:07:46.729699 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44520 -> 193.232.180.68:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1EA0A36A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:11:04.055637 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:24257 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24257 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:11:04.055637 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:24257 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24257 Seq:56 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:12:04.057760 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:42878 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42878 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:12:04.057760 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:42878 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42878 Seq:56 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:13:04.061608 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:38281 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38281 Seq:56 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:13:04.061608 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:38281 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38281 Seq:56 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:13:54.544122 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49007 -> 193.232.180.24:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5BC540F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:13:58.964295 10.255.255.5 -> 172.172.30.142 +ICMP TTL:63 TOS:0xC0 ID:7383 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.142:43269 -> 193.232.180.33:80 +TCP TTL:47 TOS:0x0 ID:41355 IpLen:20 DgmLen:40 +Seq: 0xC1E8B421 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:18:10.144097 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:35269 -> 193.232.180.242:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4BE4812E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:18:50.715756 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5409 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.67:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B443 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:19:26.607240 10.255.255.5 -> 172.172.30.66 +ICMP TTL:63 TOS:0xC0 ID:2694 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.66:56052 -> 193.232.180.23:80 +TCP TTL:47 TOS:0x0 ID:7855 IpLen:20 DgmLen:40 +Seq: 0xC1E8B417 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:20:33.631153 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30570 -> 193.232.180.26:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:21:46.212501 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.224:443 +TCP TTL:241 TOS:0x0 ID:28351 IpLen:20 DgmLen:40 +Seq: 0xCDF3DBE4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:21:56.832878 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5410 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.112:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B470 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:04.123668 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50019 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50019 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:04.123668 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50019 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50019 Seq:62 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:31.766046 10.255.255.5 -> 76.8.60.71 +ICMP TTL:63 TOS:0xC0 ID:20045 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +76.8.60.71 -> 193.232.180.139 +ICMP TTL:1 TOS:0x0 ID:7587 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25576 Id: 7587 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:31.868760 10.255.255.5 -> 76.8.60.71 +ICMP TTL:63 TOS:0xC0 ID:20046 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +76.8.60.71 -> 193.232.180.10 +ICMP TTL:1 TOS:0x0 ID:7587 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25705 Id: 7587 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:31.870076 10.255.255.5 -> 76.8.60.71 +ICMP TTL:63 TOS:0xC0 ID:20047 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +76.8.60.71 -> 193.232.180.112 +ICMP TTL:1 TOS:0x0 ID:7587 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25603 Id: 7587 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:32.883154 10.255.255.5 -> 76.8.60.71 +ICMP TTL:63 TOS:0xC0 ID:20048 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +76.8.60.71 -> 193.232.180.230 +ICMP TTL:1 TOS:0x0 ID:7587 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 25485 Id: 7587 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:24:40.238610 185.93.41.55 -> 172.224.48.15 +ICMP TTL:60 TOS:0x0 ID:63648 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.15:443 -> 185.93.41.55:57333 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:04.137671 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:17110 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17110 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:04.137671 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:17110 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17110 Seq:62 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:23.023631 10.255.255.5 -> 156.59.219.36 +ICMP TTL:63 TOS:0xC0 ID:2288 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +156.59.219.36 -> 193.232.180.212 +ICMP TTL:1 TOS:0x0 ID:28371 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 4719 Id: 28371 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:23.030648 10.255.255.5 -> 156.59.219.36 +ICMP TTL:63 TOS:0xC0 ID:2289 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +156.59.219.36 -> 193.232.180.185 +ICMP TTL:1 TOS:0x0 ID:28371 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 4746 Id: 28371 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:23.042603 10.255.255.5 -> 156.59.219.36 +ICMP TTL:63 TOS:0xC0 ID:2290 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +156.59.219.36 -> 193.232.180.241 +ICMP TTL:1 TOS:0x0 ID:28371 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 4690 Id: 28371 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:23.283682 10.255.255.5 -> 156.59.219.36 +ICMP TTL:63 TOS:0xC0 ID:2291 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +156.59.219.36 -> 193.232.180.111 +ICMP TTL:1 TOS:0x0 ID:28371 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 4820 Id: 28371 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-13:25:36.012592 192.71.26.73 -> 185.93.41.55 +ICMP TTL:53 TOS:0x0 ID:15207 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:22951 Seq:24781 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:25:44.319397 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28418 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30581 -> 193.232.180.37:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:27:04.122656 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54143 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54143 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:27:04.122656 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54143 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54143 Seq:62 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:29:18.730288 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56652 -> 193.232.180.80:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x67DDF58F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:30:04.133522 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:25377 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25377 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:30:04.133522 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:25377 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25377 Seq:62 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:30:44.964212 192.178.241.251 -> 185.93.41.55 +ICMP TTL:59 TOS:0xC0 ID:19464 IpLen:20 DgmLen:120 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 64.233.164.94 +ICMP TTL:1 TOS:0x80 ID:58346 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 62361 Id: 1 SeqNo: 97 +(64 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:30:44.972257 192.178.241.234 -> 185.93.41.55 +ICMP TTL:251 TOS:0x0 ID:23235 IpLen:20 DgmLen:96 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.93.41.55 -> 64.233.164.94 +ICMP TTL:1 TOS:0x80 ID:58347 IpLen:20 DgmLen:92 DF +Type: 8 Code: 0 Csum: 62360 Id: 1 SeqNo: 98 +(40 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:31:04.139990 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:56791 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56791 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:31:04.139990 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:56791 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56791 Seq:62 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:31:05.244572 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44003 -> 193.232.180.83:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC133B3CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:31:11.584735 10.255.255.5 -> 172.172.26.143 +ICMP TTL:63 TOS:0xC0 ID:14629 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.26.143:35853 -> 193.232.180.155:80 +TCP TTL:46 TOS:0x0 ID:37855 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:32:04.143940 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:27762 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:27762 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:32:04.143940 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:27762 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:27762 Seq:62 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:32:04.146789 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:38914 -> 193.232.180.22:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B416 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:32:18.307511 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.213:80 +TCP TTL:241 TOS:0x0 ID:28592 IpLen:20 DgmLen:40 +Seq: 0x450DDB35 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:33:04.154425 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50310 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50310 Seq:62 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:33:04.154425 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:50310 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50310 Seq:62 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:33:38.350503 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.214:443 +TCP TTL:241 TOS:0x0 ID:51861 IpLen:20 DgmLen:40 +Seq: 0x5FAD7FF8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:33:45.920769 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5411 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.43:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:34:04.148715 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:26304 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26304 Seq:7 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:34:04.148715 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:26304 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26304 Seq:7 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:34:19.480368 10.255.255.5 -> 190.103.186.106 +ICMP TTL:63 TOS:0xC0 ID:5080 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.103.186.106:45079 -> 193.232.180.32:33435 +UDP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 0 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:34:24.515612 10.255.255.5 -> 190.103.186.106 +ICMP TTL:63 TOS:0xC0 ID:5081 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.103.186.106:45079 -> 193.232.180.32:33435 +UDP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 0 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:35:04.152566 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:7083 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7083 Seq:7 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:35:04.152566 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:7083 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7083 Seq:7 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:36:04.165636 185.93.41.55 -> 172.98.87.241 +ICMP TTL:252 TOS:0x0 ID:58594 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58594 Seq:128 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:36:04.165636 185.93.41.55 -> 172.98.87.241 +ICMP TTL:252 TOS:0x0 ID:58594 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58594 Seq:128 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:36:19.326799 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5412 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.251:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:36:52.608270 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5413 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.50:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B432 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:37:00.949346 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28419 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30620 -> 193.232.180.76:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:37:04.156934 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:19063 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19063 Seq:7 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:37:04.156934 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:19063 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19063 Seq:7 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:38:04.170707 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:39500 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39500 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:38:04.170707 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:39500 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39500 Seq:131 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:38:14.521316 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:52472 -> 193.232.180.96:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30993574 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.162121 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:7 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.162121 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:7 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.172954 185.93.41.55 -> 172.98.87.241 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:128 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.172954 185.93.41.55 -> 172.98.87.241 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:128 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.173268 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:40:04.173268 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:40214 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40214 Seq:131 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:53:03.103837 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:38685 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38685 Seq:17 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:53:03.103837 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:38685 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38685 Seq:17 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:56:48.005483 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30701 -> 193.232.180.157:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:57:54.542945 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5418 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.150:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B496 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:59:46.150027 185.93.41.55 -> 172.224.48.11 +ICMP TTL:60 TOS:0x0 ID:49647 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.11:443 -> 185.93.41.55:60871 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-13:59:46.150027 185.93.41.55 -> 172.224.48.11 +ICMP TTL:60 TOS:0x0 ID:3139 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.48.11:443 -> 185.93.41.55:60871 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:00:36.860477 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56039 -> 193.232.180.4:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEBB66B80 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:01:58.114460 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49187 -> 193.232.180.158:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x33ACFBFE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:02:13.112327 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.15:80 +TCP TTL:241 TOS:0x0 ID:58863 IpLen:20 DgmLen:40 +Seq: 0x220751B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:02:34.686816 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30598 -> 193.232.180.54:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:03:40.989648 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.112:443 +TCP TTL:241 TOS:0x0 ID:10550 IpLen:20 DgmLen:40 +Seq: 0x5A059CFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:04:31.717046 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5419 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.84:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B454 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:04:43.621219 10.255.255.5 -> 46.243.143.156 +ICMP TTL:63 TOS:0xC0 ID:50977 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +46.243.143.156:443 -> 172.30.16.248:53894 +TCP TTL:1 TOS:0x0 ID:27131 IpLen:20 DgmLen:40 DF +Seq: 0xC858AF70 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:05:02.703652 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5420 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.166:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:05:10.017672 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5421 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.126:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:05:25.596035 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5422 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.96:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:05:32.779931 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5423 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.160:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:06:03.521532 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34663 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34663 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:06:03.521532 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34663 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34663 Seq:71 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:07:03.552117 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:21730 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21730 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:07:03.552117 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:21730 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21730 Seq:71 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:03.585984 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:801 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:801 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:03.585984 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:801 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:801 Seq:71 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:45.013634 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39833 -> 193.232.180.32:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF98F00FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:55.849901 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:13829 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33147 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:55.849901 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:13830 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33148 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:55.849901 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:13831 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33149 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:55.849975 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:13832 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33150 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:55.850051 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:13833 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33151 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:08:59.884194 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:14055 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33152 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:09:04.014405 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:14717 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33153 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:09:12.211035 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:16684 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33154 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:09:28.348076 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:17638 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:59258 +TCP TTL:51 TOS:0x28 ID:33155 IpLen:20 DgmLen:52 +Seq: 0x9A1421EC +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:10:56.900923 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30623 -> 193.232.180.79:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:10:57.735111 10.255.255.5 -> 172.172.30.197 +ICMP TTL:63 TOS:0xC0 ID:11236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.197:47111 -> 193.232.180.215:80 +TCP TTL:47 TOS:0x0 ID:63183 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:12:03.714074 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34614 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34614 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:12:03.714074 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34614 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34614 Seq:71 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:12:22.058516 185.93.41.55 -> 172.224.39.135 +ICMP TTL:60 TOS:0x0 ID:6473 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:63354 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:12:30.083414 185.93.41.55 -> 172.224.39.135 +ICMP TTL:60 TOS:0x0 ID:52698 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:63354 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:12:55.582991 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:40271 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:55189 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:13:03.746247 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:24747 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24747 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:13:03.746247 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:24747 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24747 Seq:71 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:14:48.019163 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56239 -> 193.232.180.99:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6191269F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:15:15.403950 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.183:80 +TCP TTL:241 TOS:0x0 ID:50824 IpLen:20 DgmLen:40 +Seq: 0xCBFB726F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:15:58.481531 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30700 -> 193.232.180.156:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:16:03.847109 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:13457 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13457 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:16:03.847109 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:13457 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13457 Seq:94 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:16:03.847109 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:13457 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13457 Seq:102 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:16:03.847109 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:13457 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13457 Seq:102 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:16:18.417940 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33702 -> 193.232.180.159:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8F17BE78 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:17:51.442585 10.255.255.5 -> 163.181.0.161 +ICMP TTL:63 TOS:0xC0 ID:36802 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.0.161 -> 193.232.180.236 +ICMP TTL:1 TOS:0x0 ID:46871 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 40696 Id: 46871 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:17:52.981144 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12134 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x5FC71BF3 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:17:53.283334 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12135 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x5FC71BF3 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:17:55.302379 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12137 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56650 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x5FC71BF3 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:18:51.990740 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5424 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.112:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B470 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:03.944124 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:17035 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17035 Seq:102 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:03.944124 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:17035 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17035 Seq:102 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:03.945912 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:17035 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17035 Seq:121 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:03.945912 185.93.41.55 -> 172.98.87.201 +ICMP TTL:252 TOS:0x0 ID:17035 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:17035 Seq:121 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:13.464559 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:14650 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.232:56665 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x72EF8E15 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:13.765519 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:14651 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.232:56665 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x72EF8E15 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:19:15.794926 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:14652 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.232:56665 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x72EF8E15 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:20:03.974494 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:23812 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23812 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:20:03.974494 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:23812 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23812 Seq:94 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:20:49.183772 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.37:80 +TCP TTL:241 TOS:0x0 ID:35725 IpLen:20 DgmLen:40 +Seq: 0x32FA3FF8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:20:51.445028 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.81:443 +TCP TTL:241 TOS:0x0 ID:13614 IpLen:20 DgmLen:40 +Seq: 0x2DCE80C4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:21:04.008196 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:64028 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64028 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:21:04.008196 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:64028 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64028 Seq:94 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:04.050009 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:57606 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57606 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:04.050009 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:57606 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57606 Seq:94 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:16.627099 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28407 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30780 -> 193.232.180.236:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:27.546873 10.255.255.5 -> 172.172.30.143 +ICMP TTL:63 TOS:0xC0 ID:19142 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.143:37766 -> 193.232.180.226:80 +TCP TTL:47 TOS:0x0 ID:33980 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:50.393914 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:83 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:52.691881 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:936 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:54.491446 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:23255 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:457 DF +Len: 429 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:55.538723 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:33716 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:57.045750 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:37031 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:22:57.045750 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:19244 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:23:02.968569 185.93.41.55 -> 172.224.39.137 +ICMP TTL:61 TOS:0x0 ID:27592 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.137:443 -> 185.93.41.55:51435 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:23:24.067178 10.255.255.5 -> 219.142.106.139 +ICMP TTL:63 TOS:0xC0 ID:45009 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +219.142.106.139 -> 193.232.180.81 +ICMP TTL:1 TOS:0x0 ID:20024 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 13197 Id: 20024 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:25:06.192274 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5425 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.98:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B462 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:04.163122 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:658 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:658 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:04.163122 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:658 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:658 Seq:1 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:04.163484 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:658 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:658 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:04.163484 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:658 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:658 Seq:5 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:12.808191 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5426 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.138:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:38.809207 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:14683 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.232:56681 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x1177E229 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:38.811991 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12173 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56680 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x49396071 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:38.811991 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12174 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56680 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x49396071 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:39.114913 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12175 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56680 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x49396071 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:41.156200 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:12176 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56680 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x49396071 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:26:41.156200 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:14685 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.232:56681 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x1177E229 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.194181 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.194181 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:1 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.194397 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.194397 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:5 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.201891 185.93.41.55 -> 172.98.87.216 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:04.201891 185.93.41.55 -> 172.98.87.216 +ICMP TTL:252 TOS:0x0 ID:22903 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:22903 Seq:94 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:13.721013 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:52412 -> 193.232.180.77:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC9C8A26D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:27:50.630206 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28408 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30641 -> 193.232.180.97:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:28:03.006089 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.149:443 +TCP TTL:241 TOS:0x0 ID:25954 IpLen:20 DgmLen:40 +Seq: 0x3972D04C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:28:04.205795 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:5007 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5007 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:28:04.205795 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:5007 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5007 Seq:1 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:28:04.206173 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:5007 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5007 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:28:04.206173 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:5007 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5007 Seq:5 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:29:04.208478 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:2829 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2829 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:29:04.208478 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:2829 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2829 Seq:1 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:29:04.208893 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:2829 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2829 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:29:04.208893 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:2829 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2829 Seq:5 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:30:04.209578 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:58814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58814 Seq:1 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:30:04.209578 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:58814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58814 Seq:1 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:30:04.209925 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:58814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58814 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:30:04.209925 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:58814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58814 Seq:5 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:31:04.216567 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:3248 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:3248 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:31:04.216567 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:3248 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:3248 Seq:5 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:31:05.073347 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5427 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.54:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B436 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:31:11.033500 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48814 -> 193.232.180.25:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7701ED69 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:31:48.984965 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5428 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.133:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B485 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:32:04.218130 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:41234 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:41234 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:32:04.218130 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:41234 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:41234 Seq:5 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:32:09.286073 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.72:443 +TCP TTL:241 TOS:0x0 ID:28743 IpLen:20 DgmLen:40 +Seq: 0x407AC5B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:33:04.218213 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:1846 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1846 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:33:04.218213 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:1846 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1846 Seq:5 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:33:29.419080 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.73:443 +TCP TTL:241 TOS:0x0 ID:18145 IpLen:20 DgmLen:40 +Seq: 0x89EAF313 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:33:41.349462 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5429 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.19:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:33:53.749851 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5430 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.198:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.226593 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.226593 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.234531 185.93.41.55 -> 172.98.87.228 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:120 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.234531 185.93.41.55 -> 172.98.87.228 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:120 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.237591 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:156 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:34:04.237591 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:21570 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21570 Seq:156 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:35:58.874834 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.31:443 +TCP TTL:241 TOS:0x0 ID:28838 IpLen:20 DgmLen:40 +Seq: 0xDDAFC502 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:36:04.234287 185.93.41.55 -> 172.98.87.238 +ICMP TTL:252 TOS:0x0 ID:15640 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15640 Seq:120 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:36:04.234287 185.93.41.55 -> 172.98.87.238 +ICMP TTL:252 TOS:0x0 ID:15640 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15640 Seq:120 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:36:21.645732 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.233:80 +TCP TTL:241 TOS:0x0 ID:25030 IpLen:20 DgmLen:40 +Seq: 0xD056D57F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:39:36.420026 10.255.255.5 -> 95.142.204.178 +ICMP TTL:63 TOS:0xC0 ID:56697 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +95.142.204.178:443 -> 172.30.16.248:54879 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xB4DBE810 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:41:55.578753 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53396 -> 193.232.180.126:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x17A6214A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:42:00.869024 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37726 -> 193.232.180.33:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA69BE1ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:42:05.059099 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60188 -> 193.232.180.106:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1BC33CC9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:42:54.885613 10.255.255.5 -> 157.185.169.94 +ICMP TTL:63 TOS:0xC0 ID:17866 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.169.94 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:28465 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 51751 Id: 52913 SeqNo: 20242 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:42:58.887304 10.255.255.5 -> 157.185.169.94 +ICMP TTL:63 TOS:0xC0 ID:17867 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.169.94 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:30214 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 51742 Id: 52913 SeqNo: 20251 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:15.453187 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2509 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42017 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:15.453187 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2510 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42018 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:17.217192 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30578 -> 193.232.180.34:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:18.463155 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2511 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42019 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:18.463262 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2512 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42020 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:18.463309 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2513 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42021 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:21.473496 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2509 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42022 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:24.483536 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2510 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42023 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:47:33.514034 185.93.41.55 -> 192.229.221.95 +ICMP TTL:62 TOS:0x0 ID:2509 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:63415 +TCP TTL:52 TOS:0x28 ID:42024 IpLen:20 DgmLen:52 +Seq: 0xA79F9936 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:48:09.133453 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5431 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.93:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:48:09.748832 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:7828 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7828 Seq:156 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:48:09.748832 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:7828 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7828 Seq:156 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:50:06.758008 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5432 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.74:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:50:09.743938 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:16020 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16020 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:50:09.743938 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:16020 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16020 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:50:41.329418 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39121 -> 193.232.180.134:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x27FB62F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:50:42.879421 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:56542 -> 86.110.96.148:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24414DB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:09.747770 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:36071 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36071 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:09.747770 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:36071 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36071 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:21.320921 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:44656 -> 86.110.96.153:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF1307AC0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:27.051189 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:60966 -> 86.110.96.151:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE79A4B04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:34.381360 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:48634 -> 86.110.96.149:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC6BD56A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:34.451407 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:45393 -> 86.110.96.147:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF78B9506 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:38.151600 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:60681 -> 86.110.96.146:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72E188D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:44.891870 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:53726 -> 86.110.96.155:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6614BA48 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:50.532055 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:32800 -> 86.110.96.152:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0B041C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:51:55.842231 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:45176 -> 86.110.96.156:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9449B9F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:52:00.292397 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:44420 -> 86.110.96.157:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4E50401D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:52:09.750618 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:16207 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16207 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:52:09.750618 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:16207 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16207 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:52:31.483726 10.255.255.5 -> 172.212.60.167 +ICMP TTL:63 TOS:0xC0 ID:47197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.60.167:45633 -> 86.110.96.158:443 +TCP TTL:237 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC8DC8180 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:54:09.755228 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:39541 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39541 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:54:09.755228 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:39541 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39541 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:54:32.488458 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.175:443 +TCP TTL:241 TOS:0x0 ID:6243 IpLen:20 DgmLen:40 +Seq: 0x13F3AD77 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:54:49.309049 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5433 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.190:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:57:07.664555 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5434 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.228:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:57:09.773018 185.93.41.55 -> 172.98.87.211 +ICMP TTL:252 TOS:0x0 ID:34481 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34481 Seq:125 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:57:09.773018 185.93.41.55 -> 172.98.87.211 +ICMP TTL:252 TOS:0x0 ID:34481 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34481 Seq:125 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:57:31.180583 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16768 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30583 -> 193.232.180.39:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:59:02.159037 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.232:80 +TCP TTL:241 TOS:0x0 ID:40933 IpLen:20 DgmLen:40 +Seq: 0x79372B5D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-14:59:34.774829 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16769 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30566 -> 193.232.180.22:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:28.762393 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53400 -> 193.232.180.143:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F2F091E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:35.802742 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25076 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58908 -> 86.110.96.148:80 +TCP TTL:113 TOS:0x0 ID:63409 IpLen:20 DgmLen:52 DF +Seq: 0x10EEF136 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:35.802742 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25077 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58908 -> 86.110.96.148:80 +TCP TTL:113 TOS:0x0 ID:63410 IpLen:20 DgmLen:52 DF +Seq: 0x10EEF136 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:35.802837 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25078 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:59949 -> 86.110.96.148:80 +TCP TTL:113 TOS:0x0 ID:63411 IpLen:20 DgmLen:52 DF +Seq: 0xC2E258B4 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25079 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58915 -> 86.110.96.156:80 +TCP TTL:113 TOS:0x0 ID:52558 IpLen:20 DgmLen:52 DF +Seq: 0x1DEDA48B +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25080 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58917 -> 86.110.96.158:80 +TCP TTL:113 TOS:0x0 ID:2805 IpLen:20 DgmLen:52 DF +Seq: 0x162AFDD8 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25081 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58916 -> 86.110.96.157:80 +TCP TTL:113 TOS:0x0 ID:45934 IpLen:20 DgmLen:52 DF +Seq: 0xF7E299B5 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25083 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58909 -> 86.110.96.147:80 +TCP TTL:113 TOS:0x0 ID:17015 IpLen:20 DgmLen:52 DF +Seq: 0xDADB9628 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25082 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58907 -> 86.110.96.146:80 +TCP TTL:113 TOS:0x0 ID:9325 IpLen:20 DgmLen:52 DF +Seq: 0x5A0E642F +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.482795 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25084 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:58914 -> 86.110.96.155:80 +TCP TTL:113 TOS:0x0 ID:15524 IpLen:20 DgmLen:52 DF +Seq: 0xD2210F47 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.522716 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25085 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:59215 -> 86.110.96.153:80 +TCP TTL:113 TOS:0x0 ID:1780 IpLen:20 DgmLen:52 DF +Seq: 0xA9326437 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.522716 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25086 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:60241 -> 86.110.96.153:80 +TCP TTL:113 TOS:0x0 ID:1781 IpLen:20 DgmLen:52 DF +Seq: 0xEFE2B587 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.532735 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25087 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:59216 -> 86.110.96.154:80 +TCP TTL:113 TOS:0x0 ID:55576 IpLen:20 DgmLen:52 DF +Seq: 0x616A10BF +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:00:37.532735 10.255.255.5 -> 172.232.206.27 +ICMP TTL:63 TOS:0xC0 ID:25088 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.232.206.27:60284 -> 86.110.96.154:80 +TCP TTL:113 TOS:0x0 ID:55577 IpLen:20 DgmLen:52 DF +Seq: 0x29FA1B09 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:02:54.708156 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57242 -> 193.232.180.98:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9062485 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:03:09.412602 10.255.255.5 -> 181.13.244.29 +ICMP TTL:63 TOS:0xC0 ID:20363 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +181.13.244.29 -> 86.110.96.156 +ICMP TTL:1 TOS:0x0 ID:27417 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 54747 Id: 27417 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:03:09.787243 185.93.41.55 -> 172.98.87.238 +ICMP TTL:252 TOS:0x0 ID:63052 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63052 Seq:125 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:03:09.787243 185.93.41.55 -> 172.98.87.238 +ICMP TTL:252 TOS:0x0 ID:63052 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63052 Seq:125 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:04:56.552930 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.156:443 +TCP TTL:241 TOS:0x0 ID:43190 IpLen:20 DgmLen:40 +Seq: 0xE6B31D91 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:05:09.785295 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:19880 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19880 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:05:09.785295 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:19880 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19880 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:06:09.785847 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:60689 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60689 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:06:09.785847 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:60689 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60689 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:06:37.106742 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.3:443 +TCP TTL:241 TOS:0x0 ID:29182 IpLen:20 DgmLen:40 +Seq: 0x6D19C446 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:07:09.791520 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:42953 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42953 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:07:09.791520 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:42953 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42953 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:08:09.791270 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:50107 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50107 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:08:09.791270 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:50107 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:50107 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:09:09.793625 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:11405 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:11405 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:09:09.793625 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:11405 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:11405 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:10:09.797934 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:26948 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26948 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:10:09.797934 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:26948 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26948 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:11:09.798949 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:62725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62725 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:11:09.798949 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:62725 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62725 Seq:27 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:12:09.801960 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:13799 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13799 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:12:09.801960 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:13799 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13799 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:12:42.641080 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5435 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.126:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:13:09.804022 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:56806 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56806 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:13:09.804022 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:56806 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56806 Seq:27 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:13:10.255156 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30782 -> 193.232.180.238:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:14:09.809682 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:61654 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61654 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:14:09.809682 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:61654 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61654 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:14:52.496259 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5436 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.228:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:15:09.817332 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:38417 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38417 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:15:09.817332 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:38417 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38417 Seq:131 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:15:46.748358 10.255.255.5 -> 172.172.30.130 +ICMP TTL:63 TOS:0xC0 ID:64903 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.130:22671 -> 193.232.180.148:80 +TCP TTL:47 TOS:0x0 ID:33491 IpLen:20 DgmLen:40 +Seq: 0xC1E8B494 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:16:09.820617 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:20551 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20551 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:16:09.820617 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:20551 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20551 Seq:131 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:17:09.824850 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2602 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2602 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:17:09.824850 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2602 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2602 Seq:131 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:17:54.133376 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44850 -> 193.232.180.101:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7D46F20 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:18:19.914441 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5437 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.174:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:19:09.827822 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:2523 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2523 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:19:09.827822 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:2523 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2523 Seq:95 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:19:20.226702 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56069 -> 193.232.180.156:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x235FF26E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:20:09.828827 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:47496 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:47496 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:20:09.828827 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:47496 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:47496 Seq:131 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:20:11.508754 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5438 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.119:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B477 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:20:48.060223 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58886 -> 193.232.180.206:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A8A3875 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:21:09.835521 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:16837 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16837 Seq:131 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:21:09.835521 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:16837 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16837 Seq:131 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:21:18.671345 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42049 -> 193.232.180.248:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9FD4CCD9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:21:33.561973 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56122 -> 193.232.180.250:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD4788580 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:25:09.843857 185.93.41.55 -> 172.98.87.141 +ICMP TTL:252 TOS:0x0 ID:13849 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13849 Seq:126 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:25:09.843857 185.93.41.55 -> 172.98.87.141 +ICMP TTL:252 TOS:0x0 ID:13849 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13849 Seq:126 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:27:09.813868 185.93.41.55 -> 172.98.87.141 +ICMP TTL:252 TOS:0x0 ID:39304 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39304 Seq:126 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:27:09.813868 185.93.41.55 -> 172.98.87.141 +ICMP TTL:252 TOS:0x0 ID:39304 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39304 Seq:126 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:27:26.605749 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:45388 -> 193.232.180.8:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8BCE6983 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:29:09.801698 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:24175 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24175 Seq:82 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:29:09.801698 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:24175 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24175 Seq:82 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:30:42.013332 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56995 -> 193.232.180.12:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x48B809DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:31:09.833877 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:55477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55477 Seq:126 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:31:09.833877 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:55477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55477 Seq:126 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:31:32.355442 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:48897 -> 193.232.180.183:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:31:55.826252 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33212 -> 193.232.180.59:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1BEE7619 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:33:09.862200 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:51763 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51763 Seq:115 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:33:09.862200 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:51763 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51763 Seq:115 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:33:34.714763 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30740 -> 193.232.180.196:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:33:44.690642 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:35973 -> 193.232.180.146:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCDCAB463 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:34:09.855396 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:40481 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40481 Seq:82 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:34:09.855396 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:40481 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40481 Seq:82 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:36:09.864982 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29008 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29008 Seq:107 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:36:09.864982 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29008 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29008 Seq:107 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:36:21.486695 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40224 -> 193.232.180.90:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5C33C96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:37:52.810285 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5440 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.96:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B460 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:38:23.751584 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.153:80 +TCP TTL:242 TOS:0x0 ID:57778 IpLen:20 DgmLen:40 +Seq: 0xC879817B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:38:29.431725 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5441 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.157:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:39:05.536228 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30551 -> 193.232.180.7:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:39:26.544015 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34424 -> 193.232.180.43:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x61C9B766 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:40:09.884952 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:7159 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7159 Seq:107 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:40:09.884952 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:7159 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:7159 Seq:107 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:40:55.610694 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30737 -> 193.232.180.193:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:41:09.883439 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:59615 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59615 Seq:107 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:41:09.883439 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:59615 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59615 Seq:107 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:41:13.890600 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30648 -> 193.232.180.104:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:41:24.848605 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5442 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.99:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B463 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:41:33.570494 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30660 -> 193.232.180.116:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:42:09.888950 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:20717 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20717 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:42:09.888950 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:20717 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20717 Seq:149 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-15:42:47.751289 172.105.181.89 -> 185.93.41.55 +ICMP TTL:40 TOS:0x0 ID:10161 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:48242 Seq:28582 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:48:36.645458 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.155:80 +TCP TTL:242 TOS:0x0 ID:14497 IpLen:20 DgmLen:40 +Seq: 0x538A586A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:49:09.910258 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:58435 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58435 Seq:120 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:49:09.910258 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:58435 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58435 Seq:120 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:51:37.952532 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:45313 -> 193.232.180.241:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFC03304 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:52:43.725233 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.154:443 +TCP TTL:242 TOS:0x0 ID:30141 IpLen:20 DgmLen:40 +Seq: 0xDE4149C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:54:15.855034 10.255.255.5 -> 222.180.162.228 +ICMP TTL:63 TOS:0xC0 ID:65086 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +222.180.162.228 -> 86.110.96.151 +ICMP TTL:1 TOS:0x0 ID:17913 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 64256 Id: 17913 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:55:09.913403 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:24413 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24413 Seq:12 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:55:09.913403 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:24413 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24413 Seq:12 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:55:09.915653 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:24413 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24413 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:55:09.915653 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:24413 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:24413 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:07.808981 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20076 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22051 IpLen:20 DgmLen:52 DF +Seq: 0xED9388C5 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:09.921051 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:61238 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61238 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:09.921051 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:61238 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61238 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:10.829224 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20077 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22052 IpLen:20 DgmLen:52 DF +Seq: 0xED9388C5 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:10.829224 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20078 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22053 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:10.829318 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20079 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22054 IpLen:20 DgmLen:52 DF +Seq: 0xED9388DE +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:10.829318 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20080 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22055 IpLen:20 DgmLen:52 DF +Seq: 0xED9388DE +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:13.849237 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20081 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22056 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:13.849237 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20082 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22057 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:13.849237 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20083 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22058 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:19.870267 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20076 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22059 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:56:25.909827 185.93.41.55 -> 172.212.5.164 +ICMP TTL:62 TOS:0xC0 ID:20077 IpLen:20 DgmLen:104 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.212.5.164:443 -> 185.93.41.55:38760 +TCP TTL:36 TOS:0x0 ID:22060 IpLen:20 DgmLen:76 DF +Seq: 0xED9388C6 +(48 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:57:09.921847 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:55381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55381 Seq:12 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:57:09.921847 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:55381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55381 Seq:12 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.922672 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:12 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.922672 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:12 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.925412 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.925412 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:44 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.930447 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:09.930447 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:37043 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37043 Seq:105 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:58:30.568832 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51564 -> 193.232.180.63:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x32FA0284 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:59:09.930075 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:52071 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52071 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:59:09.930075 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:52071 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52071 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-15:59:43.641659 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41547 -> 193.232.180.202:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56DA4166 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:00:09.929277 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:43575 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43575 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:00:09.929277 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:43575 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43575 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:00:44.484074 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36291 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41396 -> 193.232.180.70:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8561A588 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:00:51.834267 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.83:80 +TCP TTL:241 TOS:0x0 ID:19079 IpLen:20 DgmLen:40 +Seq: 0x285BFE84 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:01:09.937073 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26515 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26515 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:01:09.937073 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26515 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26515 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:01:55.976972 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5443 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.93:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:02:09.937342 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:46451 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46451 Seq:12 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:02:09.937342 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:46451 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46451 Seq:12 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:02:09.940114 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:46451 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46451 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:02:09.940114 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:46451 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46451 Seq:44 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:03:09.939718 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23814 Seq:12 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:03:09.939718 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23814 Seq:12 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:03:09.942527 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:23814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23814 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:03:09.942527 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:23814 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23814 Seq:44 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:03:24.570357 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.216:443 +TCP TTL:241 TOS:0x0 ID:21166 IpLen:20 DgmLen:40 +Seq: 0x2FF1E7CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:04:09.953261 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:44113 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44113 Seq:44 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:04:09.953261 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:44113 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44113 Seq:44 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:04:09.958291 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:44113 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44113 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:04:09.958291 185.93.41.55 -> 172.98.87.133 +ICMP TTL:252 TOS:0x0 ID:44113 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44113 Seq:105 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:05:09.957965 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:40516 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40516 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:05:09.957965 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:40516 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40516 Seq:149 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:06:09.959998 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:43839 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43839 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:06:09.959998 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:43839 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43839 Seq:149 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:07:09.964785 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:20060 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20060 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:07:09.964785 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:20060 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20060 Seq:149 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:08:09.966267 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:26503 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26503 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:08:09.966267 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:26503 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26503 Seq:149 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:08:11.931652 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46717 -> 193.232.180.16:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3695C492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:09:09.968441 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:58061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58061 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:09:09.968441 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:58061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58061 Seq:149 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:09:40.371438 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30561 -> 193.232.180.17:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:10:09.971309 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:46381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46381 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:10:09.971309 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:46381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46381 Seq:149 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:10:19.716553 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37869 -> 193.232.180.132:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4C87DE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:11:09.975114 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:20875 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20875 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:11:09.975114 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:20875 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:20875 Seq:149 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:12:09.975926 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:59497 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59497 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:12:09.975926 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:59497 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59497 Seq:149 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:14:09.987244 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:26490 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26490 Seq:149 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:14:09.987244 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:26490 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26490 Seq:149 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:18:00.094745 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5444 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.86:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B456 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:18:09.986204 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:1367 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1367 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:18:09.986204 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:1367 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1367 Seq:94 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:21:41.813384 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36294 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53512 -> 193.232.180.139:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x845261D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:21:44.633498 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5445 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.235:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:06.969658 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63087 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26882 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:06.969772 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63088 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26883 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:06.969772 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63089 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26884 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:06.969772 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63090 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26885 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:06.969773 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63091 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26886 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:10.939669 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63092 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26887 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:14.929902 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63093 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26888 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:22.870938 185.93.41.55 -> 192.229.221.95 +ICMP TTL:61 TOS:0x0 ID:63094 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.229.221.95:80 -> 185.93.41.55:54381 +TCP TTL:51 TOS:0x28 ID:26889 IpLen:20 DgmLen:52 +Seq: 0xC7030A11 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:38.529184 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30668 -> 193.232.180.124:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:22:40.225639 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36295 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33442 -> 193.232.180.6:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7CE10FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:09.996741 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5446 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.230:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:09.999499 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:34381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34381 Seq:94 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:09.999499 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:34381 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34381 Seq:94 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:15.476092 10.255.255.2 -> 209.38.180.198 +ICMP TTL:253 TOS:0xC0 ID:33366 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.38.180.198:80 -> 10.247.198.221:52082 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xF1C9AB38 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:15.583068 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28923 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE652 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:16.222593 10.255.255.5 -> 82.163.78.161 +ICMP TTL:63 TOS:0xC0 ID:61983 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +82.163.78.161:80 -> 10.247.198.221:59588 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xA2CE641C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:16.506408 10.255.255.5 -> 139.59.55.11 +ICMP TTL:63 TOS:0xC0 ID:15111 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.59.55.11:22 -> 10.247.198.221:38492 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xAC4D7670 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:16.606958 10.255.255.2 -> 209.38.180.198 +ICMP TTL:253 TOS:0xC0 ID:33379 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.38.180.198:80 -> 10.247.198.221:52082 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xF1C9AB38 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:18.661916 10.255.255.5 -> 82.163.78.161 +ICMP TTL:63 TOS:0xC0 ID:61984 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +82.163.78.161:80 -> 10.247.198.221:59588 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xA2CE641C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:18.911179 10.255.255.2 -> 209.38.180.198 +ICMP TTL:253 TOS:0xC0 ID:33394 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.38.180.198:80 -> 10.247.198.221:52082 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xF1C9AB38 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:21.490366 10.255.255.5 -> 172.232.217.199 +ICMP TTL:63 TOS:0xC0 ID:33004 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.217.199:443 -> 10.247.198.221:43654 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:21.637226 10.255.255.5 -> 146.190.4.192 +ICMP TTL:63 TOS:0xC0 ID:51263 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +146.190.4.192:983 -> 10.247.198.221:35360 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x88062C85 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:21.796534 10.255.255.2 -> 50.116.39.197 +ICMP TTL:253 TOS:0xC0 ID:33396 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.39.197:443 -> 10.247.198.221:58930 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:23.524924 10.255.255.5 -> 82.163.78.161 +ICMP TTL:63 TOS:0xC0 ID:61985 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +82.163.78.161:80 -> 10.247.198.221:59588 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xA2CE641C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:23.639337 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28924 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE652 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:31.707899 10.255.255.2 -> 51.89.179.182 +ICMP TTL:253 TOS:0xC0 ID:33417 IpLen:20 DgmLen:56 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +51.89.179.182:22 -> 10.247.198.221:39742 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0x47337C0F +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:33.244542 10.255.255.5 -> 82.163.78.161 +ICMP TTL:63 TOS:0xC0 ID:61986 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +82.163.78.161:80 -> 10.247.198.221:59588 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xA2CE641C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:36.461237 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28925 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE653 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:37.440559 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28926 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE653 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:38.640022 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28927 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE653 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:41.078037 10.255.255.5 -> 172.232.237.90 +ICMP TTL:63 TOS:0xC0 ID:28928 IpLen:20 DgmLen:68 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.237.90:443 -> 10.247.198.221:39380 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:40 DF +Seq: 0xD01CE653 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:57.191000 10.255.255.5 -> 47.254.245.116 +ICMP TTL:63 TOS:0xC0 ID:23485 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.254.245.116 -> 193.232.180.198 +ICMP TTL:1 TOS:0x0 ID:17123 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15981 Id: 17123 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:57.191001 10.255.255.5 -> 47.254.245.116 +ICMP TTL:63 TOS:0xC0 ID:23486 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.254.245.116 -> 193.232.180.85 +ICMP TTL:1 TOS:0x0 ID:17123 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 16094 Id: 17123 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:57.192972 10.255.255.5 -> 47.254.245.116 +ICMP TTL:63 TOS:0xC0 ID:23487 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.254.245.116 -> 193.232.180.182 +ICMP TTL:1 TOS:0x0 ID:17123 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 15997 Id: 17123 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:23:57.203950 10.255.255.5 -> 47.254.245.116 +ICMP TTL:63 TOS:0xC0 ID:23488 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.254.245.116 -> 193.232.180.62 +ICMP TTL:1 TOS:0x0 ID:17123 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 16117 Id: 17123 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:24:01.548798 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5447 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.254:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:24:09.139209 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36296 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42010 -> 193.232.180.201:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3F92CFA4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:24:10.001469 185.93.41.55 -> 172.98.87.138 +ICMP TTL:252 TOS:0x0 ID:26178 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26178 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:24:10.001469 185.93.41.55 -> 172.98.87.138 +ICMP TTL:252 TOS:0x0 ID:26178 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26178 Seq:99 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:24:27.409797 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5448 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.20:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B414 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:25:09.998969 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:63553 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63553 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:25:09.998969 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:63553 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63553 Seq:21 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:26:10.001173 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:5566 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5566 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:26:10.001173 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:5566 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5566 Seq:21 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:26:22.144319 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5449 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.223:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:27:10.002275 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:32350 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32350 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:27:10.002275 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:32350 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32350 Seq:21 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:27:23.636757 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36297 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55865 -> 193.232.180.183:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C83BCF6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:28:10.005997 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:48068 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48068 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:28:10.005997 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:48068 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48068 Seq:21 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:29:10.007698 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:31540 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31540 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:29:10.007698 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:31540 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31540 Seq:21 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:29:15.200976 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36298 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42964 -> 193.232.180.137:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56090A66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:29:45.752224 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36299 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36099 -> 193.232.180.61:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39EDF4A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:30:10.012277 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:44625 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44625 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:30:10.012277 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:44625 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:44625 Seq:21 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:06.555472 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36300 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53239 -> 193.232.180.66:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84A0A7D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:10.015694 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:64818 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64818 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:10.015694 185.93.41.55 -> 192.142.226.147 +ICMP TTL:252 TOS:0x0 ID:64818 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64818 Seq:21 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:28.455551 10.255.255.5 -> 69.25.7.69 +ICMP TTL:63 TOS:0xC0 ID:4099 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.69 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31243 Id: 32236 SeqNo: 8 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:29.397844 10.255.255.5 -> 69.25.7.78 +ICMP TTL:63 TOS:0xC0 ID:47458 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.78 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31243 Id: 32237 SeqNo: 7 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:31:30.864769 10.255.255.5 -> 69.25.7.75 +ICMP TTL:63 TOS:0xC0 ID:19579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.75 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31237 Id: 32238 SeqNo: 12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:32:38.849101 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5450 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.192:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:33:10.025869 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:15278 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15278 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:33:10.025869 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:15278 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15278 Seq:21 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:33:19.090690 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36301 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39573 -> 193.232.180.93:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4CCFD099 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:34:10.028829 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:51118 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51118 Seq:21 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:34:10.028829 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:51118 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51118 Seq:21 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:35:10.031544 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:21280 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21280 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:35:10.031544 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:21280 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:21280 Seq:6 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:35:15.805359 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5451 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.218:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-16:36:00.652990 172.105.21.17 -> 185.93.41.55 +ICMP TTL:47 TOS:0x0 ID:30675 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:23943 Seq:41674 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:36:47.645242 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30613 -> 193.232.180.69:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:10.038967 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:63182 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63182 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:10.038967 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:63182 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63182 Seq:6 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:50.061367 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36303 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40060 -> 193.232.180.81:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC184262B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:56.631684 10.255.255.5 -> 211.21.48.186 +ICMP TTL:63 TOS:0xC0 ID:21934 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +211.21.48.186 -> 193.232.180.215 +ICMP TTL:1 TOS:0x0 ID:14689 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18398 Id: 14689 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:56.633583 10.255.255.5 -> 211.21.48.186 +ICMP TTL:63 TOS:0xC0 ID:21935 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +211.21.48.186 -> 193.232.180.85 +ICMP TTL:1 TOS:0x0 ID:14689 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18528 Id: 14689 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:56.881602 10.255.255.5 -> 211.21.48.186 +ICMP TTL:63 TOS:0xC0 ID:21937 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +211.21.48.186 -> 193.232.180.241 +ICMP TTL:1 TOS:0x0 ID:14689 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18372 Id: 14689 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:37:56.881602 10.255.255.5 -> 211.21.48.186 +ICMP TTL:63 TOS:0xC0 ID:21936 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +211.21.48.186 -> 193.232.180.151 +ICMP TTL:1 TOS:0x0 ID:14689 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18462 Id: 14689 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:38:10.042169 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19885 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19885 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:38:10.042169 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19885 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19885 Seq:6 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:39:10.044281 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38596 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38596 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:39:10.044281 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38596 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38596 Seq:6 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:40:10.048761 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:57139 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57139 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:40:10.048761 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:57139 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:57139 Seq:6 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:42:10.056829 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:16310 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16310 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:42:10.056829 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:16310 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16310 Seq:6 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:42:54.803279 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36304 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44456 -> 193.232.180.174:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60C3026F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:43:10.056766 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:37533 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37533 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:43:10.056766 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:37533 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:37533 Seq:6 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:44:10.059881 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:53659 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53659 Seq:6 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:44:10.059881 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:53659 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53659 Seq:6 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:10.065747 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:58115 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58115 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:10.065747 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:58115 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58115 Seq:38 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:44.873757 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:33569 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:44.874615 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:29350 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:44.875820 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:20183 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:45.678480 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:34867 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:45.679761 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:10852 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:45.680164 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:28938 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:46.679909 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:28804 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:46.679909 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:10839 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:47.339480 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:59918 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:47.339480 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:36168 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:49.713884 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:16134 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:49.730605 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:283 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:50.615826 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:1732 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:50.615827 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:24651 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:54.714150 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:38703 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:54.714150 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:4898 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:56431 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:58.247752 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:20743 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:58.247752 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:568 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:45:58.636687 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:47812 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:51708 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:10.069932 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:53538 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53538 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:10.069932 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:53538 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53538 Seq:38 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:15.101402 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.44:80 +TCP TTL:241 TOS:0x0 ID:12200 IpLen:20 DgmLen:40 +Seq: 0x6EC89BD4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:16.811280 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.35:80 +TCP TTL:241 TOS:0x0 ID:56074 IpLen:20 DgmLen:40 +Seq: 0xFB2C6F79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:23.841575 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5452 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.5:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B405 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:46:33.371772 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5453 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.243:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:48:10.076221 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34474 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34474 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:48:10.076221 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:34474 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:34474 Seq:38 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:48:51.097017 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30728 -> 193.232.180.184:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:49:09.164839 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30557 -> 193.232.180.13:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:49:10.079965 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:53271 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53271 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:49:10.079965 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:53271 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:53271 Seq:38 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:49:19.226495 10.255.255.5 -> 175.6.22.149 +ICMP TTL:63 TOS:0xC0 ID:32843 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +175.6.22.149 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:63079 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 199 Id: 6656 SeqNo: 52516 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:50:10.082572 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:47660 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:47660 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:50:10.082572 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:47660 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:47660 Seq:38 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:50:25.780967 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.13:443 +TCP TTL:241 TOS:0x0 ID:57223 IpLen:20 DgmLen:40 +Seq: 0x6EE36A31 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:50:44.221602 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36305 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57618 -> 193.232.180.84:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E980413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:51:10.084644 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43747 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43747 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:51:10.084644 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43747 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43747 Seq:38 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:52:10.087954 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:64854 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64854 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:52:10.087954 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:64854 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64854 Seq:38 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:52:40.456301 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.212:80 +TCP TTL:241 TOS:0x0 ID:21721 IpLen:20 DgmLen:40 +Seq: 0x6CFEE05D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:53:10.089478 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:19087 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19087 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:53:10.089478 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:19087 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19087 Seq:38 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:54:10.093026 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:59289 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59289 Seq:38 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:54:10.093026 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:59289 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59289 Seq:38 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:55:10.094013 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:58297 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58297 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:55:10.094013 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:58297 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:58297 Seq:15 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:56:10.096840 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:59720 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59720 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:56:10.096840 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:59720 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:59720 Seq:15 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:56:16.504989 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36306 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59314 -> 86.110.96.154:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x99124E76 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:57:10.100741 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:1 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:57:10.100741 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:1 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1 Seq:15 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:57:29.457786 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49502 -> 193.232.180.104:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF02701E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:57:59.828713 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46885 -> 193.232.180.7:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3FF149D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-16:59:23.462282 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.247:80 +TCP TTL:241 TOS:0x0 ID:31990 IpLen:20 DgmLen:40 +Seq: 0xC73BC851 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:00:10.106355 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:55493 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55493 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:00:10.106355 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:55493 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55493 Seq:15 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:00:10.114718 185.93.41.55 -> 172.98.87.134 +ICMP TTL:252 TOS:0x0 ID:55493 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55493 Seq:113 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:00:10.114718 185.93.41.55 -> 172.98.87.134 +ICMP TTL:252 TOS:0x0 ID:55493 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55493 Seq:113 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:00:26.684476 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:35453 -> 86.110.96.153:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7DFD907C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:01:32.067163 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.241:80 +TCP TTL:241 TOS:0x0 ID:54138 IpLen:20 DgmLen:40 +Seq: 0x628367DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:02:10.113353 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:39262 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39262 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:02:10.113353 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:39262 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39262 Seq:15 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:02:33.259572 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40372 -> 193.232.180.23:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x735F6365 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:03:10.116623 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:25431 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25431 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:03:10.116623 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:25431 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25431 Seq:15 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:03:10.124866 185.93.41.55 -> 172.98.87.134 +ICMP TTL:252 TOS:0x0 ID:25431 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25431 Seq:113 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:03:10.124866 185.93.41.55 -> 172.98.87.134 +ICMP TTL:252 TOS:0x0 ID:25431 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25431 Seq:113 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:03:14.482695 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30779 -> 193.232.180.235:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:04:10.119407 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51676 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51676 Seq:15 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:04:10.119407 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51676 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51676 Seq:15 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:05:10.127312 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:23138 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23138 Seq:59 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:05:10.127312 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:23138 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23138 Seq:59 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:05:10.129405 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23138 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23138 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:05:10.129405 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23138 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23138 Seq:93 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:06:06.097991 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30770 -> 193.232.180.226:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:06:14.182485 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30775 -> 193.232.180.231:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:06:49.869601 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.241:443 +TCP TTL:241 TOS:0x0 ID:42062 IpLen:20 DgmLen:40 +Seq: 0x56561104 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:07:10.135869 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:63160 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63160 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:07:10.135869 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:63160 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63160 Seq:93 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:07:23.160735 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.41:443 +TCP TTL:241 TOS:0x0 ID:11071 IpLen:20 DgmLen:40 +Seq: 0xCC9A9EAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:08:10.138529 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:61885 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61885 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:08:10.138529 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:61885 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:61885 Seq:93 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:08:38.863854 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.44:443 +TCP TTL:241 TOS:0x0 ID:35968 IpLen:20 DgmLen:40 +Seq: 0xD34B3917 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:09:10.144772 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:62225 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62225 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:09:10.144772 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:62225 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62225 Seq:93 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:09:11.295001 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.122:80 +TCP TTL:241 TOS:0x0 ID:58853 IpLen:20 DgmLen:40 +Seq: 0xE19251CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:10:10.144260 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:43757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43757 Seq:59 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:10:10.144260 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:43757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43757 Seq:59 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:10:10.147115 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:43757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43757 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:10:10.147115 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:43757 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43757 Seq:93 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:10:42.245417 10.255.255.5 -> 115.227.49.23 +ICMP TTL:63 TOS:0xC0 ID:50535 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +115.227.49.23 -> 193.232.180.60 +ICMP TTL:1 TOS:0x0 ID:46897 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 51880 Id: 46897 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:10.149882 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:48095 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48095 Seq:93 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:10.149882 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:48095 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:48095 Seq:93 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:16.177295 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:48628 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:6103 IpLen:20 DgmLen:67 DF +Len: 39 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:16.485376 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:52312 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:6298 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:17.100789 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:52021 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:6622 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:17.100789 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:33627 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:6623 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:18.251115 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:49244 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:7217 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:18.251115 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:25401 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:7218 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:20.586267 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:44369 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:7645 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:20.586317 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:56119 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:7646 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:25.249430 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:29320 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:12149 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:25.250548 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:3827 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:12150 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:34.620562 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:10023 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:19796 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:34.620562 185.93.41.55 -> 172.224.49.7 +ICMP TTL:61 TOS:0x0 ID:10738 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.7:443 -> 185.93.41.55:58134 +UDP TTL:45 TOS:0x0 ID:19797 IpLen:20 DgmLen:65 DF +Len: 37 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:11:36.640862 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.187:443 +TCP TTL:241 TOS:0x0 ID:3807 IpLen:20 DgmLen:40 +Seq: 0x6CA7BBDF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:12:33.462952 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5454 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.99:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B463 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:14:14.526908 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.55:443 +TCP TTL:241 TOS:0x0 ID:25529 IpLen:20 DgmLen:40 +Seq: 0xCE84D635 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:14:52.648493 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:58095 -> 86.110.96.151:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1BB2BDB4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:15:02.728813 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:43799 -> 86.110.96.149:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8632503B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:15:09.889036 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:46219 -> 86.110.96.156:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51890974 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:15:33.650038 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:55325 -> 86.110.96.158:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x79701CAF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:15:42.590393 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:49349 -> 86.110.96.147:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x87E9E790 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:02.231207 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:51642 -> 86.110.96.146:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA8652B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:02.831281 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:50507 -> 86.110.96.153:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72CF5C22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:10.166693 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:32061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32061 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:10.166693 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:32061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32061 Seq:95 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:10.167374 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:32061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32061 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:10.167374 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:32061 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:32061 Seq:105 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:16.101668 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:34248 -> 86.110.96.152:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA2FCE138 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:23.311989 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:48504 -> 86.110.96.157:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30326402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:27.872152 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:38259 -> 86.110.96.154:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x14518B36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:32.152360 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:49869 -> 86.110.96.148:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8F5D83E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:49.533035 10.255.255.5 -> 172.169.207.226 +ICMP TTL:63 TOS:0xC0 ID:3213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.207.226:58227 -> 86.110.96.155:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84788957 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:16:58.425927 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30787 -> 193.232.180.243:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:17:10.170428 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:15443 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15443 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:17:10.170428 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:15443 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15443 Seq:105 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:17:49.665518 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58055 -> 193.232.180.187:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2FB30D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:18:10.170943 185.93.41.55 -> 172.98.87.131 +ICMP TTL:252 TOS:0x0 ID:351 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:351 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:18:10.170943 185.93.41.55 -> 172.98.87.131 +ICMP TTL:252 TOS:0x0 ID:351 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:351 Seq:71 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:20:10.179588 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:36296 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36296 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:20:10.179588 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:36296 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:36296 Seq:105 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:21:10.181715 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23908 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23908 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:21:10.181715 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:23908 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:23908 Seq:95 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:21:34.274286 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5455 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.131:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B483 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:22:10.184024 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:45154 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45154 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:22:10.184024 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:45154 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45154 Seq:95 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:22:35.246602 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5456 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.95:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:06.961877 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28407 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30637 -> 193.232.180.93:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.188178 185.93.41.55 -> 172.98.87.186 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.188178 185.93.41.55 -> 172.98.87.186 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:71 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.189817 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.189817 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:95 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.190398 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:105 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:10.190398 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:2477 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:2477 Seq:105 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:23:13.378090 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51832 -> 193.232.180.210:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1BEC32F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:24:10.187957 185.93.41.55 -> 172.98.87.131 +ICMP TTL:252 TOS:0x0 ID:60534 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60534 Seq:71 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:24:10.187957 185.93.41.55 -> 172.98.87.131 +ICMP TTL:252 TOS:0x0 ID:60534 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60534 Seq:71 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:24:10.189880 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:60534 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60534 Seq:95 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:24:10.189880 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:60534 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:60534 Seq:95 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:24:29.354583 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30688 -> 193.232.180.144:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:25:10.187502 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29766 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29766 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:25:10.187502 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29766 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29766 Seq:28 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:26:10.193788 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:10615 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10615 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:26:10.193788 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:10615 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10615 Seq:28 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:27:10.192520 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:5321 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5321 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:27:10.192520 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:5321 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:5321 Seq:28 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:28:10.194776 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51756 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51756 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:28:10.194776 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:51756 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:51756 Seq:28 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:29:10.199814 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:15958 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15958 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:29:10.199814 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:15958 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:15958 Seq:28 ECHO + +[**] [1:29456:3] "PROTOCOL-ICMP Unusual PING detected" [**] +[Classification: Information Leak] [Priority: 2] +[AppID: ICMP] +08/21-17:30:07.055102 172.233.161.194 -> 185.93.41.55 +ICMP TTL:39 TOS:0x0 ID:52354 IpLen:20 DgmLen:36 DF +Type:8 Code:0 ID:12653 Seq:34807 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:30:10.200694 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29951 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29951 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:30:10.200694 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:29951 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29951 Seq:28 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:30:24.904906 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46842 -> 86.110.96.148:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x178025A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:30:51.856049 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.94:80 +TCP TTL:241 TOS:0x0 ID:18253 IpLen:20 DgmLen:40 +Seq: 0xCBA1F343 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:31:10.205309 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:31452 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31452 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:31:10.205309 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:31452 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:31452 Seq:28 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:31:17.391848 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.32 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 56739 Id: 56739 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:31:20.397934 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11296 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.32 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 56739 Id: 56739 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:32:10.210049 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:45031 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45031 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:32:10.210049 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:45031 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45031 Seq:28 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:33:10.210875 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:52327 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52327 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:33:10.210875 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:52327 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52327 Seq:28 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:33:18.921820 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49554 -> 193.232.180.100:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF806A7CD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:33:55.313219 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5457 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.61:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:34:10.214430 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:43915 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43915 Seq:28 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:34:10.214430 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:43915 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43915 Seq:28 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:34:27.244544 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5458 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.240:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:10.226185 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:40360 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40360 Seq:154 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:10.226185 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:40360 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40360 Seq:154 ECHO + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.596981 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48984 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 21325 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.598830 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48985 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 62750 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.599714 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48986 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 61018 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.600712 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48987 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:2 IpLen:20 DgmLen:921 DF +Len: 893 Csum: 7058 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.654676 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48993 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 35610 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:35:39.674879 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0xC0 ID:48996 IpLen:20 DgmLen:576 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:56586 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 25469 +(520 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:36:39.079879 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:23198 -> 193.232.180.95:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x885985FE +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:38:01.642854 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60400 -> 193.232.180.217:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x499A365C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:38:10.235897 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:43759 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43759 Seq:154 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:38:10.235897 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:43759 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43759 Seq:154 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:39:10.233368 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:62992 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62992 Seq:52 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:39:10.233368 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:62992 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:62992 Seq:52 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:39:43.506827 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5459 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.74:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:41:10.249779 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:27485 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:27485 Seq:154 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:41:10.249779 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:27485 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:27485 Seq:154 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:41:41.211457 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54293 -> 193.232.180.67:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7246290E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:41:58.582437 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40948 -> 193.232.180.45:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA6919E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:02.592241 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36366 -> 193.232.180.82:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x92FAD804 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:10.242580 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:39657 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39657 Seq:52 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:10.242580 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:39657 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39657 Seq:52 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:10.251268 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:39657 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39657 Seq:154 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:10.251268 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:39657 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39657 Seq:154 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49600 +TCP TTL:50 TOS:0x0 ID:34592 IpLen:20 DgmLen:91 DF +Seq: 0x88C756B9 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49604 +TCP TTL:52 TOS:0x0 ID:13210 IpLen:20 DgmLen:91 DF +Seq: 0xB25F6A34 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49600 +TCP TTL:50 TOS:0x0 ID:34593 IpLen:20 DgmLen:52 DF +Seq: 0x88C756E0 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49604 +TCP TTL:52 TOS:0x0 ID:13211 IpLen:20 DgmLen:52 DF +Seq: 0xB25F6A5B +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49602 +TCP TTL:50 TOS:0x0 ID:63456 IpLen:20 DgmLen:91 DF +Seq: 0x827F707E +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:22.897335 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59152 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49602 +TCP TTL:50 TOS:0x0 ID:63457 IpLen:20 DgmLen:52 DF +Seq: 0x827F70A5 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:26.917340 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59153 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49604 +TCP TTL:52 TOS:0x0 ID:13212 IpLen:20 DgmLen:52 DF +Seq: 0xB25F6A5B +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:26.917340 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59154 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49600 +TCP TTL:50 TOS:0x0 ID:34594 IpLen:20 DgmLen:52 DF +Seq: 0x88C756E0 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:32.347505 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49602 +TCP TTL:50 TOS:0x0 ID:63458 IpLen:20 DgmLen:91 DF +Seq: 0x827F707E +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:36.067817 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49604 +TCP TTL:52 TOS:0x0 ID:13213 IpLen:20 DgmLen:91 DF +Seq: 0xB25F6A34 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:42:36.067818 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:49600 +TCP TTL:50 TOS:0x0 ID:34595 IpLen:20 DgmLen:91 DF +Seq: 0x88C756B9 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:43:10.256694 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:16872 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16872 Seq:154 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:43:10.256694 185.93.41.55 -> 192.142.227.14 +ICMP TTL:252 TOS:0x0 ID:16872 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16872 Seq:154 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:43:28.235655 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33462 -> 193.232.180.54:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE96959A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:44:05.637165 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5460 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.86:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B456 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:45:10.250618 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:63439 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63439 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:45:10.250618 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:63439 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:63439 Seq:27 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:45:25.146311 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30568 -> 193.232.180.24:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:46:06.587126 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:9193 -> 86.110.96.153:53 +UDP TTL:1 TOS:0x0 ID:22126 IpLen:20 DgmLen:70 DF +Len: 5 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:47:10.257167 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:64233 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64233 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:47:10.257167 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:64233 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:64233 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:47:45.175639 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.165:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:48:10.261370 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:39392 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39392 Seq:27 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:48:10.261370 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:39392 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39392 Seq:27 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:49:33.660130 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5462 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.149:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B495 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:50:39.339037 10.255.255.5 -> 103.116.78.151 +ICMP TTL:63 TOS:0xC0 ID:16358 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.116.78.151 -> 193.232.180.93 +ICMP TTL:1 TOS:0x0 ID:6885 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26324 Id: 6885 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:50:39.598760 10.255.255.5 -> 103.116.78.151 +ICMP TTL:63 TOS:0xC0 ID:16359 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.116.78.151 -> 193.232.180.133 +ICMP TTL:1 TOS:0x0 ID:6885 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26284 Id: 6885 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:50:39.601680 10.255.255.5 -> 103.116.78.151 +ICMP TTL:63 TOS:0xC0 ID:16360 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +103.116.78.151 -> 193.232.180.48 +ICMP TTL:1 TOS:0x0 ID:6885 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 26369 Id: 6885 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:51:28.825172 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28409 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30585 -> 193.232.180.41:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:54:55.092571 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5463 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.41:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B429 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:56:09.925638 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.33:443 +TCP TTL:241 TOS:0x0 ID:14720 IpLen:20 DgmLen:40 +Seq: 0x97B8C1A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:57:43.439308 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5464 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.106:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:59:12.233873 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30677 -> 193.232.180.133:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:59:24.208414 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30588 -> 193.232.180.44:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:59:25.311464 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30731 -> 193.232.180.187:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-17:59:33.543503 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5465 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.160:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:00:13.505113 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46534 -> 193.232.180.116:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3361E284 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:00:14.277274 10.255.255.5 -> 124.95.146.203 +ICMP TTL:63 TOS:0xC0 ID:58263 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.95.146.203 -> 193.232.180.195 +ICMP TTL:1 TOS:0x0 ID:35151 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63491 Id: 35151 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:00:14.280889 10.255.255.5 -> 124.95.146.203 +ICMP TTL:63 TOS:0xC0 ID:58264 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.95.146.203 -> 193.232.180.92 +ICMP TTL:1 TOS:0x0 ID:35151 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63594 Id: 35151 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:00:14.287097 10.255.255.5 -> 124.95.146.203 +ICMP TTL:63 TOS:0xC0 ID:58265 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.95.146.203 -> 193.232.180.145 +ICMP TTL:1 TOS:0x0 ID:35151 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63541 Id: 35151 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:00:14.289039 10.255.255.5 -> 124.95.146.203 +ICMP TTL:63 TOS:0xC0 ID:58266 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.95.146.203 -> 193.232.180.181 +ICMP TTL:1 TOS:0x0 ID:35151 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63505 Id: 35151 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:08.255599 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:14170 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:08.616635 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:13988 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:09.591305 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:18678 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:09.591305 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:50139 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:12.636583 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:54994 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:12.636583 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:5129 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:17.709116 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:15987 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:17.711355 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:51350 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:01:22.638527 185.93.41.55 -> 172.224.94.6 +ICMP TTL:60 TOS:0x0 ID:44548 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.94.6:443 -> 185.93.41.55:61269 +UDP TTL:47 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:03:22.092424 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5466 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.200:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:03:29.702726 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5467 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.119:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B477 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:03:45.803414 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5468 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.9:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B409 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:05:03.236554 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5469 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.89:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B459 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:07:10.324656 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19379 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19379 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:07:10.324656 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:19379 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:19379 Seq:99 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:07:34.002395 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38809 -> 193.232.180.196:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x58B69B9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:09:10.331296 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:46463 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46463 Seq:127 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:09:10.331296 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:46463 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:46463 Seq:127 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:09:21.926555 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5470 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.114:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B472 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:10:27.149170 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.163:80 +TCP TTL:241 TOS:0x0 ID:38921 IpLen:20 DgmLen:40 +Seq: 0x8A7B2CFA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:11:10.338227 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:45775 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45775 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:11:10.338227 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:45775 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:45775 Seq:99 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:11:22.101294 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50232 -> 193.232.180.180:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2C7B2B8F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:12:10.339971 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38715 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38715 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:12:10.339971 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:38715 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38715 Seq:99 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:12:10.342273 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:38715 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38715 Seq:127 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:12:10.342273 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:38715 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:38715 Seq:127 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:13:10.344366 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:56606 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56606 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:13:10.344366 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:56606 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:56606 Seq:99 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:13:53.784082 10.255.255.5 -> 139.162.240.64 +ICMP TTL:63 TOS:0xC0 ID:58654 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.240.64 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:45893 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 22213 Id: 11152 SeqNo: 37 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:13:53.794204 10.255.255.5 -> 139.162.240.64 +ICMP TTL:63 TOS:0xC0 ID:58655 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.240.64 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:45894 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 22212 Id: 11152 SeqNo: 38 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:13:53.814935 10.255.255.5 -> 139.162.240.64 +ICMP TTL:63 TOS:0xC0 ID:58656 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.240.64 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:45895 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 22211 Id: 11152 SeqNo: 39 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:14:10.347582 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:25105 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25105 Seq:99 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:14:10.347582 185.93.41.55 -> 192.142.227.15 +ICMP TTL:252 TOS:0x0 ID:25105 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:25105 Seq:99 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:15:30.001159 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40004 -> 86.110.96.152:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3675BFDD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:16:10.349321 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:12626 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:12626 Seq:64 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:16:10.349321 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:12626 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:12626 Seq:64 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:16:55.434328 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.240:443 +TCP TTL:241 TOS:0x0 ID:21796 IpLen:20 DgmLen:40 +Seq: 0x3716E06F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:17:10.349355 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26655 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26655 Seq:64 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:17:10.349355 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26655 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26655 Seq:64 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:18:10.360034 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:55979 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55979 Seq:64 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:18:10.360034 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:55979 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55979 Seq:64 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:18:59.489406 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.31:80 +TCP TTL:241 TOS:0x0 ID:47845 IpLen:20 DgmLen:40 +Seq: 0x11380EAA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:20:10.379214 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:11573 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:11573 Seq:64 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:20:10.379214 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:11573 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:11573 Seq:64 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:21:42.335612 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.177:443 +TCP TTL:241 TOS:0x0 ID:43803 IpLen:20 DgmLen:40 +Seq: 0xF90E1E11 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:23:10.369211 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:41943 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:41943 Seq:64 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:23:10.369211 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:41943 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:41943 Seq:64 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:25:44.905542 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5471 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.125:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:26:29.208113 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30772 -> 193.232.180.228:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:27:10.376035 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:10418 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10418 Seq:55 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:27:10.376035 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:10418 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:10418 Seq:55 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:28:21.061282 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44382 -> 86.110.96.158:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7C2055D8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:28:30.231708 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5472 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.215:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:29:10.391239 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:591 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:591 Seq:152 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:29:10.391239 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:591 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:591 Seq:152 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:29:11.003279 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:43997 -> 193.232.180.117:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C44E16D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:30:28.936295 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56882 -> 193.232.180.75:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5AB74CD0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:31:13.638028 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5473 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.17:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B411 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:32:10.405726 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:1369 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1369 Seq:152 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:32:10.405726 185.93.41.55 -> 192.142.226.146 +ICMP TTL:252 TOS:0x0 ID:1369 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:1369 Seq:152 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:32:23.600702 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39912 -> 193.232.180.193:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB70BD5FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:33:10.392854 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:16220 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16220 Seq:55 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:33:10.392854 185.93.41.55 -> 172.98.87.145 +ICMP TTL:252 TOS:0x0 ID:16220 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16220 Seq:55 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:36:10.403658 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54838 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54838 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:36:10.403658 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:54838 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:54838 Seq:49 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:36:39.160024 10.255.255.5 -> 202.112.237.201 +ICMP TTL:63 TOS:0xC0 ID:28406 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +202.112.237.201:30607 -> 193.232.180.63:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 19 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:37:10.404865 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:13810 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13810 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:37:10.404865 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:13810 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:13810 Seq:49 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:37:32.092983 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.41:80 +TCP TTL:241 TOS:0x0 ID:55296 IpLen:20 DgmLen:40 +Seq: 0xACE56C79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:38:10.409539 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43688 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43688 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:38:10.409539 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43688 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43688 Seq:49 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:38:48.515792 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37133 -> 193.232.180.35:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE1E85CED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:39:10.411031 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43294 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43294 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:39:10.411031 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:43294 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:43294 Seq:49 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:39:32.037674 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5474 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.249:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:40:10.413556 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:52665 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52665 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:40:10.413556 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:52665 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:52665 Seq:49 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:41:40.852725 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42363 -> 193.232.180.253:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1ED66ED6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:43:24.716718 10.255.255.5 -> 192.141.9.110 +ICMP TTL:63 TOS:0xC0 ID:330 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.141.9.110:40847 -> 193.232.180.63:80 +TCP TTL:42 TOS:0x0 ID:65018 IpLen:20 DgmLen:60 DF +Seq: 0x380927A +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:44:05.328273 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5475 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.72:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B448 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:44:10.420942 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:55029 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55029 Seq:49 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:44:10.420942 185.93.41.55 -> 192.142.226.154 +ICMP TTL:252 TOS:0x0 ID:55029 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:55029 Seq:49 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:44:11.538485 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5476 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.70:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B446 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:45:46.222394 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33028 -> 193.232.180.236:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E4B7976 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:47:10.434688 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26127 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26127 Seq:52 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:47:10.434688 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:26127 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:26127 Seq:52 ECHO + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:48:10.436844 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:42870 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42870 Seq:52 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:48:10.436844 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:42870 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:42870 Seq:52 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:50:00.512200 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5477 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.214:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:50:26.853209 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5478 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.210:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:50:30.903335 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5479 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.246:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:53:10.450404 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:40960 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40960 Seq:52 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:53:10.450404 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:40960 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:40960 Seq:52 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:54:46.913496 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37708 -> 193.232.180.203:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6426B692 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:54:47.803601 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60771 -> 193.232.180.237:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3136FEBC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:55:10.453762 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:39195 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39195 Seq:5 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:55:10.453762 185.93.41.55 -> 192.142.227.20 +ICMP TTL:252 TOS:0x0 ID:39195 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:39195 Seq:5 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:55:34.625353 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.97:443 +TCP TTL:241 TOS:0x0 ID:53548 IpLen:20 DgmLen:40 +Seq: 0x39DC64F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:56:25.037275 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40554 -> 193.232.180.150:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x73030855 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:57:10.459626 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:16037 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16037 Seq:9 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:57:10.459626 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:16037 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:16037 Seq:9 ECHO + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:57:47.733416 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30696 -> 193.232.180.152:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:57:59.140992 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34246 -> 193.232.180.208:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD952461 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:58:10.462199 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:6438 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:6438 Seq:9 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:58:10.462199 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:6438 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:6438 Seq:9 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:58:41.342695 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5480 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.162:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:366:11] "PROTOCOL-ICMP PING Unix" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:59:10.463409 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:29045 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29045 Seq:9 ECHO + +[**] [1:384:8] "PROTOCOL-ICMP PING" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-18:59:10.463409 185.93.41.55 -> 192.142.226.153 +ICMP TTL:252 TOS:0x0 ID:29045 IpLen:20 DgmLen:60 +Type:8 Code:0 ID:29045 Seq:9 ECHO + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:00:49.157616 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46550 -> 193.232.180.212:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF92AE075 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:02:36.311871 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46296 -> 193.232.180.222:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4E523A49 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:04:24.156114 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5481 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.147:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B493 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:03.367552 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65415 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:49112 -> 86.110.96.148:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x207A0CD8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:19.808713 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65416 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:43444 -> 86.110.96.156:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF36A075F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:29.108575 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65417 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:59857 -> 86.110.96.153:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC3E09459 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:46.329423 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65418 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:40714 -> 86.110.96.157:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6654387B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:47.209514 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65419 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:46154 -> 86.110.96.154:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B857878 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:05:59.679858 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65420 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:45748 -> 86.110.96.147:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5013B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:06:03.119993 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65421 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:55592 -> 86.110.96.158:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6A2F5E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:06:12.010239 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65422 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:37968 -> 86.110.96.151:80 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3564B74E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:06:17.350410 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65423 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:53228 -> 86.110.96.149:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5F8AA8E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:06:42.091450 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65424 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:60780 -> 86.110.96.146:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA13EE13F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:06:59.892231 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65425 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:45015 -> 86.110.96.155:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x696608FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:07:07.922722 10.255.255.5 -> 172.169.110.206 +ICMP TTL:63 TOS:0xC0 ID:65426 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.110.206:42649 -> 86.110.96.152:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD01D96AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:09:31.868109 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37257 -> 193.232.180.111:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE36B68BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:09:38.427016 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30751 -> 193.232.180.207:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:10:26.100429 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5482 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.128:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B480 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:12:27.585050 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5483 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.185:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:13:57.298617 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47502 -> 193.232.180.175:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA491A66 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:40.030282 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29806 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41431 -> 193.232.180.243:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B26CA38 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:40.710312 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29807 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50703 -> 193.232.180.240:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1EBAEA15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:41.060329 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29808 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33912 -> 193.232.180.50:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x67F72218 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:41.140300 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29809 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:60378 -> 193.232.180.229:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91104FBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:41.390316 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29810 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55875 -> 193.232.180.97:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEB75F0F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:41.410220 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29811 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49337 -> 193.232.180.94:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF782EF45 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:41.600285 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29812 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57725 -> 193.232.180.169:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F85AA10 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:42.040435 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29813 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40786 -> 193.232.180.227:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC6B78A3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:42.100284 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29814 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40284 -> 193.232.180.199:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9A9E8452 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:42.150428 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29815 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36502 -> 193.232.180.11:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1F6D1501 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:42.420368 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29816 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41340 -> 193.232.180.120:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E547659 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:42.880528 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29817 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33364 -> 193.232.180.179:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAFB20F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:43.110377 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29818 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39097 -> 193.232.180.152:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECD741A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:43.290370 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29819 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48430 -> 193.232.180.39:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5EEDFCBD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:44.670467 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29820 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37101 -> 193.232.180.253:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF5A72587 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:44.690416 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29821 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37382 -> 193.232.180.107:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB30B812E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:44.720464 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29822 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38769 -> 193.232.180.209:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD1D16E19 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:44.970493 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29823 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36440 -> 193.232.180.111:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1F04A3D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:45.760686 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29824 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44294 -> 193.232.180.105:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF422FDA9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:46.070530 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29825 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47386 -> 193.232.180.140:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA3EC05E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:46.890783 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29826 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55770 -> 193.232.180.31:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3AB9BFA9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:47.200560 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29827 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:32785 -> 193.232.180.191:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x239A3B26 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:47.210575 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29828 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44671 -> 193.232.180.12:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E9B37CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:47.640592 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29829 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56049 -> 193.232.180.44:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96E01FA1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:48.950558 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29830 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52381 -> 193.232.180.127:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3FE1CAC7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:51.090617 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29831 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50377 -> 193.232.180.134:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9830CCC7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:51.640688 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29832 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:59413 -> 193.232.180.27:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2F968283 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:51.770710 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29833 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58966 -> 193.232.180.8:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x51E7A9FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:51.950696 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29834 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49245 -> 193.232.180.173:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA48050E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:52.290763 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29835 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41110 -> 193.232.180.163:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDBA6A234 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:52.821076 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29836 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39606 -> 193.232.180.150:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2140324 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:53.360841 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29837 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36167 -> 193.232.180.188:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x984B5286 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:54.450759 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29838 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36224 -> 193.232.180.23:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x73160954 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:56.180984 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29839 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53750 -> 193.232.180.100:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x43106719 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:57.320896 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29840 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48662 -> 193.232.180.246:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1698A809 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:57.470994 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29841 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37097 -> 193.232.180.43:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x11187032 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:57.780981 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29842 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49629 -> 193.232.180.151:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4159D4D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:57.980978 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29843 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54342 -> 193.232.180.53:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E396FCA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:58.250926 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29844 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53175 -> 193.232.180.241:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB07C64A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:14:59.461046 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29845 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37775 -> 193.232.180.110:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1758FD5B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:00.441244 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29846 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40143 -> 193.232.180.208:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x22E9BADD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:00.601060 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29847 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41961 -> 193.232.180.4:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x649D1A3E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:01.091043 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29848 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57312 -> 193.232.180.113:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42A544F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:01.561092 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29849 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53398 -> 193.232.180.210:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7BA76A41 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:01.631072 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29850 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50679 -> 193.232.180.26:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEB030B6A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:01.671089 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29851 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57222 -> 193.232.180.22:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x87584021 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:02.251248 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29852 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50624 -> 193.232.180.99:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1369BC00 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:02.601049 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29853 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39221 -> 193.232.180.17:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAB13DE9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:03.521198 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29854 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38087 -> 193.232.180.29:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E974F9C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:03.641202 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29855 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57966 -> 193.232.180.233:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC89401BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:04.021261 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29856 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49614 -> 193.232.180.5:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x506F7D7A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:04.121181 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29857 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43860 -> 193.232.180.193:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF92CC552 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:04.891219 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29858 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38530 -> 193.232.180.249:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC12A446B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:05.471345 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29859 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34410 -> 193.232.180.155:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84124804 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:07.951361 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29860 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:45363 -> 193.232.180.130:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDA0B1F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:08.041367 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29861 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36622 -> 193.232.180.3:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5AEB526 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:08.461395 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29862 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:45680 -> 193.232.180.137:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66D9A32 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:09.911398 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29863 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53727 -> 193.232.180.71:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF57DD6F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:10.101528 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29864 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44107 -> 193.232.180.18:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB3235A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:10.131482 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29865 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35406 -> 193.232.180.131:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x65C927CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:10.241585 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29866 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48693 -> 193.232.180.76:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x232B53A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:11.211554 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29867 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52788 -> 193.232.180.10:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBEE85793 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:11.591672 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29868 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43136 -> 193.232.180.15:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE53B4101 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:13.051702 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29869 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56905 -> 193.232.180.147:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x68BC9075 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:14.271586 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29870 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43362 -> 193.232.180.214:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42C365DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:15.361624 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29871 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55456 -> 193.232.180.70:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x171D7010 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:15.451625 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29872 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:42884 -> 193.232.180.32:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x608C7E9D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:16.141649 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29873 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38315 -> 193.232.180.124:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE410B62C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:16.651640 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29874 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40646 -> 193.232.180.247:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6378186 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:17.261745 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29875 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48744 -> 193.232.180.172:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x565ED7EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:17.281618 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29876 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55726 -> 193.232.180.215:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CA8A7FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:17.781782 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29877 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33501 -> 193.232.180.213:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4333EFB8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:17.861749 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29878 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:59106 -> 193.232.180.183:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2CA243 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:18.021822 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29879 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34457 -> 193.232.180.244:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4F8E8952 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:18.331768 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29880 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54442 -> 193.232.180.194:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97A62773 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:18.431803 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29881 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53037 -> 193.232.180.242:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA6BC402A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:18.711883 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29882 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35507 -> 193.232.180.225:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96FC1762 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:18.811778 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29883 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36168 -> 193.232.180.82:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA11EC91A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:19.571842 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29884 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52526 -> 193.232.180.79:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x49C2EE8A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:20.991847 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29885 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35264 -> 193.232.180.13:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0FFD41C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:21.711811 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29886 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37211 -> 193.232.180.92:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5C5FC4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:21.821907 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29887 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44409 -> 193.232.180.98:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6C37D54B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:21.891838 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29888 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55789 -> 193.232.180.248:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7010862B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:22.561977 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29889 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:32859 -> 193.232.180.133:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAA404D2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:22.852188 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29890 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51911 -> 193.232.180.200:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDD0E2475 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:22.901974 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29891 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58759 -> 193.232.180.184:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4F3384A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:23.832004 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29892 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53567 -> 193.232.180.62:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0D6E354 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:24.161981 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53993 -> 193.232.180.109:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39CB7B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:24.582050 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29893 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35566 -> 193.232.180.202:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29949AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:24.902043 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29894 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35723 -> 193.232.180.185:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x550BC83D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:25.422070 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29895 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39836 -> 193.232.180.254:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC35EDDAE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:27.252124 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29896 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35245 -> 193.232.180.96:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED463166 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:27.682172 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29897 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37858 -> 193.232.180.69:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB9D069A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:27.802182 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29898 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:60984 -> 193.232.180.54:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF2E2301 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:28.482203 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29899 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:59131 -> 193.232.180.123:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6271237A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:28.492240 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29900 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:59584 -> 193.232.180.106:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFFDDE808 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:29.442254 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29901 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46208 -> 193.232.180.145:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4A4356D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:30.882197 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29902 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46100 -> 193.232.180.60:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20472F47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:31.462283 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29903 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55849 -> 193.232.180.153:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3988A322 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:32.422249 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29904 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48598 -> 193.232.180.175:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71414CCF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:33.342262 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29905 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41715 -> 193.232.180.121:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0ED14A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:33.652454 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29906 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43865 -> 193.232.180.101:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF20C8703 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:34.162446 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29907 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46358 -> 193.232.180.187:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5AB1687E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:35.522517 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29908 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37989 -> 193.232.180.116:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B6F32AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:36.112496 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29909 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:60125 -> 193.232.180.89:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDCEEDF3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:36.312508 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29910 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33081 -> 193.232.180.85:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9F8CCD57 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:36.392480 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29911 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51671 -> 193.232.180.136:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6267029F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:36.852482 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29912 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54608 -> 193.232.180.2:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x17933E3E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:37.662544 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29913 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:32812 -> 193.232.180.159:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFAB5FAAF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:38.452620 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29914 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38382 -> 193.232.180.182:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1240461E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:38.692550 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29915 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36969 -> 193.232.180.125:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFE7F3498 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:39.592508 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29916 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37835 -> 193.232.180.206:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFBED487 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:40.072589 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29917 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58097 -> 193.232.180.104:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB76BDFC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:40.202684 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29918 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:59936 -> 193.232.180.84:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEB76DAD3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:40.642647 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29919 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57357 -> 193.232.180.112:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6886C35 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:41.252743 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29920 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55241 -> 193.232.180.143:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA768BCAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:41.752741 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29921 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35630 -> 193.232.180.72:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDB4E7E1C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:42.662715 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29922 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57169 -> 193.232.180.114:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF6F9BAE5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:42.662716 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29923 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46229 -> 193.232.180.87:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9EED2FDC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:43.132756 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29924 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54183 -> 193.232.180.170:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29194969 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:43.272741 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29925 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41494 -> 193.232.180.75:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91F55686 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:43.482753 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29926 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:45531 -> 193.232.180.239:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB17C42B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:43.492777 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29927 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37807 -> 193.232.180.93:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x10422351 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:44.402701 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29928 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48012 -> 193.232.180.20:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9085ABEE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:44.792752 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29929 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48579 -> 193.232.180.63:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63DDEE6D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:45.042748 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29930 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44118 -> 193.232.180.55:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF5A439C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:45.632803 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29931 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49353 -> 193.232.180.167:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DE395B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:46.322770 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29932 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37446 -> 193.232.180.139:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x619EA3A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:46.462810 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29933 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56397 -> 193.232.180.201:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x459A6799 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:47.502886 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29934 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43169 -> 193.232.180.221:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF5AE4FB2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:47.612901 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29935 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47942 -> 193.232.180.83:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2013E181 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:48.303909 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29936 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:45746 -> 193.232.180.218:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x26F83F49 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:49.363008 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29937 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47973 -> 193.232.180.108:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC352EC67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:50.022983 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29938 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43166 -> 193.232.180.6:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA8FD658 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:50.113027 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29939 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54153 -> 193.232.180.174:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72B15A03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:50.403019 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29940 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49450 -> 193.232.180.177:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44EA63AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:50.693022 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29941 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53806 -> 193.232.180.46:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4D0CA75E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:51.233087 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29942 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46673 -> 193.232.180.138:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3FDB3747 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:52.473188 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29943 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37916 -> 193.232.180.7:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8EB28FAA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:52.933184 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29944 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34556 -> 193.232.180.245:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x194272AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:54.243210 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29945 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53744 -> 193.232.180.231:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6827A97E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:54.303184 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29946 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37497 -> 193.232.180.181:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x56371D1C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:54.343263 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29947 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:45023 -> 193.232.180.118:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9D839DB2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:54.453403 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29948 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:32830 -> 193.232.180.36:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD99D60DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:57.263180 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29949 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56239 -> 193.232.180.57:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91B79ABA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:57.453181 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29950 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52684 -> 193.232.180.65:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19300579 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:57.953310 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29951 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55712 -> 193.232.180.47:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1DA208E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:58.993526 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29952 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34904 -> 193.232.180.77:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x181FFEE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:59.033487 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29953 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49704 -> 193.232.180.41:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x68D9D00A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:15:59.133361 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29954 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33144 -> 193.232.180.212:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7352988A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:00.823477 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29955 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56349 -> 193.232.180.236:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x882ECD28 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:01.053383 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29956 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53229 -> 193.232.180.33:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3032781F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:02.373461 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29957 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41779 -> 193.232.180.19:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB597F260 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:02.743462 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29958 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36089 -> 193.232.180.80:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2CBE6730 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:02.893422 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29959 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51340 -> 193.232.180.190:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF3310449 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:03.033636 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29960 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:42921 -> 193.232.180.211:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0A5DD60 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:03.563569 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29961 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39406 -> 193.232.180.90:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA5D538CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:04.243460 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29962 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56962 -> 193.232.180.56:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECC21627 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:05.853681 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29963 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58102 -> 193.232.180.21:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF5D8CCB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:05.873642 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29964 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46896 -> 193.232.180.51:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6A02CCA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:05.983798 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29965 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47174 -> 193.232.180.95:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x572BF200 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:06.093816 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29966 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44467 -> 193.232.180.165:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x25669EBF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:06.973629 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29967 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55285 -> 193.232.180.160:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xADB6C1ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:07.433622 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29968 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41752 -> 193.232.180.207:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8779F9C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:07.983616 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29969 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33241 -> 193.232.180.158:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95E05057 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:08.173862 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29970 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47618 -> 193.232.180.180:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCA1BE0BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:08.983700 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29971 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50654 -> 193.232.180.24:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE803FDAA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:09.773739 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29972 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:32913 -> 193.232.180.141:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x664638A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:11.033826 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29973 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34321 -> 193.232.180.166:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA15F1CE6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:11.493867 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29974 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46047 -> 193.232.180.34:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8838D9E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:13.343908 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29975 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34470 -> 193.232.180.68:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x26259BD6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:14.583935 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29976 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43275 -> 193.232.180.161:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B91CE0C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:14.863991 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29977 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47536 -> 193.232.180.224:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x31239047 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:16.653938 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29978 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48332 -> 193.232.180.58:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE21BF928 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:17.204061 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29979 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44336 -> 193.232.180.142:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62D89DE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:17.704065 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29980 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35072 -> 193.232.180.217:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63452C3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:18.604124 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29981 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50419 -> 193.232.180.197:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4E393E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:18.614231 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29982 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36955 -> 193.232.180.234:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71D1E9CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:18.854250 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29983 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40264 -> 193.232.180.154:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC53F57DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:19.144187 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29984 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36579 -> 193.232.180.216:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE7F85D67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:19.564188 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29985 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56879 -> 193.232.180.117:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x193F3666 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:20.044198 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29986 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:37160 -> 193.232.180.222:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE947527 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:20.174182 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29987 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:42304 -> 193.232.180.40:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD6EC54C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:20.624228 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29988 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40583 -> 193.232.180.129:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x81179F70 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:21.444202 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29989 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36299 -> 193.232.180.28:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA9CB0AAD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:21.464216 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29990 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58823 -> 193.232.180.144:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B342C84 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:21.644217 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29991 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55614 -> 193.232.180.35:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFDCE809 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:22.114258 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29992 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43498 -> 193.232.180.59:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AD6990F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:22.664260 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29993 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:42391 -> 193.232.180.204:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB83C0591 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:23.784284 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29994 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58220 -> 193.232.180.78:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x462611FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:23.964286 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29995 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54847 -> 193.232.180.176:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD02C7AF9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:24.384362 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29996 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52925 -> 193.232.180.103:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x691E6955 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:24.534400 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29997 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44865 -> 193.232.180.49:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6A79A1B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:24.904417 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29998 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48006 -> 193.232.180.238:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2662699A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:25.974390 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:29999 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34222 -> 193.232.180.198:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF401C669 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:26.334490 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30000 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56877 -> 193.232.180.132:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29FE391 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:27.204468 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30001 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36067 -> 193.232.180.146:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96345BD7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:27.544550 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30002 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:48453 -> 193.232.180.91:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x41D85EA3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:27.644442 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30003 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57333 -> 193.232.180.45:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5716B31A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:28.754480 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30004 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53600 -> 193.232.180.115:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1320508B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:28.784457 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30005 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:39437 -> 193.232.180.162:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9BDB1065 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:29.724509 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30006 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56469 -> 193.232.180.88:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5375DC30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.164557 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30007 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:46479 -> 193.232.180.48:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB125981 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.304585 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30008 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51657 -> 193.232.180.135:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x40B67212 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.374806 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30009 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55398 -> 193.232.180.228:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCEC6237 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.394576 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30010 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35308 -> 193.232.180.196:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23B999DC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.624737 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30011 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54528 -> 193.232.180.149:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB268914 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:30.834588 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30012 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58369 -> 193.232.180.119:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD0D46AE1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:31.254735 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30013 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38584 -> 193.232.180.219:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7993307E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:32.534655 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30014 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50869 -> 193.232.180.203:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DDB6C40 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:32.924632 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30015 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50405 -> 193.232.180.252:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60AD27F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:33.754851 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30016 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34159 -> 193.232.180.52:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC66FD57A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:34.204720 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30017 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44515 -> 193.232.180.237:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1DF01466 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:34.224844 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30018 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:33734 -> 193.232.180.171:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5668A3A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:36.224761 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30019 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53036 -> 193.232.180.128:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7E532B34 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:38.174828 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30020 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53141 -> 193.232.180.178:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3C00D58D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:38.384845 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30021 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:55635 -> 193.232.180.230:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9BC1AA75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:38.584964 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30022 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:38197 -> 193.232.180.64:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6DB5094F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:39.844973 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30023 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47561 -> 193.232.180.195:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x953480FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:40.134965 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30024 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:60337 -> 193.232.180.66:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD161AFA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:40.775149 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30025 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34376 -> 193.232.180.220:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x86B32618 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:40.985054 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30026 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:43581 -> 193.232.180.74:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19E81EF7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:41.084889 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30027 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:58862 -> 193.232.180.42:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x865E0C8D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:41.114943 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30028 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51600 -> 193.232.180.37:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF28CF76D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:41.375003 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30029 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:54651 -> 193.232.180.250:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x17264BDA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:42.305325 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30030 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51071 -> 193.232.180.61:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0A2EEF7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:43.075032 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5484 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.239:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:43.105025 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30031 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51997 -> 193.232.180.102:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B23B78C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:43.975132 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30032 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35790 -> 193.232.180.73:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5F9A047C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:45.125104 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30033 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:53082 -> 193.232.180.192:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x166C3820 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:45.475066 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30034 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47597 -> 193.232.180.9:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x866AA2B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:45.495109 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30035 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:40420 -> 193.232.180.168:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x98AB2B50 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:45.605308 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30036 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:57605 -> 193.232.180.226:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF371E76D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:46.095230 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30037 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:49153 -> 193.232.180.232:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE48ADB63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:46.555187 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30038 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:34103 -> 193.232.180.122:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB058B7F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:47.165225 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30039 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:50026 -> 193.232.180.86:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6CB2A75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:48.825347 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30040 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:47422 -> 193.232.180.205:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88830A18 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:49.045182 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30041 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56095 -> 193.232.180.148:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEF39B8D7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:49.155311 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30042 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:52958 -> 193.232.180.223:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xABAFC0A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:49.185257 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30043 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:44236 -> 193.232.180.81:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42B059F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:49.835358 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30044 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:56080 -> 193.232.180.38:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E4381A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:50.855389 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30045 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:36812 -> 193.232.180.186:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FAE309E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:52.045440 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30046 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:35019 -> 193.232.180.156:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x49CF6D89 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:52.255378 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30047 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:41859 -> 193.232.180.67:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x61763815 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:16:52.315427 10.255.255.5 -> 172.206.148.15 +ICMP TTL:63 TOS:0xC0 ID:30048 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.148.15:51449 -> 193.232.180.16:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B40B4E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:18:13.478723 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.9:80 +TCP TTL:241 TOS:0x0 ID:52517 IpLen:20 DgmLen:40 +Seq: 0x9419797C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:21:38.496619 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59207 -> 193.232.180.20:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x621C7D05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:23:51.320794 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30794 -> 193.232.180.250:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:24:02.492414 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36341 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33871 -> 193.232.180.181:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B9E341A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:24:28.489588 10.255.255.5 -> 182.100.46.196 +ICMP TTL:63 TOS:0xC0 ID:8077 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +182.100.46.196 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:2944 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 41959 Id: 33098 SeqNo: 49849 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:24:31.478770 10.255.255.5 -> 182.100.46.196 +ICMP TTL:63 TOS:0xC0 ID:8078 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +182.100.46.196 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:51568 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 65468 Id: 64598 SeqNo: 60375 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:24:32.490870 10.255.255.5 -> 182.100.46.196 +ICMP TTL:63 TOS:0xC0 ID:8079 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +182.100.46.196 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:4708 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 41950 Id: 33098 SeqNo: 49858 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:24:35.481891 10.255.255.5 -> 182.100.46.196 +ICMP TTL:63 TOS:0xC0 ID:8080 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +182.100.46.196 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:53434 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 65459 Id: 64598 SeqNo: 60384 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:26:19.395051 10.255.255.5 -> 117.33.161.69 +ICMP TTL:63 TOS:0xC0 ID:49710 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +117.33.161.69 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:43496 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 26478 Id: 39063 SeqNo: 59365 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:26:20.928319 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5485 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.237:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4ED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:26:23.397095 10.255.255.5 -> 117.33.161.69 +ICMP TTL:63 TOS:0xC0 ID:49711 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +117.33.161.69 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:45794 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 26469 Id: 39063 SeqNo: 59374 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:26:23.406393 10.255.255.5 -> 117.33.161.69 +ICMP TTL:63 TOS:0xC0 ID:49712 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +117.33.161.69 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:65116 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 49249 Id: 43066 SeqNo: 32591 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:26:27.408458 10.255.255.5 -> 117.33.161.69 +ICMP TTL:63 TOS:0xC0 ID:49713 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +117.33.161.69 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:761 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 49240 Id: 43066 SeqNo: 32600 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:31:44.000380 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5486 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.97:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B461 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:32:59.353271 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5487 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.122:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:33:42.594959 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5488 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.221:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:33:47.205136 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36342 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33642 -> 193.232.180.149:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x31E6708D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:34:09.356185 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36343 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47630 -> 193.232.180.244:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B12835B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:35:49.708463 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30795 -> 193.232.180.251:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:42:06.324693 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5489 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.77:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:45:44.503331 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36344 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33609 -> 193.232.180.207:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB6CC946A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:45:45.433592 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36345 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48595 -> 193.232.180.141:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x818FFDCB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:52:51.980085 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36346 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39254 -> 193.232.180.55:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x691A71AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:53:08.680740 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5490 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.74:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:54:14.461109 10.255.255.5 -> 168.235.81.158 +ICMP TTL:63 TOS:0xC0 ID:63103 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +168.235.81.158 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38257 Id: 38257 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:54:19.465366 10.255.255.5 -> 168.235.81.158 +ICMP TTL:63 TOS:0xC0 ID:63104 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +168.235.81.158 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:12 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38257 Id: 38257 SeqNo: 11 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:54:48.964723 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.107:443 +TCP TTL:241 TOS:0x0 ID:55619 IpLen:20 DgmLen:40 +Seq: 0x790D6C93 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:55:19.656078 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5491 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.165:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:56:10.237987 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36347 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50854 -> 193.232.180.165:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19B26B38 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-19:58:45.354195 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.157:80 +TCP TTL:242 TOS:0x0 ID:55601 IpLen:20 DgmLen:40 +Seq: 0x60D5B9FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:01:36.260740 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36348 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33745 -> 193.232.180.245:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x155FE66B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:01:44.420951 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36349 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38705 -> 193.232.180.142:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x965AA719 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:02:25.822083 10.255.255.5 -> 172.232.32.15 +ICMP TTL:63 TOS:0xC0 ID:29980 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.32.15 -> 193.232.180.197 +ICMP TTL:1 TOS:0x0 ID:29714 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 3391 Id: 29714 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:02:25.824030 10.255.255.5 -> 172.232.32.15 +ICMP TTL:63 TOS:0xC0 ID:29981 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.32.15 -> 193.232.180.137 +ICMP TTL:1 TOS:0x0 ID:29714 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 3451 Id: 29714 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:02:25.824955 10.255.255.5 -> 172.232.32.15 +ICMP TTL:63 TOS:0xC0 ID:29982 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.232.32.15 -> 193.232.180.79 +ICMP TTL:1 TOS:0x0 ID:29714 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 3509 Id: 29714 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:06:09.978120 10.255.255.5 -> 37.120.149.150 +ICMP TTL:63 TOS:0xC0 ID:55888 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.120.149.150 -> 193.232.180.235 +ICMP TTL:1 TOS:0x0 ID:31472 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1595 Id: 31472 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:06:09.978120 10.255.255.5 -> 37.120.149.150 +ICMP TTL:63 TOS:0xC0 ID:55887 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.120.149.150 -> 193.232.180.165 +ICMP TTL:1 TOS:0x0 ID:31472 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1665 Id: 31472 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:06:09.978120 10.255.255.5 -> 37.120.149.150 +ICMP TTL:63 TOS:0xC0 ID:55886 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.120.149.150 -> 193.232.180.43 +ICMP TTL:1 TOS:0x0 ID:31472 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1787 Id: 31472 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:06:09.978120 10.255.255.5 -> 37.120.149.150 +ICMP TTL:63 TOS:0xC0 ID:55889 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.120.149.150 -> 193.232.180.117 +ICMP TTL:1 TOS:0x0 ID:31472 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 1713 Id: 31472 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:10:01.110429 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36350 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47184 -> 193.232.180.28:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x748C2B85 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:10:51.011841 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30622 -> 193.232.180.78:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:11:04.018448 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12589 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30638 -> 193.232.180.94:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:15:18.702921 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36351 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55209 -> 193.232.180.60:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24C2EF69 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:15:32.043427 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5492 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.189:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:17:54.119055 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.202:443 +TCP TTL:241 TOS:0x0 ID:18077 IpLen:20 DgmLen:40 +Seq: 0xB906F3EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:18:32.900551 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5493 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.241:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:20:32.374232 10.255.255.5 -> 163.181.1.161 +ICMP TTL:63 TOS:0xC0 ID:27462 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.1.161 -> 193.232.180.74 +ICMP TTL:1 TOS:0x0 ID:16917 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 20600 Id: 16917 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:21:05.385844 10.255.255.5 -> 50.116.23.150 +ICMP TTL:63 TOS:0xC0 ID:36031 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.23.150 -> 193.232.180.220 +ICMP TTL:1 TOS:0x0 ID:46598 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 52019 Id: 46598 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:21:05.636719 10.255.255.5 -> 50.116.23.150 +ICMP TTL:63 TOS:0xC0 ID:36032 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.23.150 -> 193.232.180.80 +ICMP TTL:1 TOS:0x0 ID:46598 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 52159 Id: 46598 SeqNo: 20 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:21:06.646928 10.255.255.5 -> 50.116.23.150 +ICMP TTL:63 TOS:0xC0 ID:36033 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.23.150 -> 193.232.180.111 +ICMP TTL:1 TOS:0x0 ID:46598 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 52128 Id: 46598 SeqNo: 24 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:21:06.900874 10.255.255.5 -> 50.116.23.150 +ICMP TTL:63 TOS:0xC0 ID:36034 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.23.150 -> 193.232.180.149 +ICMP TTL:1 TOS:0x0 ID:46598 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 52090 Id: 46598 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:21:07.726832 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36352 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46712 -> 193.232.180.127:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x212E2795 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:27:28.658884 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30549 -> 193.232.180.5:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:30:21.098323 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36353 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57054 -> 193.232.180.76:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC8AF0606 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:30:39.468879 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5494 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.58:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:31:46.443112 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12590 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30743 -> 193.232.180.199:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:31:47.951063 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12591 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30694 -> 193.232.180.150:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:32:37.303502 10.255.255.5 -> 172.104.96.108 +ICMP TTL:63 TOS:0xC0 ID:24976 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.104.96.108 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:27982 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 10014 Id: 23330 SeqNo: 58 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:32:37.303502 10.255.255.5 -> 172.104.96.108 +ICMP TTL:63 TOS:0xC0 ID:24977 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.104.96.108 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:27983 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 10013 Id: 23330 SeqNo: 59 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:32:37.312353 10.255.255.5 -> 172.104.96.108 +ICMP TTL:63 TOS:0xC0 ID:24978 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.104.96.108 -> 193.232.180.143 +ICMP TTL:1 TOS:0x0 ID:27984 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 10012 Id: 23330 SeqNo: 60 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:33:13.555296 10.255.255.5 -> 167.88.125.122 +ICMP TTL:63 TOS:0xC0 ID:11399 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +167.88.125.122 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51177 Id: 51177 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:33:18.565502 10.255.255.5 -> 167.88.125.122 +ICMP TTL:63 TOS:0xC0 ID:11400 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +167.88.125.122 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51177 Id: 51177 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:34:43.440796 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30785 -> 193.232.180.241:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:34:53.998919 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36354 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39445 -> 193.232.180.168:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5E01B601 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:35:52.461291 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5495 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.183:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:39:08.888976 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.61:80 +TCP TTL:241 TOS:0x0 ID:46782 IpLen:20 DgmLen:40 +Seq: 0xB2C302D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:39:40.658372 10.255.255.5 -> 75.80.136.51 +ICMP TTL:63 TOS:0xC0 ID:61011 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +75.80.136.51 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44721 Id: 44721 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:39:45.688526 10.255.255.5 -> 75.80.136.51 +ICMP TTL:63 TOS:0xC0 ID:61012 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +75.80.136.51 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:24 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44721 Id: 44721 SeqNo: 23 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:39:51.328774 10.255.255.5 -> 75.80.136.51 +ICMP TTL:63 TOS:0xC0 ID:61013 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +75.80.136.51 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:25 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44721 Id: 44721 SeqNo: 24 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:41:40.744887 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:28709 -> 193.232.180.136:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xE0965677 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:44:19.721070 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.166:80 +TCP TTL:241 TOS:0x0 ID:59721 IpLen:20 DgmLen:40 +Seq: 0x29235DBF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:44:50.192250 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34481 -> 193.232.180.221:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x79867D07 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:59948:1] "SERVER-WEBAPP Atlassian Confluence OGNL expression injection attempt" [**] +08/21-20:46:22.543443 +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:48:42.186717 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30722 -> 193.232.180.178:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:52:26.276603 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12592 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30603 -> 193.232.180.59:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:52:37.360273 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12593 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30657 -> 193.232.180.113:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:53:01.332008 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36356 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39928 -> 193.232.180.19:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x44A3A629 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:55:45.187896 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.38:443 +TCP TTL:241 TOS:0x0 ID:59239 IpLen:20 DgmLen:40 +Seq: 0x70B552FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529558 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64782 +TCP TTL:52 TOS:0x0 ID:50619 IpLen:20 DgmLen:91 DF +Seq: 0x82C9B354 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529558 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64782 +TCP TTL:52 TOS:0x0 ID:50620 IpLen:20 DgmLen:52 DF +Seq: 0x82C9B37B +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529558 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59149 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64786 +TCP TTL:52 TOS:0x0 ID:36174 IpLen:20 DgmLen:91 DF +Seq: 0x2981DB4B +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529558 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59150 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64786 +TCP TTL:52 TOS:0x0 ID:36175 IpLen:20 DgmLen:52 DF +Seq: 0x2981DB72 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529559 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59151 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64782 +TCP TTL:52 TOS:0x0 ID:50621 IpLen:20 DgmLen:52 DF +Seq: 0x82C9B37B +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:01.529559 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59152 IpLen:20 DgmLen:80 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64786 +TCP TTL:52 TOS:0x0 ID:36176 IpLen:20 DgmLen:52 DF +Seq: 0x2981DB72 +(24 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:05.049727 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59147 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64782 +TCP TTL:52 TOS:0x0 ID:50622 IpLen:20 DgmLen:91 DF +Seq: 0x82C9B354 +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:05.049728 185.93.41.55 -> 172.64.41.3 +ICMP TTL:62 TOS:0xC0 ID:59148 IpLen:20 DgmLen:119 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:64786 +TCP TTL:52 TOS:0x0 ID:36177 IpLen:20 DgmLen:91 DF +Seq: 0x2981DB4B +(63 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:11.573691 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:3606 -> 193.232.180.42:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-20:58:19.274085 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.19:443 +TCP TTL:241 TOS:0x0 ID:23954 IpLen:20 DgmLen:40 +Seq: 0x2E91E83A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:00:42.470102 10.255.255.5 -> 64.94.45.66 +ICMP TTL:63 TOS:0xC0 ID:26688 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.66 -> 193.232.180.207 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 27353 Id: 36126 SeqNo: 8 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:00:44.444211 10.255.255.5 -> 64.94.45.59 +ICMP TTL:63 TOS:0xC0 ID:21579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.59 -> 193.232.180.207 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 27351 Id: 36127 SeqNo: 9 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:00:44.602386 10.255.255.5 -> 64.94.45.60 +ICMP TTL:63 TOS:0xC0 ID:8249 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.60 -> 193.232.180.207 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 27351 Id: 36125 SeqNo: 11 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:02:55.014732 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.157:443 +TCP TTL:242 TOS:0x0 ID:52345 IpLen:20 DgmLen:40 +Seq: 0x4DD9AD5F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:03:06.254651 10.255.255.5 -> 64.187.227.119 +ICMP TTL:63 TOS:0xC0 ID:51345 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.187.227.119 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:13 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52391 Id: 52391 SeqNo: 12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:03:11.255472 10.255.255.5 -> 64.187.227.119 +ICMP TTL:63 TOS:0xC0 ID:51346 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.187.227.119 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52391 Id: 52391 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:03:26.865245 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30577 -> 193.232.180.33:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:05:04.806905 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30634 -> 193.232.180.90:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:05:14.050204 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48357 -> 193.232.180.97:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD0FF3F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:10:03.091672 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:49636 -> 193.232.180.88:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x37A8A91D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:10:46.173561 10.255.255.5 -> 64.187.227.121 +ICMP TTL:63 TOS:0xC0 ID:31798 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.187.227.121 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44873 Id: 44873 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:10:51.209814 10.255.255.5 -> 64.187.227.121 +ICMP TTL:63 TOS:0xC0 ID:31799 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.187.227.121 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44873 Id: 44873 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:13:28.459848 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5496 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.124:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:13:33.395145 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12594 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30738 -> 193.232.180.194:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:15:10.372727 10.255.255.5 -> 50.116.23.150 +ICMP TTL:63 TOS:0xC0 ID:36031 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +50.116.23.150 -> 86.110.96.152 +ICMP TTL:1 TOS:0x0 ID:48017 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 34151 Id: 48017 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:16:02.975826 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46267 -> 193.232.180.30:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF113D6C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:17:11.940709 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30628 -> 193.232.180.84:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:18:18.287912 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30761 -> 193.232.180.217:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:18:56.292666 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.155:443 +TCP TTL:241 TOS:0x0 ID:47626 IpLen:20 DgmLen:40 +Seq: 0xD8610F2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:19:01.674254 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30732 -> 193.232.180.188:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:20:42.144048 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14029 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30766 -> 193.232.180.222:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:21:02.097643 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38168 -> 193.232.180.13:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDCD842CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:21:04.835036 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14030 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30759 -> 193.232.180.215:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:21:13.807943 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.117:443 +TCP TTL:241 TOS:0x0 ID:47486 IpLen:20 DgmLen:40 +Seq: 0x57150CB0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:22:50.541846 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34731 -> 193.232.180.228:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA925783E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:23:57.734488 10.255.255.5 -> 163.171.130.26 +ICMP TTL:63 TOS:0xC0 ID:17828 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.130.26 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:25445 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 35442 Id: 1562 SeqNo: 22367 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:23:58.733724 10.255.255.5 -> 163.171.130.26 +ICMP TTL:63 TOS:0xC0 ID:17829 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.130.26 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:14963 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 54844 Id: 50430 SeqNo: 19632 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:24:01.739903 10.255.255.5 -> 163.171.130.26 +ICMP TTL:63 TOS:0xC0 ID:17830 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.130.26 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:27070 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 35433 Id: 1562 SeqNo: 22376 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:24:02.739714 10.255.255.5 -> 163.171.130.26 +ICMP TTL:63 TOS:0xC0 ID:17831 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.171.130.26 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:16517 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 54835 Id: 50430 SeqNo: 19641 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:25:39.558319 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56545 -> 193.232.180.48:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x34939AA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:28:33.595320 10.255.255.5 -> 152.70.75.102 +ICMP TTL:63 TOS:0xC0 ID:38535 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.70.75.102 -> 193.232.180.242 +ICMP TTL:1 TOS:0x0 ID:54936 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 43659 Id: 54936 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:28:33.599694 10.255.255.5 -> 152.70.75.102 +ICMP TTL:63 TOS:0xC0 ID:38536 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.70.75.102 -> 193.232.180.23 +ICMP TTL:1 TOS:0x0 ID:54936 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 43878 Id: 54936 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:28:33.603128 10.255.255.5 -> 152.70.75.102 +ICMP TTL:63 TOS:0xC0 ID:38537 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.70.75.102 -> 193.232.180.165 +ICMP TTL:1 TOS:0x0 ID:54936 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 43736 Id: 54936 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:28:33.603462 10.255.255.5 -> 152.70.75.102 +ICMP TTL:63 TOS:0xC0 ID:38538 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.70.75.102 -> 193.232.180.78 +ICMP TTL:1 TOS:0x0 ID:54936 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 43823 Id: 54936 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:28:40.615436 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.161:80 +TCP TTL:241 TOS:0x0 ID:29111 IpLen:20 DgmLen:40 +Seq: 0x1BEFC546 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:29:06.766377 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36997 -> 193.232.180.131:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E055C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:30:49.820417 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47117 -> 193.232.180.94:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8894E579 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:34:45.920008 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5497 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.174:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:34:51.709964 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39362 -> 193.232.180.215:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB632A93F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:34:56.960227 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5498 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 86.110.96.157:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:35:03.510884 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5499 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.33:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B421 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:37:29.976415 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54511 -> 86.110.96.149:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB72F1F32 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:37:50.617021 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5500 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.232:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:39:48.811625 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5501 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.58:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:39:56.461834 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36367 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38112 -> 193.232.180.119:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC699AF7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:42:06.796923 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5502 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.40:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B428 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:44:20.242225 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5503 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.144:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B490 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:44:21.202314 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.90:443 +TCP TTL:241 TOS:0x0 ID:43219 IpLen:20 DgmLen:40 +Seq: 0x3BF61D32 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:48:18.551524 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5504 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.32:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B420 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:49:03.663463 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.74:80 +TCP TTL:241 TOS:0x0 ID:28020 IpLen:20 DgmLen:40 +Seq: 0x3DD1D96E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:49:32.994458 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5505 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 86.110.96.154:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:52:11.600846 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36368 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41667 -> 193.232.180.102:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x63F34C2D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:52:54.752360 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5506 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.189:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:54:12.085524 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.30:80 +TCP TTL:241 TOS:0x0 ID:5593 IpLen:20 DgmLen:40 +Seq: 0xF3D9A197 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:54:20.685760 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36369 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40003 -> 193.232.180.157:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4CDD4876 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:56:45.596609 10.255.255.5 -> 125.39.141.133 +ICMP TTL:63 TOS:0xC0 ID:768 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +125.39.141.133 -> 193.232.180.252 +ICMP TTL:1 TOS:0x0 ID:65524 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33061 Id: 65524 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:56:45.600725 10.255.255.5 -> 125.39.141.133 +ICMP TTL:63 TOS:0xC0 ID:769 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +125.39.141.133 -> 193.232.180.151 +ICMP TTL:1 TOS:0x0 ID:65524 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33162 Id: 65524 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:56:45.605584 10.255.255.5 -> 125.39.141.133 +ICMP TTL:63 TOS:0xC0 ID:770 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +125.39.141.133 -> 193.232.180.179 +ICMP TTL:1 TOS:0x0 ID:65524 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33134 Id: 65524 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:56:45.616540 10.255.255.5 -> 125.39.141.133 +ICMP TTL:63 TOS:0xC0 ID:771 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +125.39.141.133 -> 193.232.180.21 +ICMP TTL:1 TOS:0x0 ID:65524 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 33292 Id: 65524 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-21:57:10.382526 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5507 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.153:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6099 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:00:41.590798 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.247:443 +TCP TTL:241 TOS:0x0 ID:32911 IpLen:20 DgmLen:40 +Seq: 0xFE035C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:01:22.602499 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5508 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.109:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:02:27.684962 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5509 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.138:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:02:39.685391 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36370 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:52490 -> 193.232.180.148:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7333882 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:04:53.305657 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30670 -> 193.232.180.126:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:05:49.823386 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14029 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30792 -> 193.232.180.248:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:06:03.293533 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36371 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47414 -> 193.232.180.113:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCDA7FDA4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:07:10.506147 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5510 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.251:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:08:26.979021 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36372 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:33828 -> 193.232.180.204:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4C574402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:08:50.810072 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5511 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.70:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B446 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:09:08.540688 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36373 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38793 -> 86.110.96.151:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62F760D3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:10:52.194818 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36374 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37519 -> 86.110.96.157:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1A651145 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:11:03.635320 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36375 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59813 -> 193.232.180.50:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8A4B161B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:11:48.356962 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36376 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44780 -> 193.232.180.176:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24955571 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:14:16.812615 10.255.255.5 -> 185.47.254.178 +ICMP TTL:63 TOS:0xC0 ID:11700 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.47.254.178 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64331 Id: 64331 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:14:21.827711 10.255.255.5 -> 185.47.254.178 +ICMP TTL:63 TOS:0xC0 ID:11701 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.47.254.178 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64331 Id: 64331 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:14:52.476267 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30578 -> 193.232.180.34:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:17:45.903901 10.255.255.5 -> 113.57.9.147 +ICMP TTL:63 TOS:0xC0 ID:51804 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.147 -> 193.232.180.108 +ICMP TTL:1 TOS:0x0 ID:49818 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 48911 Id: 49818 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:17:45.907717 10.255.255.5 -> 113.57.9.147 +ICMP TTL:63 TOS:0xC0 ID:51805 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.147 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:49818 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 48793 Id: 49818 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:17:45.914715 10.255.255.5 -> 113.57.9.147 +ICMP TTL:63 TOS:0xC0 ID:51806 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.147 -> 193.232.180.180 +ICMP TTL:1 TOS:0x0 ID:49818 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 48839 Id: 49818 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:17:45.915519 10.255.255.5 -> 113.57.9.147 +ICMP TTL:63 TOS:0xC0 ID:51807 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.57.9.147 -> 193.232.180.133 +ICMP TTL:1 TOS:0x0 ID:49818 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 48886 Id: 49818 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:18:26.312655 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.152:443 +TCP TTL:242 TOS:0x0 ID:10529 IpLen:20 DgmLen:40 +Seq: 0x49384802 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:18:48.113441 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.158:443 +TCP TTL:241 TOS:0x0 ID:45004 IpLen:20 DgmLen:40 +Seq: 0x6991AE9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:19:21.124694 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36377 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47605 -> 193.232.180.227:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50F200CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:24:15.506442 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5512 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.219:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:24:48.377656 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5513 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 86.110.96.154:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:26:35.941669 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5514 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 86.110.96.154:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:27:00.921954 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30740 -> 193.232.180.196:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:29:14.078042 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.104:80 +TCP TTL:241 TOS:0x0 ID:53185 IpLen:20 DgmLen:40 +Seq: 0xC5197BF9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:29:58.369538 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5515 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.250:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:31:32.493506 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5516 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.87:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B457 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:36:47.435937 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36378 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39161 -> 193.232.180.225:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x31B50BC9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:37:33.987596 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5517 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.207:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:39:07.261320 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5518 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.125:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:42:27.399195 10.255.255.5 -> 194.195.122.95 +ICMP TTL:63 TOS:0xC0 ID:25499 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +194.195.122.95 -> 86.110.96.153 +ICMP TTL:1 TOS:0x0 ID:4831 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 11801 Id: 4831 SeqNo: 23 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:43:27.331366 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.106:443 +TCP TTL:241 TOS:0x0 ID:12626 IpLen:20 DgmLen:40 +Seq: 0x5F298483 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:43:30.522169 10.255.255.5 -> 107.181.191.16 +ICMP TTL:63 TOS:0xC0 ID:34793 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.181.191.16 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64381 Id: 64381 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:43:35.540339 10.255.255.5 -> 107.181.191.16 +ICMP TTL:63 TOS:0xC0 ID:34794 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.181.191.16 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64381 Id: 64381 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:45:56.407283 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5519 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.2:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:46:45.679405 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5520 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.74:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:47:05.719919 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36379 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46172 -> 193.232.180.220:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x38CA9C6F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:49:53.606550 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36380 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54759 -> 193.232.180.226:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x55E550EE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:51:29.541114 10.255.255.5 -> 157.185.179.83 +ICMP TTL:63 TOS:0xC0 ID:20297 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.179.83 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:48862 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 19102 Id: 28641 SeqNo: 11628 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:51:29.541114 10.255.255.5 -> 157.185.179.83 +ICMP TTL:63 TOS:0xC0 ID:20298 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.179.83 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:40995 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 38113 Id: 44335 SeqNo: 42458 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:51:33.543420 10.255.255.5 -> 157.185.179.83 +ICMP TTL:63 TOS:0xC0 ID:20299 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.179.83 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:50835 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 19093 Id: 28641 SeqNo: 11637 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:51:33.543420 10.255.255.5 -> 157.185.179.83 +ICMP TTL:63 TOS:0xC0 ID:20300 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +157.185.179.83 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:43302 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 38104 Id: 44335 SeqNo: 42467 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:52:44.183401 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.73:443 +TCP TTL:241 TOS:0x0 ID:32701 IpLen:20 DgmLen:40 +Seq: 0xA428CA4F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:52:44.983276 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36381 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59654 -> 193.232.180.249:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x303FD466 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:53:26.555107 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 86.110.96.158:443 +TCP TTL:242 TOS:0x0 ID:20799 IpLen:20 DgmLen:40 +Seq: 0x2E48301A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:53:44.615672 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.67:443 +TCP TTL:241 TOS:0x0 ID:44868 IpLen:20 DgmLen:40 +Seq: 0x120E1ABC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:54:56.824589 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30775 -> 193.232.180.231:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:55:18.947410 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30686 -> 193.232.180.142:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:56:09.247926 10.255.255.5 -> 38.91.107.75 +ICMP TTL:63 TOS:0xC0 ID:35075 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.91.107.75 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54390 Id: 54390 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:56:14.250121 10.255.255.5 -> 38.91.107.75 +ICMP TTL:63 TOS:0xC0 ID:35076 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.91.107.75 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54390 Id: 54390 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:56:39.722484 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57398 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:58652 -> 86.110.96.152:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x589D6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:56:40.662663 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57399 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:33095 -> 86.110.96.157:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC434D2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:56:46.653365 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57400 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:53106 -> 86.110.96.149:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x93571DC1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:11.724029 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57401 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:57645 -> 86.110.96.158:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD63F4AE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:12.663882 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57402 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:42320 -> 86.110.96.148:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x22CB35D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:25.174404 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57403 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:39730 -> 86.110.96.147:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF54074D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:40.994924 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57404 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:53596 -> 86.110.96.155:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7E55BD84 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:44.114989 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57405 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:50221 -> 86.110.96.151:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA6D120C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:54.145487 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57406 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:49019 -> 86.110.96.153:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x45B2FEE5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:57:54.305422 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57407 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:55343 -> 86.110.96.154:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1F59D3FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:58:19.756633 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57408 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:53723 -> 86.110.96.146:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x995AE65F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:58:25.546703 10.255.255.5 -> 172.168.40.211 +ICMP TTL:63 TOS:0xC0 ID:57409 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.168.40.211:36131 -> 86.110.96.156:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF939E54D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:58:26.786878 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36382 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44623 -> 193.232.180.53:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1301BBF1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-22:59:45.009817 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5521 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.36:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B424 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:00:54.692448 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5522 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.128:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B480 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:08.140797 10.255.255.5 -> 170.39.227.143 +ICMP TTL:63 TOS:0xC0 ID:16450 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +170.39.227.143 -> 193.232.180.206 +ICMP TTL:1 TOS:0x0 ID:24548 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 8548 Id: 24548 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:08.140797 10.255.255.5 -> 170.39.227.143 +ICMP TTL:63 TOS:0xC0 ID:16449 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +170.39.227.143 -> 193.232.180.132 +ICMP TTL:1 TOS:0x0 ID:24548 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 8622 Id: 24548 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:08.142727 10.255.255.5 -> 170.39.227.143 +ICMP TTL:63 TOS:0xC0 ID:16451 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +170.39.227.143 -> 193.232.180.179 +ICMP TTL:1 TOS:0x0 ID:24548 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 8575 Id: 24548 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:08.142727 10.255.255.5 -> 170.39.227.143 +ICMP TTL:63 TOS:0xC0 ID:16452 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +170.39.227.143 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:24548 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 8721 Id: 24548 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:37.757130 10.255.255.5 -> 198.148.92.176 +ICMP TTL:63 TOS:0xC0 ID:16567 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +198.148.92.176 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 40041 Id: 40041 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:40.114484 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36383 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50641 -> 193.232.180.233:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC2691863 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:42.759041 10.255.255.5 -> 198.148.92.176 +ICMP TTL:63 TOS:0xC0 ID:16568 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +198.148.92.176 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:24 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 40041 Id: 40041 SeqNo: 23 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:01:44.494480 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36384 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50700 -> 193.232.180.62:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5913F54 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:03:38.618963 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36385 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40518 -> 193.232.180.238:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEED9276B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:04:20.906273 10.255.255.5 -> 184.75.215.61 +ICMP TTL:63 TOS:0xC0 ID:53997 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +184.75.215.61 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 39107 Id: 39107 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:04:25.908407 10.255.255.5 -> 184.75.215.61 +ICMP TTL:63 TOS:0xC0 ID:53998 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +184.75.215.61 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 39107 Id: 39107 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:04:43.116423 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5523 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.250:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:05:39.323807 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.45:443 +TCP TTL:241 TOS:0x0 ID:5017 IpLen:20 DgmLen:40 +Seq: 0xDC58A60F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:06:07.824731 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5524 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.165:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:06:40.749041 10.255.255.5 -> 23.111.254.249 +ICMP TTL:63 TOS:0xC0 ID:23220 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.111.254.249 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38253 Id: 38253 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:06:45.750316 10.255.255.5 -> 23.111.254.249 +ICMP TTL:63 TOS:0xC0 ID:23221 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.111.254.249 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38253 Id: 38253 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:08:57.860834 10.255.255.5 -> 107.152.33.91 +ICMP TTL:63 TOS:0xC0 ID:22559 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.152.33.91 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36364 Id: 36364 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:09:02.862123 10.255.255.5 -> 107.152.33.91 +ICMP TTL:63 TOS:0xC0 ID:22560 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.152.33.91 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36364 Id: 36364 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:09:54.737591 10.255.255.5 -> 43.157.136.212 +ICMP TTL:63 TOS:0xC0 ID:10936 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +43.157.136.212:41416 -> 193.232.180.75:33435 +UDP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 22153 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:09:55.738592 10.255.255.5 -> 43.157.136.212 +ICMP TTL:63 TOS:0xC0 ID:10937 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +43.157.136.212:41416 -> 193.232.180.75:33435 +UDP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 22154 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:09:57.555670 10.255.255.5 -> 43.157.136.212 +ICMP TTL:63 TOS:0xC0 ID:10938 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +43.157.136.212:41416 -> 193.232.180.24:33435 +UDP TTL:1 TOS:0x0 ID:24 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 22155 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:09:58.556387 10.255.255.5 -> 43.157.136.212 +ICMP TTL:63 TOS:0xC0 ID:10939 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +43.157.136.212:41416 -> 193.232.180.24:33435 +UDP TTL:1 TOS:0x0 ID:25 IpLen:20 DgmLen:44 DF +Len: 16 Csum: 22156 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:12:22.349139 10.255.255.5 -> 92.38.169.251 +ICMP TTL:63 TOS:0xC0 ID:52738 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.169.251 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59625 Id: 59625 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:12:27.350195 10.255.255.5 -> 92.38.169.251 +ICMP TTL:63 TOS:0xC0 ID:52739 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.169.251 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59625 Id: 59625 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:15:21.410980 10.255.255.5 -> 176.124.32.11 +ICMP TTL:63 TOS:0xC0 ID:12588 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +176.124.32.11:30797 -> 193.232.180.253:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 6 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:16:29.719190 10.255.255.5 -> 192.118.42.254 +ICMP TTL:63 TOS:0xC0 ID:8461 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.118.42.254:53782 -> 193.232.180.72:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B448 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:16:56.450380 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.34:80 +TCP TTL:241 TOS:0x0 ID:26724 IpLen:20 DgmLen:40 +Seq: 0x1C88DC16 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:19:53.257173 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5525 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.165:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:23:41.716075 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5526 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.133:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B485 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:24:37.068464 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.52:443 +TCP TTL:241 TOS:0x0 ID:43865 IpLen:20 DgmLen:40 +Seq: 0xF3D81ED6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:24:56.628981 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.34:443 +TCP TTL:241 TOS:0x0 ID:53133 IpLen:20 DgmLen:40 +Seq: 0x3D67A14 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:25:40.940985 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.43:443 +TCP TTL:241 TOS:0x0 ID:33836 IpLen:20 DgmLen:40 +Seq: 0x8FE31BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:25:52.211207 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.110:443 +TCP TTL:241 TOS:0x0 ID:8078 IpLen:20 DgmLen:40 +Seq: 0xEEB8AA5B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:28:00.047306 10.255.255.5 -> 162.220.51.35 +ICMP TTL:63 TOS:0xC0 ID:49027 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +162.220.51.35 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61917 Id: 61917 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:28:05.049432 10.255.255.5 -> 162.220.51.35 +ICMP TTL:63 TOS:0xC0 ID:49028 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +162.220.51.35 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61917 Id: 61917 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:29:38.060282 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40975 -> 193.232.180.37:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9D83B63 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:30:44.752596 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5527 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 86.110.96.152:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6098 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:30:57.273359 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5528 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.162:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:31:01.603501 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5529 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.188:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:32:14.656295 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60856 -> 193.232.180.130:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5A2F81A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:35:49.264701 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5530 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.114:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B472 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:36:13.415585 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46352 -> 193.232.180.186:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE723B56E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:36:34.325751 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30795 -> 193.232.180.251:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:37:19.868490 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.76:443 +TCP TTL:241 TOS:0x0 ID:38068 IpLen:20 DgmLen:40 +Seq: 0xAE512143 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:40:06.114806 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60942 -> 193.232.180.135:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52F1E605 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:41:00.426979 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53645 -> 193.232.180.51:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF308D770 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:42:30.270493 10.255.255.5 -> 192.241.129.61 +ICMP TTL:63 TOS:0xC0 ID:29587 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.129.61:18691 -> 193.232.180.145:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B491 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:47:14.481545 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5531 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.60:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:49:17.546383 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:35800 -> 193.232.180.79:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF031FA5A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:50:14.188792 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5532 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.165:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:50:34.849401 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30549 -> 193.232.180.5:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:51:28.871679 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:23258 -> 193.232.180.7:443 +TCP TTL:241 TOS:0x0 ID:11965 IpLen:20 DgmLen:40 +Seq: 0xBDE29B01 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:51:40.321721 10.255.255.5 -> 104.166.182.132 +ICMP TTL:63 TOS:0xC0 ID:23408 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +104.166.182.132 -> 193.232.180.7 +ICMP TTL:1 TOS:0x0 ID:58368 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 7165 Id: 58368 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:53:12.005648 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34796 -> 193.232.180.189:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD2A6B88 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:53:28.486313 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5533 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.31:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:54:25.878689 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5534 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.67:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B443 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:54:50.949420 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24968 -> 193.232.180.45:80 +TCP TTL:241 TOS:0x0 ID:11537 IpLen:20 DgmLen:40 +Seq: 0x85C6996C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:55:16.060450 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47547 -> 193.232.180.214:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2E2F17DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:55:39.741613 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5535 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.33:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B421 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:58:39.028359 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5536 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.56:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B438 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:59:36.415262 10.255.255.5 -> 124.236.16.163 +ICMP TTL:63 TOS:0xC0 ID:1297 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.236.16.163 -> 193.232.180.154 +ICMP TTL:1 TOS:0x0 ID:63268 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 35415 Id: 63268 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:59:36.415435 10.255.255.5 -> 124.236.16.163 +ICMP TTL:63 TOS:0xC0 ID:1298 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.236.16.163 -> 193.232.180.211 +ICMP TTL:1 TOS:0x0 ID:63268 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 35358 Id: 63268 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/21-23:59:36.418119 10.255.255.5 -> 124.236.16.163 +ICMP TTL:63 TOS:0xC0 ID:1299 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +124.236.16.163 -> 193.232.180.35 +ICMP TTL:1 TOS:0x0 ID:63268 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 35534 Id: 63268 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:01:34.445181 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5537 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.49:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B431 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:04:01.641199 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39175 -> 193.232.180.115:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBF5CFCFB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:04:38.500332 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30766 -> 193.232.180.222:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:04:43.504538 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30759 -> 193.232.180.215:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:05:38.194841 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5538 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.157:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:06:00.629105 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30761 -> 193.232.180.217:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:08:10.450835 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55196 -> 193.232.180.44:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF392352 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:08:19.917113 10.255.255.5 -> 163.181.1.162 +ICMP TTL:63 TOS:0xC0 ID:14427 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.1.162 -> 193.232.180.36 +ICMP TTL:1 TOS:0x0 ID:51529 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 12072 Id: 51529 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:09:45.174533 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5539 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.166:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:10:50.907188 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5540 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.228:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:11:00.407508 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.171:443 +TCP TTL:241 TOS:0x0 ID:39138 IpLen:20 DgmLen:40 +Seq: 0xE3E62DF2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:13:44.704130 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53193 -> 193.232.180.138:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x11F9DCEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:14:20.473107 10.255.255.5 -> 92.38.149.234 +ICMP TTL:63 TOS:0xC0 ID:30789 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.149.234 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:13 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38781 Id: 38781 SeqNo: 12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:14:25.473077 10.255.255.5 -> 92.38.149.234 +ICMP TTL:63 TOS:0xC0 ID:30790 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.149.234 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38781 Id: 38781 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:15:05.267242 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.10:443 +TCP TTL:241 TOS:0x0 ID:54391 IpLen:20 DgmLen:40 +Seq: 0xD1D861C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:16:01.589309 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5541 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.59:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:17:57.341686 10.255.255.5 -> 8.45.52.133 +ICMP TTL:63 TOS:0xC0 ID:3257 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.45.52.133 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:22604 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 8109 Id: 22604 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:18:26.503124 10.255.255.5 -> 113.200.63.216 +ICMP TTL:63 TOS:0xC0 ID:55875 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +113.200.63.216 -> 193.232.180.6 +ICMP TTL:1 TOS:0x0 ID:48262 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 50569 Id: 48262 SeqNo: 16 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:19:52.804384 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30792 -> 193.232.180.248:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:20:04.144978 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16768 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30670 -> 193.232.180.126:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:21:38.702659 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.76:80 +TCP TTL:241 TOS:0x0 ID:63846 IpLen:20 DgmLen:40 +Seq: 0xE5444D7A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:21:44.202873 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5542 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.45:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:24:07.078396 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5543 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.110:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:24:43.419870 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5544 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.50:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B432 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:26:15.483351 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39794 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:55969 -> 86.110.96.149:1194 +UDP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:26:23.493763 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.11:443 +TCP TTL:241 TOS:0x0 ID:28819 IpLen:20 DgmLen:40 +Seq: 0xAD42C523 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:26:42.984484 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39795 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:50885 -> 86.110.96.148:1194 +UDP TTL:228 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:26:50.904873 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39796 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:58075 -> 86.110.96.157:1194 +UDP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:27:19.505964 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39797 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:52287 -> 86.110.96.151:1194 +UDP TTL:229 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:27:21.185935 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39798 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:39297 -> 86.110.96.153:1194 +UDP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:27:33.226444 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54959 -> 193.232.180.231:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x94EF62E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:27:34.536613 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39799 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:36567 -> 86.110.96.156:1194 +UDP TTL:229 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:28:41.149184 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39800 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:58968 -> 86.110.96.158:1194 +UDP TTL:229 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:29:10.340392 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5545 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.83:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B453 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:29:26.571016 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39801 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:60639 -> 86.110.96.155:1194 +UDP TTL:229 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:29:28.660960 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39802 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:60264 -> 86.110.96.154:1194 +UDP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:29:36.571325 10.255.255.5 -> 172.206.142.100 +ICMP TTL:63 TOS:0xC0 ID:39803 IpLen:20 DgmLen:66 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.206.142.100:49287 -> 86.110.96.146:1194 +UDP TTL:228 TOS:0x0 ID:54321 IpLen:20 DgmLen:38 +Len: 10 Csum: 0 +(10 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:31:38.243535 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16769 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30686 -> 193.232.180.142:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:35:21.690697 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30605 -> 193.232.180.61:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:36:32.216348 10.255.255.5 -> 208.115.216.137 +ICMP TTL:63 TOS:0xC0 ID:21822 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.115.216.137 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35164 Id: 35164 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:36:37.217396 10.255.255.5 -> 208.115.216.137 +ICMP TTL:63 TOS:0xC0 ID:21823 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.115.216.137 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35164 Id: 35164 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:37:11.369241 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55224 -> 193.232.180.216:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F65D837 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:37:53.550730 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47196 -> 193.232.180.247:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0F02462 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:42:39.242030 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.168:443 +TCP TTL:241 TOS:0x0 ID:27289 IpLen:20 DgmLen:40 +Seq: 0x56E9DF8A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:42:55.102676 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.63:80 +TCP TTL:241 TOS:0x0 ID:20601 IpLen:20 DgmLen:40 +Seq: 0xC070E416 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:43:00.303116 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.220:80 +TCP TTL:241 TOS:0x0 ID:55091 IpLen:20 DgmLen:40 +Seq: 0xABAB63BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:45:25.408488 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5546 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.242:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:34.663704 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50963 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:23571 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 17306 Id: 15727 SeqNo: 26338 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:34.667095 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50964 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:45428 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 3744 Id: 46451 SeqNo: 9176 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:38.666395 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50965 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:25566 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 17295 Id: 15727 SeqNo: 26349 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:38.670397 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50966 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:47719 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 3733 Id: 46451 SeqNo: 9187 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:46.666854 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50967 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:52666 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 11227 Id: 51352 SeqNo: 62327 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:50.667827 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50968 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:54237 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 11218 Id: 51352 SeqNo: 62336 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:51.677963 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50969 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:28625 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 61688 Id: 9980 SeqNo: 53238 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:46:55.678485 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50970 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:31336 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 61677 Id: 9980 SeqNo: 53249 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:47:03.700726 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50971 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:14672 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 43217 Id: 11435 SeqNo: 4719 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:47:07.702674 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50972 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:16885 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 43208 Id: 11435 SeqNo: 4728 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:47:12.703216 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50973 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:56238 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 62016 Id: 25258 SeqNo: 37632 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:47:16.703368 10.255.255.5 -> 183.162.238.1 +ICMP TTL:63 TOS:0xC0 ID:50974 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.162.238.1 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:58309 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 62007 Id: 25258 SeqNo: 37641 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:55:35.922510 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5547 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.172:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:57:23.847056 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5548 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 86.110.96.155:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:58:20.705683 10.255.255.5 -> 163.181.131.213 +ICMP TTL:63 TOS:0xC0 ID:14113 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.131.213 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:43866 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 44284 Id: 43866 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-00:59:26.181683 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:26902 -> 193.232.180.77:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x429FF095 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:01:00.744201 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30605 -> 193.232.180.61:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:02:07.485460 10.255.255.5 -> 64.31.22.136 +ICMP TTL:63 TOS:0xC0 ID:12039 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.31.22.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 53348 Id: 53348 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:02:12.488643 10.255.255.5 -> 64.31.22.136 +ICMP TTL:63 TOS:0xC0 ID:12040 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.31.22.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 53348 Id: 53348 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:02:18.738520 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57341 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.152:443 +TCP TTL:241 TOS:0x0 ID:59285 IpLen:20 DgmLen:40 +Seq: 0xAC3B52B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:06:11.067410 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57342 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.80:443 +TCP TTL:241 TOS:0x0 ID:35157 IpLen:20 DgmLen:40 +Seq: 0xCC983CBE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:10:15.849916 10.255.255.5 -> 167.160.93.230 +ICMP TTL:63 TOS:0xC0 ID:40725 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +167.160.93.230 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35922 Id: 35922 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:10:21.031129 10.255.255.5 -> 167.160.93.230 +ICMP TTL:63 TOS:0xC0 ID:40726 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +167.160.93.230 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35922 Id: 35922 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:10:40.368193 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38527 -> 193.232.180.161:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35C383E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:12:29.402337 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5549 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.150:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B496 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:12:46.473056 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5550 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.69:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B445 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:13:08.783819 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47941 -> 193.232.180.162:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD37BAF5A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:13:30.054673 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60047 -> 193.232.180.9:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3C7A01B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:13:41.385322 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57343 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.227:80 +TCP TTL:241 TOS:0x0 ID:32936 IpLen:20 DgmLen:40 +Seq: 0x7A25341B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:15:30.579535 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60329 -> 193.232.180.167:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB34985C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:16:35.112755 10.255.255.5 -> 45.135.148.140 +ICMP TTL:63 TOS:0xC0 ID:21338 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.135.148.140 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61847 Id: 61847 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:16:40.114883 10.255.255.5 -> 45.135.148.140 +ICMP TTL:63 TOS:0xC0 ID:21339 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.135.148.140 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61847 Id: 61847 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:17:38.148008 10.255.255.5 -> 74.63.247.207 +ICMP TTL:63 TOS:0xC0 ID:65433 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.247.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36799 Id: 36799 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:17:44.609361 10.255.255.5 -> 74.63.247.207 +ICMP TTL:63 TOS:0xC0 ID:65434 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.247.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 36799 Id: 36799 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:19:09.228087 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5551 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.239:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:23:55.720900 10.255.255.5 -> 163.181.57.205 +ICMP TTL:63 TOS:0xC0 ID:33568 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.57.205 -> 193.232.180.226 +ICMP TTL:1 TOS:0x0 ID:20798 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 13244 Id: 20798 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:25:08.682337 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5552 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.112:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B470 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:26:50.693832 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30773 -> 193.232.180.229:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:28:08.569063 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54063 -> 193.232.180.184:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A8E828 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:28:46.430666 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57344 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 86.110.96.153:443 +TCP TTL:242 TOS:0x0 ID:584 IpLen:20 DgmLen:40 +Seq: 0x6888636A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:29:14.911823 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5553 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.137:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B489 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:29:58.838119 10.255.255.5 -> 183.224.14.198 +ICMP TTL:63 TOS:0xC0 ID:42287 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.224.14.198 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:45391 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 36058 Id: 21616 SeqNo: 1697 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:30:02.841135 10.255.255.5 -> 183.224.14.198 +ICMP TTL:63 TOS:0xC0 ID:42288 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +183.224.14.198 -> 193.232.180.129 +ICMP TTL:1 TOS:0x0 ID:47174 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 36047 Id: 21616 SeqNo: 1708 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:30:03.143729 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5554 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.53:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B435 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:33:57.122841 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57345 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.215:443 +TCP TTL:241 TOS:0x0 ID:36868 IpLen:20 DgmLen:40 +Seq: 0xFB5B2568 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:35:30.586580 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5555 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.227:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:36:05.857782 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42868 -> 193.232.180.86:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAFB0FBEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:37:55.862104 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5556 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.148:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B494 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:38:17.752996 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57346 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.148:443 +TCP TTL:241 TOS:0x0 ID:31018 IpLen:20 DgmLen:40 +Seq: 0x4FB8CC05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:40:32.938256 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38436 -> 193.232.180.128:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x920C92D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:41:27.340433 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57347 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.160:443 +TCP TTL:241 TOS:0x0 ID:62414 IpLen:20 DgmLen:40 +Seq: 0xFB2D46D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:41:29.680500 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57154 -> 193.232.180.73:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x87E88266 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:42:42.820719 10.255.255.5 -> 23.133.64.19 +ICMP TTL:63 TOS:0xC0 ID:32364 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.133.64.19 -> 193.232.180.18 +ICMP TTL:1 TOS:0x0 ID:35709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63110 Id: 35709 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:42:43.123917 10.255.255.5 -> 23.133.64.19 +ICMP TTL:63 TOS:0xC0 ID:32365 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.133.64.19 -> 193.232.180.91 +ICMP TTL:1 TOS:0x0 ID:35709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 63037 Id: 35709 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:42:43.367838 10.255.255.5 -> 23.133.64.19 +ICMP TTL:63 TOS:0xC0 ID:32366 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.133.64.19 -> 193.232.180.252 +ICMP TTL:1 TOS:0x0 ID:35709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62876 Id: 35709 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:42:43.369689 10.255.255.5 -> 23.133.64.19 +ICMP TTL:63 TOS:0xC0 ID:32367 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.133.64.19 -> 193.232.180.157 +ICMP TTL:1 TOS:0x0 ID:35709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 62971 Id: 35709 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:42:55.823911 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5557 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.236:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:43:23.434963 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5558 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.59:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:44:41.009660 10.255.255.5 -> 145.14.131.156 +ICMP TTL:63 TOS:0xC0 ID:16709 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.14.131.156 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 45440 Id: 45440 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:44:46.012848 10.255.255.5 -> 145.14.131.156 +ICMP TTL:63 TOS:0xC0 ID:16710 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.14.131.156 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 45440 Id: 45440 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:44:53.378420 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48618 -> 193.232.180.46:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30619162 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:48:42.097316 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48258 -> 86.110.96.147:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6029201B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:48:48.773077 10.255.255.5 -> 172.245.214.186 +ICMP TTL:63 TOS:0xC0 ID:56652 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.245.214.186 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60128 Id: 60128 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:48:53.778060 10.255.255.5 -> 172.245.214.186 +ICMP TTL:63 TOS:0xC0 ID:56653 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.245.214.186 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60128 Id: 60128 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:49:12.088910 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5559 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.157:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:50:51.352459 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50578 -> 193.232.180.108:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC6CA250 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:51:11.518088 10.255.255.5 -> 163.181.145.196 +ICMP TTL:63 TOS:0xC0 ID:19740 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.145.196 -> 193.232.180.82 +ICMP TTL:1 TOS:0x0 ID:9636 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 55757 Id: 9636 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:51:15.083590 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55214 -> 193.232.180.31:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6AF66484 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:51:42.575267 10.255.255.5 -> 69.25.7.69 +ICMP TTL:63 TOS:0xC0 ID:4099 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.69 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 25668 Id: 37811 SeqNo: 8 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:51:43.125805 10.255.255.5 -> 69.25.7.75 +ICMP TTL:63 TOS:0xC0 ID:19579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.75 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 25662 Id: 37813 SeqNo: 12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:51:43.471728 10.255.255.5 -> 69.25.7.78 +ICMP TTL:63 TOS:0xC0 ID:47458 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.78 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 25668 Id: 37812 SeqNo: 7 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:53:50.069494 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5560 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.127:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B47F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:53:55.719576 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57348 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.252:80 +TCP TTL:241 TOS:0x0 ID:12598 IpLen:20 DgmLen:40 +Seq: 0x3E5859A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-01:55:26.513181 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34460 -> 193.232.180.124:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1127D39A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:02:25.702583 10.255.255.5 -> 64.31.22.170 +ICMP TTL:63 TOS:0xC0 ID:21857 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.31.22.170 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58208 Id: 58208 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:02:30.704670 10.255.255.5 -> 64.31.22.170 +ICMP TTL:63 TOS:0xC0 ID:21858 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.31.22.170 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58208 Id: 58208 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:02:37.710094 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57349 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.153:443 +TCP TTL:241 TOS:0x0 ID:60081 IpLen:20 DgmLen:40 +Seq: 0x193A5F93 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:02:43.320438 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5561 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.151:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6097 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:02:43.920244 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:19757 -> 193.232.180.168:443 +TCP TTL:241 TOS:0x0 ID:48742 IpLen:20 DgmLen:40 +Seq: 0xEEF20B75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:05:38.567167 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:47344 -> 193.232.180.91:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x48791C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:05:46.117404 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5562 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.164:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:07:12.061006 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51307 -> 193.232.180.200:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC41AC9B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:08:39.972898 10.255.255.5 -> 74.63.223.228 +ICMP TTL:63 TOS:0xC0 ID:4908 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.223.228 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 46149 Id: 46149 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:08:45.383238 10.255.255.5 -> 74.63.223.228 +ICMP TTL:63 TOS:0xC0 ID:4909 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.223.228 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:24 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 46149 Id: 46149 SeqNo: 23 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:10:00.967588 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57350 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 86.110.96.149:80 +TCP TTL:242 TOS:0x0 ID:36056 IpLen:20 DgmLen:40 +Seq: 0xEE22EC1D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:11:36.671102 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57351 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.141:443 +TCP TTL:241 TOS:0x0 ID:24329 IpLen:20 DgmLen:40 +Seq: 0xBABAEA3F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:11:48.091471 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5563 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.95:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B45F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:12:55.464248 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5564 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.202:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:16:57.783890 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57352 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.253:80 +TCP TTL:241 TOS:0x0 ID:64307 IpLen:20 DgmLen:40 +Seq: 0xDDE24F9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:18:55.377513 10.255.255.5 -> 118.113.198.159 +ICMP TTL:63 TOS:0xC0 ID:9736 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.113.198.159 -> 193.232.180.207 +ICMP TTL:1 TOS:0x0 ID:11706 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21389 Id: 11706 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:18:55.389480 10.255.255.5 -> 118.113.198.159 +ICMP TTL:63 TOS:0xC0 ID:9737 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.113.198.159 -> 193.232.180.112 +ICMP TTL:1 TOS:0x0 ID:11706 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21484 Id: 11706 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:18:55.404537 10.255.255.5 -> 118.113.198.159 +ICMP TTL:63 TOS:0xC0 ID:9738 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.113.198.159 -> 193.232.180.187 +ICMP TTL:1 TOS:0x0 ID:11706 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21409 Id: 11706 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:18:55.651514 10.255.255.5 -> 118.113.198.159 +ICMP TTL:63 TOS:0xC0 ID:9739 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +118.113.198.159 -> 193.232.180.22 +ICMP TTL:1 TOS:0x0 ID:11706 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 21574 Id: 11706 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:19:09.338777 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39715 -> 193.232.180.229:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50763B75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:21:02.183168 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42882 -> 193.232.180.17:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC304D9CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:22:59.717787 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57694 -> 193.232.180.188:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DAF0070 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:23:07.418129 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5565 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.98:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B462 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:23:38.339308 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44007 -> 193.232.180.252:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x54F665C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:24:03.756968 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30773 -> 193.232.180.229:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:24:40.582053 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40047 -> 193.232.180.38:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5FA19E60 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:25:06.673005 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57353 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.40:80 +TCP TTL:241 TOS:0x0 ID:28562 IpLen:20 DgmLen:40 +Seq: 0x5240DBEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:27:38.778759 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50331 -> 193.232.180.182:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x579AD762 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:28:11.920389 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5566 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.42:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:31:40.008379 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53559 -> 193.232.180.218:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x867C1616 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:32:32.700741 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:8777 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:60921 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:32:32.700741 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:14608 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:60921 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:33:27.202362 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:48395 -> 193.232.180.171:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD3521370 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:36:28.461115 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30790 -> 193.232.180.246:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:36:41.670337 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5567 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.177:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:36:49.040533 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57354 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.70:443 +TCP TTL:241 TOS:0x0 ID:5112 IpLen:20 DgmLen:40 +Seq: 0xFCECA605 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:37:10.411264 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57355 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.221:80 +TCP TTL:241 TOS:0x0 ID:10558 IpLen:20 DgmLen:40 +Seq: 0x967F9DB3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:40:43.117899 10.255.255.5 -> 78.47.43.201 +ICMP TTL:63 TOS:0xC0 ID:37052 IpLen:20 DgmLen:92 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +78.47.43.201 -> 193.232.180.4 +ICMP TTL:1 TOS:0x0 ID:53181 IpLen:20 DgmLen:64 +Type: 8 Code: 0 Csum: 25241 Id: 5232 SeqNo: 33014 +(36 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:43:40.626527 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57356 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.97:80 +TCP TTL:241 TOS:0x0 ID:52139 IpLen:20 DgmLen:40 +Seq: 0x15C47F9A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:45:42.971303 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:45889 -> 193.232.180.191:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29FFCC33 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:46:13.239238 10.255.255.5 -> 205.209.152.106 +ICMP TTL:63 TOS:0xC0 ID:30123 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +205.209.152.106 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47935 Id: 47935 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:46:18.241480 10.255.255.5 -> 205.209.152.106 +ICMP TTL:63 TOS:0xC0 ID:30124 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +205.209.152.106 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47935 Id: 47935 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:48:53.328774 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:34168 -> 193.232.180.145:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x390B0440 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:50:09.551684 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:42123 -> 193.232.180.103:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x80C0F310 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:50:39.863058 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60388 -> 193.232.180.224:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x80A1E9B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:50:53.186269 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30693 -> 193.232.180.149:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:50:56.313831 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5568 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.14:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:51:38.075439 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5569 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.2:80 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B402 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:52:14.066630 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:40583 -> 193.232.180.10:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFEEC9121 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:53:18.309190 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5570 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.236:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:53:36.889817 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5571 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.148:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6094 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:53:39.480065 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57357 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.22:443 +TCP TTL:241 TOS:0x0 ID:48322 IpLen:20 DgmLen:40 +Seq: 0x9C53096F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:54:06.762673 10.255.255.5 -> 74.63.223.186 +ICMP TTL:63 TOS:0xC0 ID:21983 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.223.186 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32947 Id: 32947 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:54:12.068045 10.255.255.5 -> 74.63.223.186 +ICMP TTL:63 TOS:0xC0 ID:21984 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.63.223.186 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32947 Id: 32947 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:54:31.321978 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5572 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 86.110.96.151:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E6097 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:54:48.092564 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60207 -> 193.232.180.58:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60E40508 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:54:59.548780 10.255.255.5 -> 74.3.163.136 +ICMP TTL:63 TOS:0xC0 ID:10829 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 65148 Id: 65148 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:55:04.548851 10.255.255.5 -> 74.3.163.136 +ICMP TTL:63 TOS:0xC0 ID:10830 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 65148 Id: 65148 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:57:21.078698 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37240 -> 193.232.180.92:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBEB9259F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:59:55.684579 10.255.255.5 -> 120.232.252.226 +ICMP TTL:63 TOS:0xC0 ID:22993 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +120.232.252.226 -> 193.232.180.168 +ICMP TTL:1 TOS:0x0 ID:63229 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 35440 Id: 63229 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-02:59:55.684579 10.255.255.5 -> 120.232.252.226 +ICMP TTL:63 TOS:0xC0 ID:22994 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +120.232.252.226 -> 193.232.180.84 +ICMP TTL:1 TOS:0x0 ID:63229 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 35524 Id: 63229 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:04.014810 10.255.255.5 -> 144.208.127.177 +ICMP TTL:63 TOS:0xC0 ID:60019 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +144.208.127.177 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52315 Id: 52315 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:09.023120 10.255.255.5 -> 144.208.127.177 +ICMP TTL:63 TOS:0xC0 ID:60020 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +144.208.127.177 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52315 Id: 52315 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:27.105932 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9795 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47875 -> 193.232.180.14:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x162B6EEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:27.336179 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9796 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49305 -> 193.232.180.51:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7CE0626D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:29.005962 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9797 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42138 -> 193.232.180.246:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x240F28BC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:29.246097 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9798 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56186 -> 193.232.180.186:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB2811324 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:30.106199 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9799 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53176 -> 193.232.180.72:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21281798 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:30.436076 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9800 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57832 -> 193.232.180.247:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE33E9DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:30.746247 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9801 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49054 -> 193.232.180.8:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8A5D41A8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:30.996215 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9802 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40392 -> 193.232.180.145:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6BCBB62D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:31.116246 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9803 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48043 -> 193.232.180.56:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6E5A27FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:31.486384 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9804 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57318 -> 193.232.180.196:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x34678D9B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:31.506035 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9805 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51631 -> 193.232.180.16:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x85A8D904 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:33.896252 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9806 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54123 -> 193.232.180.42:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7889D50A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:34.166217 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9807 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41440 -> 193.232.180.28:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF837EDA3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:35.436380 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9808 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60705 -> 193.232.180.38:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB89634F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:35.946483 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9809 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57543 -> 193.232.180.101:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE2970C42 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.096334 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9810 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:58611 -> 193.232.180.36:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x38BC2110 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.106529 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9811 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43664 -> 193.232.180.120:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x45775DCF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.456304 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9812 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42369 -> 193.232.180.149:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF3B7CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.536488 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9813 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48226 -> 193.232.180.79:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1CE2AB8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.806354 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9814 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41419 -> 193.232.180.65:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7062A9B3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.816317 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9815 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57739 -> 193.232.180.211:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6E12AEFE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.846436 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9816 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41151 -> 193.232.180.169:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCFECC37 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:36.986381 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9817 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54020 -> 193.232.180.34:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDE73664F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:37.296391 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9818 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59098 -> 193.232.180.146:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x762B5FDE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:37.696634 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9819 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48623 -> 193.232.180.189:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB59DDB22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:38.677101 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9820 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55858 -> 193.232.180.23:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5B356253 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:39.606354 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9821 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57214 -> 193.232.180.180:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x84846936 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:39.676495 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9822 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48882 -> 193.232.180.15:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9CC280C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:40.196463 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55361 -> 193.232.180.164:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE5C6AB5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:40.237346 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9823 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59169 -> 193.232.180.87:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57029DFA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:40.416487 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9824 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51699 -> 193.232.180.133:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1454A944 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:40.906694 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9825 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40554 -> 193.232.180.77:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC62D3240 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:40.966644 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9826 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38208 -> 193.232.180.109:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90043D15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:41.596548 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9827 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38013 -> 193.232.180.172:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x87C05395 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:41.656609 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9828 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42023 -> 193.232.180.138:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8AD4FBF8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:43.176845 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9829 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44188 -> 193.232.180.132:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2D0B6898 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:43.596625 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9830 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40433 -> 193.232.180.110:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x222C215D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:44.206692 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9831 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36858 -> 193.232.180.127:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2C241819 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:47.266764 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9832 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43406 -> 193.232.180.184:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23B92037 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:47.736800 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9833 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48350 -> 193.232.180.185:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x946FE0F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:48.166854 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9834 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55752 -> 193.232.180.12:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5469354 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:48.546858 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9835 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:58862 -> 193.232.180.205:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1A06D87D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:48.967163 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9836 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45729 -> 193.232.180.85:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFC879947 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:49.726845 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9837 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46907 -> 193.232.180.33:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F875C78 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:49.756877 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9838 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57514 -> 193.232.180.69:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20D24E5E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:50.107174 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9839 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42178 -> 193.232.180.30:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD008E04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:50.336835 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9840 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37388 -> 193.232.180.52:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60CF69F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:51.886965 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9841 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40391 -> 193.232.180.63:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0532748 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:51.947012 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9842 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36673 -> 193.232.180.78:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE9E836EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:52.676944 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9843 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59304 -> 193.232.180.32:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B851AB2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:52.876958 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9844 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60164 -> 193.232.180.89:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x54420494 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:54.407090 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9845 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45873 -> 193.232.180.131:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE88A2F06 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:54.476989 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9846 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50474 -> 193.232.180.229:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD556B96F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:54.967205 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9847 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43396 -> 193.232.180.103:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC7AAEE4A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:55.847192 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9848 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38084 -> 193.232.180.154:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2425D94F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:55.887223 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9849 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54756 -> 193.232.180.82:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE8953B29 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:56.997221 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9850 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40130 -> 193.232.180.88:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE3CDC8F5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:57.677117 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9851 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47641 -> 193.232.180.6:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xACC1B9A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:57.747253 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9852 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33094 -> 193.232.180.62:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3ED2F7A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:57.907255 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9853 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39072 -> 193.232.180.66:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7DE3B0BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:57.937190 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9854 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54697 -> 193.232.180.221:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66D5224F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:58.041046 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9855 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40743 -> 193.232.180.250:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x301DF5E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:58.677229 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9856 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36513 -> 193.232.180.245:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19140BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:00:59.977420 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9857 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39514 -> 193.232.180.162:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA13B6A5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:00.677215 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9858 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33768 -> 193.232.180.176:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAEE03291 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:01.067261 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9859 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53167 -> 193.232.180.81:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x22BC803 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:01.957348 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9860 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52831 -> 193.232.180.183:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA895E8E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:02.077472 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9861 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48032 -> 193.232.180.13:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF771579 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:02.637470 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9862 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:34229 -> 193.232.180.9:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9865FA01 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:02.827373 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9863 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40676 -> 193.232.180.188:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC35FF1B5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:03.047333 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9864 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49865 -> 193.232.180.124:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD7A91BBC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:03.247494 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9865 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42516 -> 193.232.180.90:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECC26F58 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:03.567355 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9866 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60985 -> 193.232.180.140:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6DA6A781 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:04.727388 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9867 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47785 -> 193.232.180.60:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB17CBC3E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:05.807675 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9868 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38577 -> 193.232.180.107:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x255EF149 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:05.927695 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9869 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56919 -> 193.232.180.236:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50D0E410 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:06.447467 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9870 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39108 -> 193.232.180.4:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC4ADE9DE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:06.627509 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9871 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57917 -> 193.232.180.251:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD2E9A92 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:07.017510 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9872 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45770 -> 193.232.180.37:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2C2C7429 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:07.117577 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9873 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54721 -> 193.232.180.244:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1BD07217 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:07.897560 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9874 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57526 -> 193.232.180.166:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1D8E36DB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:08.477547 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9875 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59919 -> 193.232.180.58:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAE19A194 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:09.677568 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9876 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50233 -> 193.232.180.171:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x73B3464F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:10.477766 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9877 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43349 -> 193.232.180.7:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFE2F952E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:10.657697 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9878 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43087 -> 193.232.180.50:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4A0AEE79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:11.337760 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9879 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:34235 -> 193.232.180.213:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAF5630F6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:11.667745 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9880 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57791 -> 193.232.180.165:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9E2AD20F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:11.677668 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9881 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57681 -> 193.232.180.197:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4B9AF1C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:11.697733 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9882 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39602 -> 193.232.180.231:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x58A64B18 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:12.067786 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9883 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56459 -> 193.232.180.114:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x568733E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:12.587746 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9884 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44833 -> 193.232.180.151:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBFE55D1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:12.607965 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9885 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50782 -> 193.232.180.137:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66499BED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:12.827786 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9886 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40226 -> 193.232.180.224:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x19157EB2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:12.847897 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9887 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50967 -> 193.232.180.24:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD5DCCEE4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.267880 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9888 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56328 -> 193.232.180.122:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CA26459 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.337778 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9889 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56640 -> 193.232.180.35:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA27CB415 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.448092 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9890 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55288 -> 193.232.180.117:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9119BDA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.707790 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9891 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40173 -> 193.232.180.94:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29AF1B79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.877991 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9892 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40116 -> 193.232.180.248:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91AD6F70 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:14.897798 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9893 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:35069 -> 193.232.180.3:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8852527 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:16.227811 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9894 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:58226 -> 193.232.180.111:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEB7E0AED +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:16.577916 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9895 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42545 -> 193.232.180.191:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF9C27506 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:16.677973 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9896 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42982 -> 193.232.180.31:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB6B83F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:16.998060 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9897 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59630 -> 193.232.180.41:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE775E1C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:17.488001 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9898 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50686 -> 193.232.180.220:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x18951D68 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:17.747836 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9899 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:34253 -> 193.232.180.181:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88313458 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:19.287943 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9900 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43943 -> 193.232.180.194:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x81D9DDBA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:19.758064 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9901 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54264 -> 193.232.180.26:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x199C8D42 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:20.528096 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9902 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45318 -> 193.232.180.48:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x230705B3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:20.777938 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9903 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51235 -> 193.232.180.55:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x960B872F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:21.458278 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9904 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52217 -> 193.232.180.40:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC386D20D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:22.538182 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9905 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59110 -> 193.232.180.222:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4BE66EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:23.048183 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9906 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36805 -> 193.232.180.139:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x49836EB9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:23.118247 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9907 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46207 -> 193.232.180.95:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72A4E47B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:23.488194 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9908 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:32851 -> 193.232.180.17:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD4397F35 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:24.158247 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9909 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39941 -> 193.232.180.20:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x962813A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:25.178182 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9910 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48651 -> 193.232.180.252:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88BE7DAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:25.398378 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9911 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60902 -> 193.232.180.97:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x474162C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:25.538206 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9912 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33168 -> 193.232.180.168:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8C5152B1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:26.328364 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9913 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42749 -> 193.232.180.158:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97C8B25B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:26.928267 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9914 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48550 -> 193.232.180.152:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD60D34E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:26.989252 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9915 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44661 -> 193.232.180.136:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD058C076 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:27.278259 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9916 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38105 -> 193.232.180.148:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2ADCA349 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:27.408520 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9917 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50437 -> 193.232.180.241:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x66D6E631 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:27.958644 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9918 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38060 -> 193.232.180.54:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x14CE2811 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:28.538284 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9919 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39021 -> 193.232.180.2:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x60B025EA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:29.548611 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9920 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42686 -> 193.232.180.240:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7AF10D21 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:30.478624 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9921 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39217 -> 193.232.180.84:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x94B6D69F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:30.638469 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9922 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33059 -> 193.232.180.11:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96B3A414 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:31.848567 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9923 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:39445 -> 193.232.180.99:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBF728B6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:31.978700 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9924 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51919 -> 193.232.180.200:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3380B350 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:32.018601 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9925 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36251 -> 193.232.180.93:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE4271C95 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:33.218675 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9926 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46523 -> 193.232.180.129:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5E5CFD08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:33.348725 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9927 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53902 -> 193.232.180.253:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE15E64BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:34.268582 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9928 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56961 -> 193.232.180.239:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9132F571 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:35.228613 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9929 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33923 -> 193.232.180.173:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39538D6F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:35.308582 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9930 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47029 -> 193.232.180.190:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDDCA540B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:36.228611 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9931 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42842 -> 193.232.180.70:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA500DD15 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:38.068750 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9932 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52654 -> 193.232.180.21:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2CC0880F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:38.148815 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9933 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53594 -> 193.232.180.199:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8E9E30AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:38.288802 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9934 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41370 -> 193.232.180.116:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA3E40E4F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:39.268704 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9935 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49996 -> 193.232.180.106:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1E67A905 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:39.348708 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9936 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37205 -> 193.232.180.91:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B09BC84 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:41.318856 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9937 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33886 -> 193.232.180.235:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x826798AD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:41.818973 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9938 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47588 -> 193.232.180.202:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE81D80B1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:41.919023 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9939 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52797 -> 193.232.180.174:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x948D49F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:43.108962 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9940 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45898 -> 193.232.180.115:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8668344B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:43.298997 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9941 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40833 -> 193.232.180.75:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF6748785 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:43.339009 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9942 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:58985 -> 193.232.180.216:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x26A4E692 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:44.288963 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9943 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38832 -> 193.232.180.217:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4059F06F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:45.399021 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9944 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48694 -> 193.232.180.125:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA90D63E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:45.669111 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9945 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46915 -> 193.232.180.64:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5D98F3BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:45.829207 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9946 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:40505 -> 193.232.180.121:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDA1D8E9E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:46.089115 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9947 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:35585 -> 193.232.180.206:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB105855D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:47.399210 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9948 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46733 -> 193.232.180.215:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5CAC5F71 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:48.419181 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9949 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47706 -> 193.232.180.25:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5ABC0D75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:48.659232 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9950 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51856 -> 193.232.180.49:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2772E93C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:49.009344 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9951 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59169 -> 193.232.180.218:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B8FBB73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:50.739301 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9952 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57703 -> 193.232.180.61:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFE10099B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:50.789291 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9953 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41785 -> 193.232.180.150:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x353118F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:51.239262 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9954 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52179 -> 193.232.180.167:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52249A9F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:51.429595 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9955 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55237 -> 193.232.180.144:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD892245E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:51.489314 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9956 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47440 -> 193.232.180.74:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF3ABD8AB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:51.749427 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9957 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56503 -> 193.232.180.19:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1197DA70 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:52.179516 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9958 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43999 -> 193.232.180.92:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x13DAD75D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:52.279225 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9959 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38124 -> 193.232.180.141:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5C172E0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:52.429489 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9960 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45311 -> 193.232.180.104:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x37F3F43D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:52.509413 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9961 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51139 -> 193.232.180.68:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5BDA5A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:52.959331 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9962 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49869 -> 193.232.180.192:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x150AFEC8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:53.139321 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9963 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45446 -> 193.232.180.83:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFFAE93C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:53.149362 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9964 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56039 -> 193.232.180.123:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB963CBE1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:55.719415 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9965 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50120 -> 193.232.180.219:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57092923 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:56.859561 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9966 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45812 -> 193.232.180.44:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9E0BB84 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:57.239430 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9967 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47705 -> 193.232.180.45:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9EA3C271 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:58.189467 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9968 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:32962 -> 193.232.180.237:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6BBF00DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:59.809607 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9969 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43334 -> 193.232.180.230:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE922FA22 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:01:59.989566 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9970 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45455 -> 193.232.180.177:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88BF5317 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:00.499660 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9971 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55088 -> 193.232.180.227:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB138A7D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:00.579682 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9972 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59633 -> 193.232.180.76:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x781E03D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:01.529678 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9973 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:35423 -> 193.232.180.128:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3C0B7F3B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:01.639673 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9974 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54272 -> 193.232.180.212:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBDFF348 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:02.359833 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9975 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56851 -> 193.232.180.203:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x74A8A471 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:02.759928 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9976 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37316 -> 193.232.180.156:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE0D00880 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:02.879688 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9977 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49024 -> 193.232.180.254:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FC0F39C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:03.439741 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9978 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52901 -> 193.232.180.228:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA7D2B6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:04.260000 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9979 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37201 -> 193.232.180.209:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x62C223DD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:04.489769 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9980 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37123 -> 193.232.180.118:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x50B42970 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:04.619779 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9981 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57917 -> 193.232.180.193:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5F3FF022 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:04.709789 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9982 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33870 -> 193.232.180.10:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB8663CF6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:05.179859 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9983 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51742 -> 193.232.180.232:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D9991E8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:05.889944 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9984 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49276 -> 193.232.180.102:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1086D3CC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:06.409764 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9985 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33785 -> 193.232.180.210:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5256191A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:07.090020 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9986 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36416 -> 193.232.180.153:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5757AAA4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:07.549968 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9987 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:34915 -> 193.232.180.112:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x24903CDB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:08.730052 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9988 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44609 -> 193.232.180.207:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBD614EC1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:10.700263 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9989 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:48723 -> 193.232.180.18:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFDDB9089 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:12.450192 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9990 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:42666 -> 193.232.180.234:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA872B2E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:12.850113 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9991 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60693 -> 193.232.180.161:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8240CB19 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:13.120246 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9992 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38105 -> 193.232.180.43:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF63A8FCF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:13.140165 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9993 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37391 -> 193.232.180.108:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA48D08CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:13.230381 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9994 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53589 -> 193.232.180.204:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5367435B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:13.240195 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9995 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51291 -> 193.232.180.225:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBE57AF87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:14.010174 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9996 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59072 -> 193.232.180.147:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD501E742 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:14.220193 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9997 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57128 -> 193.232.180.163:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88976424 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:14.490317 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9998 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47539 -> 193.232.180.47:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECD351C5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:15.880391 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:9999 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36240 -> 193.232.180.80:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDB5889EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:16.050233 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10000 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54471 -> 193.232.180.98:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAF9DF703 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:16.530533 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10001 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56681 -> 193.232.180.208:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF4A9613D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:16.790463 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10002 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47676 -> 193.232.180.249:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9184E0C8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:17.400346 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10003 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:49239 -> 193.232.180.164:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x82A8F37B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:18.800406 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10004 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:41020 -> 193.232.180.113:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xACA9B421 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:19.740339 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10005 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60360 -> 193.232.180.71:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4DA4DA5C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:20.330462 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10006 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60457 -> 193.232.180.105:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4EF39E67 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:20.480364 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10007 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:35605 -> 193.232.180.233:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7E229A6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:20.880426 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10008 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50396 -> 193.232.180.46:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE02C541 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:21.100429 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10009 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44381 -> 193.232.180.159:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC935CA00 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:22.080436 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10010 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:34620 -> 193.232.180.179:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x486308C2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:22.750802 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10011 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60143 -> 193.232.180.119:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3655ADEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:23.050535 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10012 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59419 -> 193.232.180.160:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69C010F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:24.500542 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10013 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50752 -> 193.232.180.155:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA51F3E79 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:24.640537 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10014 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36792 -> 193.232.180.198:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB34768A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:24.680601 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10015 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43595 -> 193.232.180.27:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6F75A35B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:25.161256 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10016 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:52309 -> 193.232.180.143:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x91811985 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:25.520624 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10017 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:57856 -> 193.232.180.195:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x139552B2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:26.430640 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10018 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37945 -> 193.232.180.223:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE7067C7E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:26.900669 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10019 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51447 -> 193.232.180.182:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7D6875A7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:27.000645 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10020 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:43575 -> 193.232.180.67:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69B90517 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:27.220668 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10021 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:56309 -> 193.232.180.130:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9C82AD3F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:27.520706 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10022 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37550 -> 193.232.180.157:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3CB0DD0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.060728 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10023 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54057 -> 193.232.180.238:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x85970EDD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.390762 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10024 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55872 -> 193.232.180.29:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9413DD1E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.440684 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10025 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36081 -> 193.232.180.134:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD4330E03 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.520755 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10026 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:54926 -> 193.232.180.96:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF569CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.590655 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10027 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37456 -> 193.232.180.126:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF54E6329 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:28.860753 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10028 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:60960 -> 193.232.180.73:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FB8BE97 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:30.520772 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10029 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:33714 -> 193.232.180.100:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFB0CBA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:31.110836 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10030 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:59515 -> 193.232.180.214:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2F6BC2C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:31.380957 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10031 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:47647 -> 193.232.180.59:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x133D2306 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:31.660899 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10032 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50412 -> 193.232.180.243:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2455CDA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:31.940822 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10033 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:46478 -> 193.232.180.226:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3A644EEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:32.520883 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10034 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50672 -> 193.232.180.201:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x958D1ADD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:32.651081 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10035 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:51782 -> 193.232.180.5:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD27F62F8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:33.331142 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10036 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:50024 -> 193.232.180.86:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F3421B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:33.470837 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10037 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:44608 -> 193.232.180.242:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB0CDAC99 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:34.210962 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10038 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:36313 -> 193.232.180.57:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97175E17 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:36.041812 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10039 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:45205 -> 193.232.180.53:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x21B1A046 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:36.511027 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10040 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:55139 -> 193.232.180.175:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3A132080 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:37.531243 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10041 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:37937 -> 193.232.180.178:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8D0D901 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:37.901247 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10042 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:53211 -> 193.232.180.135:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC69BD4BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:02:38.011035 10.255.255.5 -> 172.169.6.183 +ICMP TTL:63 TOS:0xC0 ID:10043 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.183:38838 -> 193.232.180.187:443 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x68C2A9F0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:03:05.864049 10.255.255.5 -> 111.26.37.242 +ICMP TTL:63 TOS:0xC0 ID:19345 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.26.37.242 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:58939 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 5200 Id: 52516 SeqNo: 1655 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:03:06.885245 10.255.255.5 -> 111.26.37.242 +ICMP TTL:63 TOS:0xC0 ID:19346 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.26.37.242 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:3284 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 63311 Id: 57530 SeqNo: 4065 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:03:09.867205 10.255.255.5 -> 111.26.37.242 +ICMP TTL:63 TOS:0xC0 ID:19347 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.26.37.242 -> 193.232.180.97 +ICMP TTL:1 TOS:0x0 ID:60594 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 5190 Id: 52516 SeqNo: 1665 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:03:10.891057 10.255.255.5 -> 111.26.37.242 +ICMP TTL:63 TOS:0xC0 ID:19348 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.26.37.242 -> 193.232.180.225 +ICMP TTL:1 TOS:0x0 ID:5462 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 63301 Id: 57530 SeqNo: 4075 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:04:08.578953 10.255.255.5 -> 37.143.128.127 +ICMP TTL:63 TOS:0xC0 ID:40913 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.143.128.127 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54746 Id: 54746 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:04:13.580143 10.255.255.5 -> 37.143.128.127 +ICMP TTL:63 TOS:0xC0 ID:40914 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.143.128.127 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54746 Id: 54746 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:06:47.950896 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5573 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.154:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:07:10.311816 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57358 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.80:80 +TCP TTL:241 TOS:0x0 ID:48560 IpLen:20 DgmLen:40 +Seq: 0x1C0609B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:07:43.493076 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57359 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.14:443 +TCP TTL:241 TOS:0x0 ID:23761 IpLen:20 DgmLen:40 +Seq: 0x4EFE964 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:08:38.015303 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5574 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.56:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B438 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:11:02.390948 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5575 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.227:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:13:23.499897 10.255.255.5 -> 37.143.128.123 +ICMP TTL:63 TOS:0xC0 ID:12698 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.143.128.123 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 62715 Id: 62715 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:13:28.505935 10.255.255.5 -> 37.143.128.123 +ICMP TTL:63 TOS:0xC0 ID:12699 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +37.143.128.123 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 62715 Id: 62715 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:15:41.521956 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57360 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.194:443 +TCP TTL:241 TOS:0x0 ID:32662 IpLen:20 DgmLen:40 +Seq: 0x9E6BCAEF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:17:57.658400 10.255.255.5 -> 185.255.123.224 +ICMP TTL:63 TOS:0xC0 ID:22035 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.255.123.224 -> 193.232.180.43 +ICMP TTL:1 TOS:0x0 ID:40512 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 58282 Id: 40512 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:17:57.660898 10.255.255.5 -> 185.255.123.224 +ICMP TTL:63 TOS:0xC0 ID:22036 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.255.123.224 -> 193.232.180.78 +ICMP TTL:1 TOS:0x0 ID:40512 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 58247 Id: 40512 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:17:57.668579 10.255.255.5 -> 185.255.123.224 +ICMP TTL:63 TOS:0xC0 ID:22037 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.255.123.224 -> 193.232.180.111 +ICMP TTL:1 TOS:0x0 ID:40512 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 58214 Id: 40512 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:17:57.673264 10.255.255.5 -> 185.255.123.224 +ICMP TTL:63 TOS:0xC0 ID:22038 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.255.123.224 -> 193.232.180.218 +ICMP TTL:1 TOS:0x0 ID:40512 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 58107 Id: 40512 SeqNo: 14 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:18:52.268068 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30706 -> 193.232.180.162:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:21:25.585370 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57361 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.42:443 +TCP TTL:241 TOS:0x0 ID:20450 IpLen:20 DgmLen:40 +Seq: 0xE699FA73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:23:09.436855 10.255.255.5 -> 92.38.186.85 +ICMP TTL:63 TOS:0xC0 ID:54294 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.186.85 -> 193.232.180.179 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64758 Id: 64758 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:23:16.117024 10.255.255.5 -> 92.38.186.85 +ICMP TTL:63 TOS:0xC0 ID:54295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.186.85 -> 193.232.180.179 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64758 Id: 64758 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:23:23.017323 10.255.255.5 -> 92.38.186.85 +ICMP TTL:63 TOS:0xC0 ID:54296 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.38.186.85 -> 193.232.180.179 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64758 Id: 64758 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:23:36.000506 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:24637 -> 193.232.180.246:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x67531847 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:25:04.533962 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:41100 -> 193.232.180.85:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x54D30492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:25:25.725035 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5576 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.212:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:26:48.948033 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5577 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.209:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:27:37.300224 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:51925 -> 193.232.180.11:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEB395D96 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:28:15.401445 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57362 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.200:80 +TCP TTL:241 TOS:0x0 ID:63150 IpLen:20 DgmLen:40 +Seq: 0xD3A4236 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:30:18.644039 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33966 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:37893 -> 193.232.180.7:33482 +UDP TTL:1 TOS:0x0 ID:22587 IpLen:20 DgmLen:60 +Len: 32 Csum: 37376 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:30:18.662045 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33967 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:58713 -> 193.232.180.7:33483 +UDP TTL:1 TOS:0x0 ID:24006 IpLen:20 DgmLen:60 +Len: 32 Csum: 16555 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:30:18.679989 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33968 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:35158 -> 193.232.180.7:33484 +UDP TTL:1 TOS:0x0 ID:13762 IpLen:20 DgmLen:60 +Len: 32 Csum: 40109 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:31:11.127638 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33969 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:42844 -> 193.232.180.7:33482 +UDP TTL:1 TOS:0x0 ID:63216 IpLen:20 DgmLen:60 +Len: 32 Csum: 32425 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:31:11.128791 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33970 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:40098 -> 193.232.180.7:33483 +UDP TTL:1 TOS:0x0 ID:47639 IpLen:20 DgmLen:60 +Len: 32 Csum: 35170 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:31:11.133664 10.255.255.5 -> 145.239.89.233 +ICMP TTL:63 TOS:0xC0 ID:33971 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +145.239.89.233:60422 -> 193.232.180.7:33484 +UDP TTL:1 TOS:0x0 ID:14764 IpLen:20 DgmLen:60 +Len: 32 Csum: 14845 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:33:07.884716 10.255.255.5 -> 190.123.44.172 +ICMP TTL:63 TOS:0xC0 ID:22617 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.123.44.172 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 34129 Id: 34129 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:33:08.122884 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:46272 -> 193.232.180.239:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5A54D6E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:33:12.888832 10.255.255.5 -> 190.123.44.172 +ICMP TTL:63 TOS:0xC0 ID:22618 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +190.123.44.172 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 34129 Id: 34129 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:33:18.934961 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5578 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.109:80 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B46D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:35:35.220043 10.255.255.5 -> 185.47.253.31 +ICMP TTL:63 TOS:0xC0 ID:36745 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.47.253.31 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60965 Id: 60965 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:35:40.220262 10.255.255.5 -> 185.47.253.31 +ICMP TTL:63 TOS:0xC0 ID:36746 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.47.253.31 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60965 Id: 60965 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:39:05.256856 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58957 -> 193.232.180.235:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x97A45727 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:39:35.678176 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57363 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.209:443 +TCP TTL:241 TOS:0x0 ID:55503 IpLen:20 DgmLen:40 +Seq: 0x9FD46DA5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:39:45.618479 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5579 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.146:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:40:15.279689 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57364 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 86.110.96.155:443 +TCP TTL:242 TOS:0x0 ID:36647 IpLen:20 DgmLen:40 +Seq: 0xBA4FEE07 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:45:34.725657 10.255.255.5 -> 47.246.23.195 +ICMP TTL:63 TOS:0xC0 ID:9995 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.246.23.195 -> 193.232.180.74 +ICMP TTL:1 TOS:0x0 ID:31939 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 64906 Id: 31939 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:46:54.195289 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5580 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.78:80 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:48:33.969305 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58156 -> 193.232.180.195:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF9CB65C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:49:12.250739 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:45068 -> 193.232.180.234:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x641A1274 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:51:00.535121 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57365 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.179:80 +TCP TTL:241 TOS:0x0 ID:9018 IpLen:20 DgmLen:40 +Seq: 0xABA97D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:54:12.292747 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59650 -> 193.232.180.172:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA318E35 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:55:26.715550 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57366 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.119:443 +TCP TTL:241 TOS:0x0 ID:22821 IpLen:20 DgmLen:40 +Seq: 0xEDB5ECE9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:56:43.938565 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43430 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:29624 -> 193.232.180.189:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xE372DACC +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:57:48.020992 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5581 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.176:80 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:57:59.011468 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5582 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.100:443 +TCP TTL:232 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B464 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:59:15.084440 10.255.255.5 -> 165.22.156.107 +ICMP TTL:63 TOS:0xC0 ID:10972 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +165.22.156.107 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54402 Id: 54402 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-03:59:20.086481 10.255.255.5 -> 165.22.156.107 +ICMP TTL:63 TOS:0xC0 ID:10973 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +165.22.156.107 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54402 Id: 54402 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:03:01.343234 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5583 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.158:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:04:19.726463 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:52885 -> 193.232.180.199:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x75E18305 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:04:44.227578 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55231 -> 193.232.180.211:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9806F893 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:06:34.002039 10.255.255.5 -> 74.3.163.246 +ICMP TTL:63 TOS:0xC0 ID:7684 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.246 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59310 Id: 59310 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:06:39.019026 10.255.255.5 -> 74.3.163.246 +ICMP TTL:63 TOS:0xC0 ID:7685 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +74.3.163.246 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59310 Id: 59310 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:06:49.522366 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5584 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.157:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:07:56.386514 10.255.255.5 -> 45.56.118.127 +ICMP TTL:63 TOS:0xC0 ID:46575 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.56.118.127 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51446 Id: 51446 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:08:01.839279 10.255.255.5 -> 45.56.118.127 +ICMP TTL:63 TOS:0xC0 ID:46576 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.56.118.127 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 51446 Id: 51446 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:08:58.457387 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5585 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.218:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:12:21.905361 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:19757 -> 193.232.180.210:443 +TCP TTL:241 TOS:0x0 ID:54788 IpLen:20 DgmLen:40 +Seq: 0x5309636D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:17:58.798800 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57367 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.6:80 +TCP TTL:241 TOS:0x0 ID:26984 IpLen:20 DgmLen:40 +Seq: 0x799EDD3E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:19:41.502672 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5586 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.236:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4EC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:22:38.729623 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:56536 -> 193.232.180.163:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x852380C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:23:49.517341 10.255.255.5 -> 144.208.127.136 +ICMP TTL:63 TOS:0xC0 ID:44056 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +144.208.127.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 41559 Id: 41559 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:23:55.456715 10.255.255.5 -> 144.208.127.136 +ICMP TTL:63 TOS:0xC0 ID:44057 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +144.208.127.136 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 41559 Id: 41559 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:27:45.801534 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:52378 -> 193.232.180.240:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DA8CD01 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:30:39.958652 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57368 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.248:80 +TCP TTL:241 TOS:0x0 ID:39921 IpLen:20 DgmLen:40 +Seq: 0x1DBD2F59 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:30:59.829195 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43431 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:28882 -> 193.232.180.193:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xC111D558 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:31:19.201827 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30744 -> 193.232.180.200:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:31:30.800371 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5587 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.26:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:31:35.380750 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5588 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.191:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:36:07.281295 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5589 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.74:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B44A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:03.622715 10.255.255.5 -> 111.51.74.12 +ICMP TTL:63 TOS:0xC0 ID:29716 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.51.74.12 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:64393 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 39648 Id: 18132 SeqNo: 1591 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:04.862859 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5590 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.39:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B427 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:07.625714 10.255.255.5 -> 111.51.74.12 +ICMP TTL:63 TOS:0xC0 ID:29717 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.51.74.12 -> 193.232.180.193 +ICMP TTL:1 TOS:0x0 ID:1567 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 39640 Id: 18132 SeqNo: 1599 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:08.651679 10.255.255.5 -> 111.51.74.12 +ICMP TTL:63 TOS:0xC0 ID:29718 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.51.74.12 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:2275 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 1126 Id: 39460 SeqNo: 18785 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:12.658918 10.255.255.5 -> 111.51.74.12 +ICMP TTL:63 TOS:0xC0 ID:29719 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +111.51.74.12 -> 193.232.180.65 +ICMP TTL:1 TOS:0x0 ID:4542 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 1116 Id: 39460 SeqNo: 18795 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:41:54.094858 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57369 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:18968 -> 193.232.180.87:80 +TCP TTL:241 TOS:0x0 ID:31575 IpLen:20 DgmLen:40 +Seq: 0xC6FCF50 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:43:23.458302 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:37287 -> 193.232.180.78:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x99AD03D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:43:59.423364 10.255.255.5 -> 139.144.104.141 +ICMP TTL:63 TOS:0xC0 ID:38668 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.144.104.141 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 40192 Id: 40192 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:44:04.552312 10.255.255.5 -> 139.144.104.141 +ICMP TTL:63 TOS:0xC0 ID:38669 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.144.104.141 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 40192 Id: 40192 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:46:57.146617 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:60561 -> 193.232.180.243:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB2DB44A4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:47:02.646849 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5591 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.195:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:51:09.056556 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5592 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.185:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:51:39.927818 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5593 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.243:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:52:34.249921 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:53530 -> 193.232.180.197:443 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD17A4C64 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:56:22.458841 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5594 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.15:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:56:38.089494 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5595 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.241:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:57:53.972496 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:58495 -> 193.232.180.57:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x72750E1C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:58:29.243977 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:54234 -> 193.232.180.198:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDF994863 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:59:42.886693 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36288 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:39069 -> 193.232.180.21:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x88451E44 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-04:59:43.906828 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55630 -> 193.232.180.69:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC4AD0E4E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:00:01.488304 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:57775 -> 193.232.180.26:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC0FA83F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:00:42.898819 10.255.255.5 -> 163.181.131.213 +ICMP TTL:63 TOS:0xC0 ID:14113 IpLen:20 DgmLen:112 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +163.181.131.213 -> 193.232.180.15 +ICMP TTL:1 TOS:0x0 ID:20020 IpLen:20 DgmLen:84 +Type: 8 Code: 0 Csum: 5804 Id: 20020 SeqNo: 1 +(56 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:01:57.080699 10.255.255.5 -> 138.68.51.158 +ICMP TTL:63 TOS:0xC0 ID:57392 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.68.51.158 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 34322 Id: 34322 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:02:02.081636 10.255.255.5 -> 138.68.51.158 +ICMP TTL:63 TOS:0xC0 ID:57393 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +138.68.51.158 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 34322 Id: 34322 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:04:51.243010 10.255.255.5 -> 31.40.212.224 +ICMP TTL:63 TOS:0xC0 ID:14767 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +31.40.212.224 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52069 Id: 52069 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:04:56.245438 10.255.255.5 -> 31.40.212.224 +ICMP TTL:63 TOS:0xC0 ID:14768 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +31.40.212.224 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 52069 Id: 52069 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:05:05.429622 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5596 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.210:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4D2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:08:37.839501 10.255.255.5 -> 152.32.191.35 +ICMP TTL:63 TOS:0xC0 ID:40609 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.32.191.35 -> 193.232.180.154 +ICMP TTL:1 TOS:0x0 ID:13186 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19962 Id: 13186 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:08:37.841320 10.255.255.5 -> 152.32.191.35 +ICMP TTL:63 TOS:0xC0 ID:40610 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.32.191.35 -> 193.232.180.218 +ICMP TTL:1 TOS:0x0 ID:13186 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19898 Id: 13186 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:08:37.845294 10.255.255.5 -> 152.32.191.35 +ICMP TTL:63 TOS:0xC0 ID:40611 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.32.191.35 -> 193.232.180.253 +ICMP TTL:1 TOS:0x0 ID:13186 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 19863 Id: 13186 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:08:37.845376 10.255.255.5 -> 152.32.191.35 +ICMP TTL:63 TOS:0xC0 ID:40612 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +152.32.191.35 -> 193.232.180.98 +ICMP TTL:1 TOS:0x0 ID:13186 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 20018 Id: 13186 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:09:32.669925 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43429 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:25850 -> 193.232.180.173:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xF6455C6A +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:09:50.850554 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36291 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:59753 -> 193.232.180.223:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x655552C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:10:24.411890 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:50682 -> 193.232.180.52:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBF6B416D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:11:34.084705 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:38913 -> 193.232.180.107:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9194C032 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:14:17.890302 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30559 -> 193.232.180.15:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:14:32.981606 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36294 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:44352 -> 193.232.180.136:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB20C5E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:16:03.875398 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36295 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:55711 -> 193.232.180.232:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD22E6D47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:19:01.702298 10.255.255.5 -> 192.241.155.120 +ICMP TTL:63 TOS:0xC0 ID:43430 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.155.120:25099 -> 193.232.180.162:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x8C429352 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:21:55.379133 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5597 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.159:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B49F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:22:34.270798 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5598 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.17:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B411 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:22:54.101345 10.255.255.5 -> 192.3.59.207 +ICMP TTL:63 TOS:0xC0 ID:36296 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.3.59.207:36891 -> 193.232.180.192:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4C287BD9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:23:42.553280 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5599 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 86.110.96.158:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:24:40.955467 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5600 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.143:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:28:01.068824 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30729 -> 193.232.180.185:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:28:06.708308 10.255.255.5 -> 209.182.225.160 +ICMP TTL:63 TOS:0xC0 ID:50174 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.182.225.160 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 49830 Id: 49830 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:28:10.143776 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5601 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.66:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B442 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:28:11.709392 10.255.255.5 -> 209.182.225.160 +ICMP TTL:63 TOS:0xC0 ID:50175 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +209.182.225.160 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 49830 Id: 49830 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:28:41.175057 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.33:80 +TCP TTL:241 TOS:0x0 ID:39221 IpLen:20 DgmLen:40 +Seq: 0xC5542D44 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:29:03.868033 10.255.255.5 -> 45.71.158.71 +ICMP TTL:63 TOS:0xC0 ID:38790 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.71.158.71 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35607 Id: 35607 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:29:08.875257 10.255.255.5 -> 45.71.158.71 +ICMP TTL:63 TOS:0xC0 ID:38791 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +45.71.158.71 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:24 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 35607 Id: 35607 SeqNo: 23 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:29:48.718248 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5602 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.135:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B487 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:31:00.870279 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5603 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.44:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:34:11.801226 10.255.255.5 -> 91.148.134.246 +ICMP TTL:63 TOS:0xC0 ID:19211 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +91.148.134.246 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44362 Id: 44362 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:34:16.813380 10.255.255.5 -> 91.148.134.246 +ICMP TTL:63 TOS:0xC0 ID:19212 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +91.148.134.246 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44362 Id: 44362 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:35:50.731758 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.219:80 +TCP TTL:241 TOS:0x0 ID:60192 IpLen:20 DgmLen:40 +Seq: 0xD9815FAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:36:33.653421 10.255.255.5 -> 203.29.240.224 +ICMP TTL:63 TOS:0xC0 ID:55937 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +203.29.240.224 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58579 Id: 58579 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:36:38.763569 10.255.255.5 -> 203.29.240.224 +ICMP TTL:63 TOS:0xC0 ID:55938 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +203.29.240.224 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58579 Id: 58579 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:36:39.153809 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5604 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.151:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B497 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:36:42.503839 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5605 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.199:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4C7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:38:50.228955 10.255.255.5 -> 192.241.149.109 +ICMP TTL:63 TOS:0xC0 ID:35901 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.149.109:44196 -> 193.232.180.101:80 +TCP TTL:49 TOS:0x0 ID:16319 IpLen:20 DgmLen:60 DF +Seq: 0xDDDCBD87 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:38:50.228955 10.255.255.5 -> 192.241.149.109 +ICMP TTL:63 TOS:0xC0 ID:35902 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.149.109:47798 -> 193.232.180.101:443 +TCP TTL:49 TOS:0x0 ID:12687 IpLen:20 DgmLen:60 DF +Seq: 0x767C26E0 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:34.395440 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8175 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40982 -> 193.232.180.100:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x35D68EB4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:34.495373 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8176 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36975 -> 193.232.180.232:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB4E61056 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:34.585300 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8177 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57995 -> 193.232.180.150:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8636795F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:35.200298 10.255.255.5 -> 192.71.26.103 +ICMP TTL:63 TOS:0xC0 ID:22426 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +192.71.26.103 -> 193.232.180.8 +ICMP TTL:1 TOS:0x0 ID:32449 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 845 Id: 32449 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:35.247309 10.255.255.5 -> 192.71.26.103 +ICMP TTL:63 TOS:0xC0 ID:22427 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +192.71.26.103 -> 193.232.180.46 +ICMP TTL:1 TOS:0x0 ID:32449 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 807 Id: 32449 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:35.486270 10.255.255.5 -> 192.71.26.103 +ICMP TTL:63 TOS:0xC0 ID:22428 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +192.71.26.103 -> 193.232.180.109 +ICMP TTL:1 TOS:0x0 ID:32449 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 744 Id: 32449 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:35.550323 10.255.255.5 -> 192.71.26.103 +ICMP TTL:63 TOS:0xC0 ID:22429 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +192.71.26.103 -> 193.232.180.243 +ICMP TTL:1 TOS:0x0 ID:32449 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 610 Id: 32449 SeqNo: 13 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:35.985288 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8178 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41488 -> 193.232.180.245:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEE3E7E38 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:36.285423 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8179 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:48788 -> 193.232.180.143:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE3B9DCF0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:42.215617 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8180 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54736 -> 193.232.180.106:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFC2607A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:44.835882 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8181 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54578 -> 193.232.180.251:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x946AB8F2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:49.405875 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8182 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41152 -> 193.232.180.220:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x52F540D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:54.456173 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8183 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49460 -> 193.232.180.116:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4056151B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:55.038501 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8184 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:58977 -> 193.232.180.211:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2A639457 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:55.511246 10.255.255.5 -> 36.101.206.21 +ICMP TTL:63 TOS:0xC0 ID:23306 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +36.101.206.21 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:1942 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 22189 Id: 36385 SeqNo: 797 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:55.518199 10.255.255.5 -> 36.101.206.21 +ICMP TTL:63 TOS:0xC0 ID:23307 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +36.101.206.21 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:12771 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 36391 Id: 14990 SeqNo: 7990 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:57.266382 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8185 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57205 -> 193.232.180.120:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1AD9CAE8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:57.516240 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8186 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:39088 -> 193.232.180.37:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFBBD2070 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:59.156468 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8187 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54598 -> 193.232.180.208:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC974183D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:59.513492 10.255.255.5 -> 36.101.206.21 +ICMP TTL:63 TOS:0xC0 ID:23308 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +36.101.206.21 -> 193.232.180.33 +ICMP TTL:1 TOS:0x0 ID:4788 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 22180 Id: 36385 SeqNo: 806 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:41:59.520384 10.255.255.5 -> 36.101.206.21 +ICMP TTL:63 TOS:0xC0 ID:23309 IpLen:20 DgmLen:64 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +36.101.206.21 -> 193.232.180.161 +ICMP TTL:1 TOS:0x0 ID:14963 IpLen:20 DgmLen:36 DF +Type: 8 Code: 0 Csum: 36382 Id: 14990 SeqNo: 7999 +(8 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:00.996321 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8188 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57696 -> 193.232.180.233:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6E787363 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:01.626550 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8189 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49985 -> 193.232.180.91:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9DD80AE0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:05.666448 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8190 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:42632 -> 193.232.180.18:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCC524A71 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:05.766746 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8191 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49530 -> 193.232.180.229:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x748CA025 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:07.946820 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8192 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45627 -> 193.232.180.26:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1FDF92C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:11.886728 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8193 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:43763 -> 193.232.180.22:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96743E51 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:12.956765 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8194 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54230 -> 193.232.180.6:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8567554 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:15.896965 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8195 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47945 -> 193.232.180.39:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF599C2C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:17.566983 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8196 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34956 -> 193.232.180.163:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71656C8D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:23.617219 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8197 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50313 -> 193.232.180.48:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDFF0E701 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:23.877443 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8198 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40102 -> 193.232.180.63:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7A859A36 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:25.547375 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8199 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:53897 -> 193.232.180.210:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBCA21985 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:28.227399 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8200 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60529 -> 193.232.180.187:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x76DB1279 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:28.727462 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8201 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41598 -> 193.232.180.12:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x17A012C0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:28.847605 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8202 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51110 -> 193.232.180.222:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6C801FC +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:29.847629 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8203 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52858 -> 193.232.180.237:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7B968095 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:31.187685 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8204 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45229 -> 193.232.180.47:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5671A87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:32.227507 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8205 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51115 -> 193.232.180.230:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9C38A5CE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:32.727474 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8206 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:42931 -> 193.232.180.32:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x593D00B0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:33.397828 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8208 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:43485 -> 193.232.180.165:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9A896D7C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:33.397828 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8207 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44486 -> 193.232.180.200:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x71F42AF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:36.117743 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8209 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51446 -> 193.232.180.190:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x30376A50 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:37.427763 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8210 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:42448 -> 193.232.180.2:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6527A084 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:37.677710 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8211 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45414 -> 193.232.180.192:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B0F5C26 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:39.187969 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8212 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54697 -> 193.232.180.43:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x15C7D298 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:39.567774 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8213 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51149 -> 193.232.180.87:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB6DD9FA0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:39.687869 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8214 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36544 -> 193.232.180.33:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x190CE41 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:39.707805 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8215 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52654 -> 193.232.180.193:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3DAFB9C3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:39.987850 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8216 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:58354 -> 193.232.180.221:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3544E614 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:40.657802 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8217 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50798 -> 193.232.180.8:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6B92AE43 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:41.667918 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8218 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51103 -> 193.232.180.59:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5A4EB87F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:43.018022 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8219 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54588 -> 193.232.180.45:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3449D0A6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:44.178063 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8220 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40915 -> 193.232.180.69:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x18F5D04A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:45.328012 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8221 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49008 -> 193.232.180.227:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x732FD6A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:45.388082 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8222 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41779 -> 193.232.180.202:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7FB3FB2D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:46.618225 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8223 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59730 -> 193.232.180.123:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7F7C66F7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:48.038358 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8224 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52633 -> 193.232.180.149:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBB0ADB85 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:48.198288 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8225 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47570 -> 193.232.180.54:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x263BF546 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:48.598189 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8226 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34116 -> 193.232.180.9:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x95CFE022 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:48.608353 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8227 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:43535 -> 193.232.180.40:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAAA2216A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:48.618182 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8228 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54184 -> 193.232.180.96:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69453410 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.028338 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8229 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:38885 -> 193.232.180.111:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEA152CFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.038784 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8230 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57297 -> 193.232.180.105:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFCDC4419 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.078293 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8231 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:58733 -> 193.232.180.159:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD9A03D2A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.678356 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8232 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:46316 -> 193.232.180.53:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCEDA43F9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.758435 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8233 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57795 -> 193.232.180.80:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBC474DDF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:49.808400 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8234 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44794 -> 193.232.180.188:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE182A514 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:50.118278 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8235 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50133 -> 193.232.180.214:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE22A4A87 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:50.518264 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8236 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59316 -> 193.232.180.253:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2B3D59A3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:51.068457 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8237 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:54981 -> 193.232.180.65:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1777FB73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:51.348459 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8238 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49647 -> 193.232.180.244:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x7CFD89BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:51.468332 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8239 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51676 -> 193.232.180.180:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96C3593D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:51.679139 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8240 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40038 -> 193.232.180.129:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA0AD2C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:51.938336 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8241 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60894 -> 193.232.180.197:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF0658890 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:52.278360 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8242 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:37484 -> 193.232.180.157:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3A530040 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:52.388621 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8243 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47273 -> 193.232.180.248:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x16176E8D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:52.868403 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8244 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59818 -> 193.232.180.216:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB254BBC5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:53.138437 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8245 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51808 -> 193.232.180.254:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x76C0CDA7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:53.178498 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8246 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:55880 -> 193.232.180.127:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FFED823 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:53.918480 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8247 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45074 -> 193.232.180.174:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC5BAF331 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:54.088415 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8248 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:38542 -> 193.232.180.114:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB5B3A65D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:54.328517 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8249 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34140 -> 193.232.180.118:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x77A0B98B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:54.788625 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8250 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45970 -> 193.232.180.183:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFF173037 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:56.988732 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8251 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47009 -> 193.232.180.25:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9560B6BD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:58.638608 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8252 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59442 -> 193.232.180.189:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4EFF267A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:58.728684 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8253 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34545 -> 193.232.180.99:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8BAE0B05 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:59.078701 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8254 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:39907 -> 193.232.180.162:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAFE08927 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:42:59.148868 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8255 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60115 -> 193.232.180.41:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46DE747A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:01.328881 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8256 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44458 -> 193.232.180.5:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x766EDC30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:01.328882 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8257 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44963 -> 193.232.180.223:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x42FBD810 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:02.148816 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8258 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52868 -> 193.232.180.141:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8B5885E6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:03.149004 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8259 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51933 -> 193.232.180.97:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC526724B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:03.808866 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8260 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52317 -> 193.232.180.137:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90D78AE7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:03.999375 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8261 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:53555 -> 193.232.180.133:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x39E2027C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:05.129218 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8262 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60675 -> 193.232.180.177:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD89F975 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:05.158872 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8263 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:56918 -> 193.232.180.50:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD16EC93A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:05.178915 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8264 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50808 -> 193.232.180.146:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x535D4D3D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:05.378908 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8265 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52161 -> 193.232.180.122:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE45E9B73 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:05.998889 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8266 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41680 -> 193.232.180.152:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x8BFEA899 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:06.588954 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8267 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40952 -> 193.232.180.35:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x694C6C3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:06.988974 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8268 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:32891 -> 193.232.180.4:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x68CC7BE3 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:07.178897 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8269 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40049 -> 193.232.180.121:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xECF7E996 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:07.358895 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8270 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:56109 -> 193.232.180.21:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x69512EE2 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:07.558836 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8271 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:53759 -> 193.232.180.81:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x276F0494 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:07.579084 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8272 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45267 -> 193.232.180.191:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFA9C298B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:07.848938 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8273 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49871 -> 193.232.180.24:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1D2255D5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:10.129297 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8274 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45491 -> 193.232.180.196:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x549D172 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:10.269118 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8275 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:56656 -> 193.232.180.185:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x455B2392 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:11.389346 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8276 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49644 -> 193.232.180.156:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCD61840B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:12.539114 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8277 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57268 -> 193.232.180.194:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEFD1347C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:12.789117 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8278 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:55142 -> 193.232.180.119:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA0FC15F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:13.379373 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8279 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:42026 -> 193.232.180.110:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B54ED43 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:13.569215 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8280 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49053 -> 193.232.180.113:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x328E3AF4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:13.889218 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8281 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:57573 -> 193.232.180.212:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA4A4E60 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:14.269220 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8282 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:46522 -> 193.232.180.101:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x90D58F8E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:14.549255 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8283 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:41513 -> 193.232.180.135:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2D3735CA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:15.489236 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8284 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60166 -> 193.232.180.243:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xEC7AC9CF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:16.209455 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8285 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:48227 -> 193.232.180.171:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xABA5D4CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:16.509362 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8286 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45742 -> 193.232.180.58:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB1D9B5FF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:16.879246 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8287 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:42529 -> 193.232.180.61:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46E612C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:17.129217 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8288 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:33471 -> 193.232.180.125:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x853AAE0E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:17.289497 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8289 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50352 -> 193.232.180.241:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xFAA56CEB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:17.309228 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8290 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44699 -> 193.232.180.70:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x20BB639B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:18.069536 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8291 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44253 -> 193.232.180.238:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD8AFCB30 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:18.209333 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8292 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47690 -> 193.232.180.236:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6D64D69A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:18.549335 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8293 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:43591 -> 193.232.180.247:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC20CF2C4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:18.729477 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8294 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:37047 -> 193.232.180.98:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xA8CFC93C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:18.789389 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8295 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49266 -> 193.232.180.246:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x2FD44FC4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:20.139623 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8296 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:58368 -> 193.232.180.219:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6C71AA08 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:20.619527 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8297 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:35518 -> 193.232.180.85:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x680E77C1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:21.029711 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8298 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36997 -> 193.232.180.249:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x344BA57C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:21.699674 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8299 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40767 -> 193.232.180.83:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x85E63ED6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:22.119491 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8300 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:56483 -> 193.232.180.76:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC2F6D68D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:23.779558 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8301 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47864 -> 193.232.180.74:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xED38E5D9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:25.419589 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8302 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47166 -> 193.232.180.205:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x94F41997 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:26.119860 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8303 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:37191 -> 193.232.180.34:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5A296859 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:26.349647 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8304 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:38099 -> 193.232.180.86:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9D0094D0 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:26.799823 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8305 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36656 -> 193.232.180.151:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDC7DBEAB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:27.589652 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8306 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:43442 -> 193.232.180.207:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF7786983 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:27.669678 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45378 -> 193.232.180.154:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x46A290B4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:28.099740 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52020 -> 193.232.180.64:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xE6F92FC6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:28.419705 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.90:80 +TCP TTL:241 TOS:0x0 ID:28615 IpLen:20 DgmLen:40 +Seq: 0xBE49DBCD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:29.189754 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:46719 -> 193.232.180.73:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x57D9E126 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:29.669943 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52456 -> 193.232.180.176:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB3C9B976 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:29.699976 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:58903 -> 193.232.180.84:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCF5AF397 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:29.819784 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59373 -> 193.232.180.242:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xF2606729 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:30.649901 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34304 -> 193.232.180.28:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x23A4CB3C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:32.650084 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:55949 -> 193.232.180.17:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1EA8C566 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:32.850053 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8315 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:33736 -> 193.232.180.79:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xDB911E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:33.349892 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8316 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:50066 -> 193.232.180.52:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x851FA9EB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:33.459895 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8317 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34230 -> 193.232.180.167:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xBA523F8E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:33.520007 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8318 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:52924 -> 193.232.180.92:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAE57E733 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:33.929980 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8319 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49999 -> 193.232.180.139:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x89C1B999 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:34.560173 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8320 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:59322 -> 193.232.180.225:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD43F96A9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:35.090046 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8321 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:38752 -> 193.232.180.7:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x749C3E5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:35.719998 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8322 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47307 -> 193.232.180.3:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x29D2C180 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:36.340171 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8323 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:35221 -> 193.232.180.179:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD2C56B75 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:36.350066 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8324 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:53132 -> 193.232.180.250:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x33DA00C6 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:36.860193 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8325 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:45942 -> 193.232.180.19:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x9B4B206A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:38.000205 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8326 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:39514 -> 193.232.180.57:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4E64FE20 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:38.260316 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8327 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:37248 -> 193.232.180.240:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAD2D883B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:38.490065 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8328 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:38855 -> 193.232.180.217:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x5451CF8B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:38.840221 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8329 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36137 -> 193.232.180.203:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xAC1F5DEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:39.070264 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8330 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60373 -> 193.232.180.182:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD999D038 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:39.280143 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8331 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:44198 -> 193.232.180.126:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x4A279CE5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:39.470307 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8332 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:36246 -> 193.232.180.104:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3D82637E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:40.240294 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8333 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40266 -> 193.232.180.66:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3ADBA184 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:40.280210 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8334 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47147 -> 193.232.180.168:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x13E70DD1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:40.640314 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8335 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:40724 -> 193.232.180.89:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3470E47 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:40.930214 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8336 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47339 -> 193.232.180.132:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x6253C12 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:41.310120 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8337 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:37219 -> 193.232.180.71:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x404B9BFD +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:41.360313 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8338 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:34001 -> 193.232.180.218:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xB9C10FB5 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:41.880271 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8339 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:60343 -> 193.232.180.231:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xCFF3385F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:43.043468 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8340 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:51774 -> 193.232.180.77:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x796D7FA8 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:43.480306 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8341 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49615 -> 193.232.180.213:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x96E57C40 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:43.840339 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8342 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:49042 -> 193.232.180.186:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x374EE8FB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:44.160438 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8343 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:47762 -> 193.232.180.147:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x1B16E35B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:44.360375 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8344 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:53461 -> 193.232.180.164:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xD3356239 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:43:44.760482 10.255.255.5 -> 172.169.6.55 +ICMP TTL:63 TOS:0xC0 ID:8345 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.169.6.55:56494 -> 193.232.180.67:80 +TCP TTL:233 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x3806873B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:44:11.701464 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.167:80 +TCP TTL:241 TOS:0x0 ID:22779 IpLen:20 DgmLen:40 +Seq: 0x263AEC0C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:45:06.603614 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5606 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.57:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B439 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:47:51.274882 10.255.255.5 -> 185.186.76.52 +ICMP TTL:63 TOS:0xC0 ID:266 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.76.52 -> 193.232.180.167 +ICMP TTL:1 TOS:0x0 ID:14350 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18785 Id: 14350 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:47:55.112470 10.255.255.5 -> 185.186.76.52 +ICMP TTL:63 TOS:0xC0 ID:267 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.76.52 -> 193.232.180.222 +ICMP TTL:1 TOS:0x0 ID:14350 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18730 Id: 14350 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:47:55.136944 10.255.255.5 -> 185.186.76.52 +ICMP TTL:63 TOS:0xC0 ID:268 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.76.52 -> 193.232.180.39 +ICMP TTL:1 TOS:0x0 ID:14350 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18913 Id: 14350 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:47:55.190211 10.255.255.5 -> 185.186.76.52 +ICMP TTL:63 TOS:0xC0 ID:269 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.186.76.52 -> 193.232.180.98 +ICMP TTL:1 TOS:0x0 ID:14350 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 18854 Id: 14350 SeqNo: 12 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:48:26.941445 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5607 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.132:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B484 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:49:38.634492 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5608 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.191:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:51:48.929614 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.68:80 +TCP TTL:241 TOS:0x0 ID:12688 IpLen:20 DgmLen:40 +Seq: 0x6DFF8584 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:44.172624 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:53508 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:62330 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:44.172624 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:30365 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:62330 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:44.172625 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:50723 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:50000 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:44.172625 185.93.41.55 -> 172.224.39.132 +ICMP TTL:61 TOS:0x0 ID:16158 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:50000 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:46.316682 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30650 -> 193.232.180.106:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:55:55.238979 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5609 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.25:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B419 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:56:28.990490 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5610 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.137:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B489 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:58:16.814638 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5611 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.19:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B413 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:58:47.215875 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5612 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.82:443 +TCP TTL:234 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B452 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:59:12.918942 10.255.255.5 -> 172.105.19.188 +ICMP TTL:63 TOS:0xC0 ID:42766 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.105.19.188 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61629 Id: 61629 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-05:59:19.263997 10.255.255.5 -> 172.105.19.188 +ICMP TTL:63 TOS:0xC0 ID:42767 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +172.105.19.188 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 61629 Id: 61629 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:01:39.982527 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5613 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.231:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:03:30.888445 10.255.255.5 -> 197.140.142.65 +ICMP TTL:63 TOS:0xC0 ID:12644 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.140.142.65 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47724 Id: 47724 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:03:35.890559 10.255.255.5 -> 197.140.142.65 +ICMP TTL:63 TOS:0xC0 ID:12645 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +197.140.142.65 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47724 Id: 47724 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:06:47.324023 10.255.255.5 -> 117.144.213.77 +ICMP TTL:63 TOS:0xC0 ID:50678 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +117.144.213.77 -> 86.110.96.152 +ICMP TTL:1 TOS:0x0 ID:5230 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 11403 Id: 5230 SeqNo: 17 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:14:23.682598 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5614 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.35:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B423 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:15:39.045635 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5615 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.68:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B444 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:16:32.909185 10.255.255.5 -> 87.121.99.10 +ICMP TTL:63 TOS:0xC0 ID:45072 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +87.121.99.10 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 56017 Id: 56017 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:16:37.910396 10.255.255.5 -> 87.121.99.10 +ICMP TTL:63 TOS:0xC0 ID:45073 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +87.121.99.10 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 56017 Id: 56017 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:17:23.009560 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5616 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.142:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:23:54.571894 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30649 -> 193.232.180.105:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:25:47.181729 10.255.255.5 -> 61.147.171.3 +ICMP TTL:63 TOS:0xC0 ID:15108 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +61.147.171.3 -> 193.232.180.130 +ICMP TTL:1 TOS:0x0 ID:9592 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 23580 Id: 9592 SeqNo: 18 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:25:47.430689 10.255.255.5 -> 61.147.171.3 +ICMP TTL:63 TOS:0xC0 ID:15109 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +61.147.171.3 -> 193.232.180.228 +ICMP TTL:1 TOS:0x0 ID:9592 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 23482 Id: 9592 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:31:52.383712 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5617 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.44:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:32:23.784909 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5618 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.56:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B438 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:34:16.330021 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 86.110.96.151:80 +TCP TTL:242 TOS:0x0 ID:6349 IpLen:20 DgmLen:40 +Seq: 0xD1EA780A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:35:59.917860 10.255.255.5 -> 208.72.155.10 +ICMP TTL:63 TOS:0xC0 ID:56007 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.155.10 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60697 Id: 60697 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:36:04.920103 10.255.255.5 -> 208.72.155.10 +ICMP TTL:63 TOS:0xC0 ID:56008 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.155.10 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 60697 Id: 60697 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:39:15.993866 10.255.255.5 -> 23.92.27.91 +ICMP TTL:63 TOS:0xC0 ID:54104 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.92.27.91 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:44761 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 9074 Id: 24288 SeqNo: 40 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:39:15.993866 10.255.255.5 -> 23.92.27.91 +ICMP TTL:63 TOS:0xC0 ID:54105 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.92.27.91 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:44762 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 9073 Id: 24288 SeqNo: 41 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:39:16.070981 10.255.255.5 -> 23.92.27.91 +ICMP TTL:63 TOS:0xC0 ID:54106 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +23.92.27.91 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:44763 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 9072 Id: 24288 SeqNo: 42 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:39:51.297467 10.255.255.5 -> 185.192.124.207 +ICMP TTL:63 TOS:0xC0 ID:43196 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.192.124.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59201 Id: 59201 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:39:56.299669 10.255.255.5 -> 185.192.124.207 +ICMP TTL:63 TOS:0xC0 ID:43197 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +185.192.124.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 59201 Id: 59201 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:40:27.686116 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30790 -> 193.232.180.246:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:05.858289 10.255.255.5 -> 38.54.59.71 +ICMP TTL:63 TOS:0xC0 ID:52347 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.71 -> 193.232.180.113 +ICMP TTL:1 TOS:0x0 ID:10960 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 22229 Id: 10960 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:05.860945 10.255.255.5 -> 38.54.59.71 +ICMP TTL:63 TOS:0xC0 ID:52348 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.71 -> 193.232.180.137 +ICMP TTL:1 TOS:0x0 ID:10960 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 22205 Id: 10960 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:05.865330 10.255.255.5 -> 38.54.59.71 +ICMP TTL:63 TOS:0xC0 ID:52349 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.71 -> 193.232.180.178 +ICMP TTL:1 TOS:0x0 ID:10960 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 22164 Id: 10960 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:05.867040 10.255.255.5 -> 38.54.59.71 +ICMP TTL:63 TOS:0xC0 ID:52350 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.71 -> 193.232.180.59 +ICMP TTL:1 TOS:0x0 ID:10960 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 22283 Id: 10960 SeqNo: 15 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:20.655028 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:64048 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:20.897847 10.255.255.5 -> 92.223.102.33 +ICMP TTL:63 TOS:0xC0 ID:48623 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.223.102.33 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58554 Id: 58554 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:21.652973 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:57913 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:22.673123 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:50575 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:22.673123 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:52429 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:25.748529 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:27333 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:25.748529 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:54777 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:26.596999 10.255.255.5 -> 92.223.102.33 +ICMP TTL:63 TOS:0xC0 ID:48624 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +92.223.102.33 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 58554 Id: 58554 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:30.645915 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:1645 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:30.645915 185.93.41.55 -> 172.224.40.137 +ICMP TTL:60 TOS:0x0 ID:46202 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:59729 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:50.479277 10.255.255.5 -> 51.81.233.95 +ICMP TTL:63 TOS:0xC0 ID:3258 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +51.81.233.95 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47227 Id: 47227 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:41:55.479470 10.255.255.5 -> 51.81.233.95 +ICMP TTL:63 TOS:0xC0 ID:3259 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +51.81.233.95 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 47227 Id: 47227 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:42:25.456127 10.255.255.5 -> 150.109.186.152 +ICMP TTL:63 TOS:0xC0 ID:37047 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +150.109.186.152 -> 193.232.180.211 +ICMP TTL:1 TOS:0x0 ID:53709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 44917 Id: 53709 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:42:25.552972 10.255.255.5 -> 150.109.186.152 +ICMP TTL:63 TOS:0xC0 ID:37048 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +150.109.186.152 -> 193.232.180.25 +ICMP TTL:1 TOS:0x0 ID:53709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 45103 Id: 53709 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:42:25.604336 10.255.255.5 -> 150.109.186.152 +ICMP TTL:63 TOS:0xC0 ID:37049 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +150.109.186.152 -> 193.232.180.186 +ICMP TTL:1 TOS:0x0 ID:53709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 44942 Id: 53709 SeqNo: 19 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:42:26.787068 10.255.255.5 -> 150.109.186.152 +ICMP TTL:63 TOS:0xC0 ID:37050 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +150.109.186.152 -> 193.232.180.53 +ICMP TTL:1 TOS:0x0 ID:53709 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 45075 Id: 53709 SeqNo: 24 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:44:28.203306 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5619 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.28:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B41C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:46:39.498430 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:19757 -> 193.232.180.204:443 +TCP TTL:241 TOS:0x0 ID:28584 IpLen:20 DgmLen:40 +Seq: 0x5248DADF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:47:09.789610 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5620 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.141:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B48D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:47:38.610876 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.141:80 +TCP TTL:241 TOS:0x0 ID:51306 IpLen:20 DgmLen:40 +Seq: 0x24897CB7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:47:43.200929 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:19757 -> 193.232.180.196:443 +TCP TTL:241 TOS:0x0 ID:234 IpLen:20 DgmLen:40 +Seq: 0x9F18B595 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:47:54.911544 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5621 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.244:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F4 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:48:11.012164 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5622 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.161:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4A1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:49:21.264817 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.149:443 +TCP TTL:241 TOS:0x0 ID:20597 IpLen:20 DgmLen:40 +Seq: 0x3B9FE55B +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:49:59.986401 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.173:80 +TCP TTL:241 TOS:0x0 ID:22894 IpLen:20 DgmLen:40 +Seq: 0x12FDED93 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:51:16.199304 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.172:80 +TCP TTL:241 TOS:0x0 ID:5958 IpLen:20 DgmLen:40 +Seq: 0x248EA3BA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:51:53.592991 10.255.255.5 -> 107.175.82.15 +ICMP TTL:63 TOS:0xC0 ID:37053 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.175.82.15 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38025 Id: 38025 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:51:58.596251 10.255.255.5 -> 107.175.82.15 +ICMP TTL:63 TOS:0xC0 ID:37054 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +107.175.82.15 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 38025 Id: 38025 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:52:51.993069 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5623 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.254:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4FE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-06:54:58.248346 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5624 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.233:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:20.060729 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:40092 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:21.062563 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:55155 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:22.059589 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:21268 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:22.059589 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:10481 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:25.059093 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:15884 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:25.059093 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:37101 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:30.052901 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:53551 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:30.052901 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:38182 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:02:35.061951 185.93.41.55 -> 172.224.39.135 +ICMP TTL:61 TOS:0x0 ID:59233 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.135:443 -> 185.93.41.55:57899 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:08:52.340770 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.135:443 +TCP TTL:241 TOS:0x0 ID:41501 IpLen:20 DgmLen:40 +Seq: 0x9F271721 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:09:29.153802 10.255.255.5 -> 146.185.214.51 +ICMP TTL:63 TOS:0xC0 ID:42794 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +146.185.214.51 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54764 Id: 54764 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:09:34.155720 10.255.255.5 -> 146.185.214.51 +ICMP TTL:63 TOS:0xC0 ID:42795 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +146.185.214.51 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 54764 Id: 54764 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:12:12.558886 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5625 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.52:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B434 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:12:16.568880 10.255.255.5 -> 172.104.210.244 +ICMP TTL:63 TOS:0xC0 ID:59826 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.210.244:37216 -> 193.232.180.162:443 +TCP TTL:236 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x5F05D80 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:12:24.389046 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5626 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.241:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4F1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:13:33.791773 10.255.255.5 -> 172.105.149.4 +ICMP TTL:63 TOS:0xC0 ID:47584 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.105.149.4:34732 -> 193.232.180.133:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0x71214613 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:13:38.579694 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5627 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.13:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B40D +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:14:50.904764 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11295 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:14 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64993 Id: 64993 SeqNo: 13 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:14:53.907748 10.255.255.5 -> 8.28.0.17 +ICMP TTL:63 TOS:0xC0 ID:11296 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.28.0.17 -> 193.232.180.16 +ICMP TTL:1 TOS:0x0 ID:15 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 64993 Id: 64993 SeqNo: 14 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:15:34.736558 10.255.255.5 -> 172.104.13.193 +ICMP TTL:63 TOS:0xC0 ID:4739 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.13.193:59685 -> 193.232.180.231:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xFC6AAD57 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:15:59.957824 10.255.255.5 -> 192.241.130.226 +ICMP TTL:63 TOS:0xC0 ID:8900 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.241.130.226:56218 -> 193.232.180.27:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xB6FDFF54 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:18:06.416278 10.255.255.5 -> 147.78.1.203 +ICMP TTL:63 TOS:0xC0 ID:20298 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +147.78.1.203 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:30 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42929 Id: 42929 SeqNo: 29 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:18:12.009729 10.255.255.5 -> 147.78.1.203 +ICMP TTL:63 TOS:0xC0 ID:20299 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +147.78.1.203 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:31 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 42929 Id: 42929 SeqNo: 30 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:19:15.283067 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16762 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30730 -> 193.232.180.186:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:19:30.365851 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5628 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.233:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:23:08.370462 10.255.255.5 -> 147.78.1.36 +ICMP TTL:63 TOS:0xC0 ID:63140 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +147.78.1.36 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:26 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44388 Id: 44388 SeqNo: 25 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:23:13.416667 10.255.255.5 -> 147.78.1.36 +ICMP TTL:63 TOS:0xC0 ID:63141 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +147.78.1.36 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:27 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 44388 Id: 44388 SeqNo: 26 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:24:00.829083 10.255.255.5 -> 15.204.24.58 +ICMP TTL:63 TOS:0xC0 ID:52777 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.204.24.58 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 63543 Id: 63543 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:24:05.878200 10.255.255.5 -> 15.204.24.58 +ICMP TTL:63 TOS:0xC0 ID:52778 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.204.24.58 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 63543 Id: 63543 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:25:53.110851 10.255.255.5 -> 172.172.30.71 +ICMP TTL:63 TOS:0xC0 ID:40643 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.172.30.71:19516 -> 193.232.180.44:80 +TCP TTL:47 TOS:0x0 ID:27932 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:31:02.773015 10.255.255.5 -> 172.104.13.193 +ICMP TTL:63 TOS:0xC0 ID:4740 IpLen:20 DgmLen:72 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.13.193:35798 -> 193.232.180.21:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:44 +Seq: 0xE978A4B6 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:01.818591 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30693 -> 193.232.180.149:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: -1 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:14.564393 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:1459 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:15.562948 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:11729 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:16.569827 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:11732 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:16.569828 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:58741 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:19.542006 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:22565 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:19.543050 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:45258 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:24.516722 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:47893 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:24.516722 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:37626 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:29.548866 185.93.41.55 -> 172.224.40.135 +ICMP TTL:61 TOS:0x0 ID:36111 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.135:443 -> 185.93.41.55:60081 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:39.949598 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16763 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30555 -> 193.232.180.11:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 8 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:42.388230 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:10187 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.217758 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:64368 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:847 DF +Len: 819 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.233205 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:32588 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.234342 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:52247 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.249684 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:30209 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.308168 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:37149 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:847 DF +Len: 819 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.312108 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:7046 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Len: 32 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:51.314356 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:13022 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:53132 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:52.306015 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:33973 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:63563 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:52.310954 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:32873 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:63563 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:52.311858 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:3597 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:63563 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:52.320519 185.93.41.55 -> 172.224.40.133 +ICMP TTL:60 TOS:0x0 ID:43948 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:63563 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:32:52.728321 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16764 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30690 -> 193.232.180.146:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:33:18.068275 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5629 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.57:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B439 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:34:40.236404 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16765 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30643 -> 193.232.180.99:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:04.510542 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:34170 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:55119 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:05.512499 185.93.41.55 -> 172.224.39.134 +ICMP TTL:60 TOS:0x0 ID:42191 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.134:443 -> 185.93.41.55:55119 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.722733 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:9996 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:853 DF +Len: 825 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.722900 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:26908 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:81 DF +Len: 53 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.723361 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:38590 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:79 DF +Len: 51 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.724334 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:27613 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.725950 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:44457 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.785538 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:32036 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:83 DF +Len: 55 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.795277 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:15882 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.796568 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:8931 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.796568 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:32166 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:2 IpLen:20 DgmLen:91 DF +Len: 63 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.955376 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:43005 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:30.955377 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:14156 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.043250 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:65210 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.048235 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:60671 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.048235 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:2495 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:2 IpLen:20 DgmLen:95 DF +Len: 67 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.348747 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:30490 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.348811 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:44980 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:63455 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:85 DF +Len: 57 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.500496 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:37292 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.500496 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:17834 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:40:31.500496 185.93.41.55 -> 172.64.41.3 +ICMP TTL:61 TOS:0x0 ID:56243 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.64.41.3:443 -> 185.93.41.55:62882 +UDP TTL:52 TOS:0x0 ID:2 IpLen:20 DgmLen:95 DF +Len: 67 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:44:11.396864 10.255.255.5 -> 38.54.59.201 +ICMP TTL:63 TOS:0xC0 ID:29719 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.201 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 49897 Id: 49897 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:44:17.153176 10.255.255.5 -> 38.54.59.201 +ICMP TTL:63 TOS:0xC0 ID:29720 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.201 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 49897 Id: 49897 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:46:09.343583 10.255.255.5 -> 38.54.59.207 +ICMP TTL:63 TOS:0xC0 ID:45855 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 62725 Id: 62725 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:46:14.343766 10.255.255.5 -> 38.54.59.207 +ICMP TTL:63 TOS:0xC0 ID:45856 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +38.54.59.207 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 62725 Id: 62725 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:46:53.328860 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16766 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30680 -> 193.232.180.136:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:52:45.214201 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5630 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23422 -> 193.232.180.223:80 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4DF +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:53:47.590221 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:32803 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58318 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:53:47.590221 185.93.41.55 -> 172.224.40.133 +ICMP TTL:61 TOS:0x0 ID:58378 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.133:443 -> 185.93.41.55:58318 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:54:55.779200 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5631 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.146:80 +TCP TTL:235 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B492 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-07:59:32.660232 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57307 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.30:443 +TCP TTL:241 TOS:0x0 ID:30836 IpLen:20 DgmLen:40 +Seq: 0xB2D9CDD1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:00:22.154806 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16767 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30546 -> 193.232.180.2:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:00:40.782668 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16768 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30709 -> 193.232.180.165:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:02:06.175819 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16769 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30735 -> 193.232.180.191:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:08:28.361105 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5632 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.99:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B463 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:09:49.694332 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57308 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 86.110.96.147:443 +TCP TTL:242 TOS:0x0 ID:34370 IpLen:20 DgmLen:40 +Seq: 0x14BE76A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:13:20.212390 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5633 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.170:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4AA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:14:26.673282 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16770 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30612 -> 193.232.180.68:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:19:00.225787 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.190:80 +TCP TTL:241 TOS:0x0 ID:43268 IpLen:20 DgmLen:40 +Seq: 0xA42F1DEA +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:21:27.881479 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5634 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 86.110.96.158:443 +TCP TTL:240 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0x566E609E +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:22:06.647809 10.255.255.5 -> 8.213.192.144 +ICMP TTL:63 TOS:0xC0 ID:41792 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.213.192.144 -> 193.232.180.236 +ICMP TTL:1 TOS:0x0 ID:27780 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 5286 Id: 27780 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:22:06.697742 10.255.255.5 -> 8.213.192.144 +ICMP TTL:63 TOS:0xC0 ID:41793 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.213.192.144 -> 193.232.180.150 +ICMP TTL:1 TOS:0x0 ID:27780 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 5372 Id: 27780 SeqNo: 21 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:22:10.694895 10.255.255.5 -> 8.213.192.144 +ICMP TTL:63 TOS:0xC0 ID:41794 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.213.192.144 -> 193.232.180.90 +ICMP TTL:1 TOS:0x0 ID:27780 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 5432 Id: 27780 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:22:10.697056 10.255.255.5 -> 8.213.192.144 +ICMP TTL:63 TOS:0xC0 ID:41795 IpLen:20 DgmLen:62 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.213.192.144 -> 193.232.180.100 +ICMP TTL:1 TOS:0x0 ID:27780 IpLen:20 DgmLen:34 +Type: 8 Code: 0 Csum: 5422 Id: 27780 SeqNo: 25 +(6 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:23:14.435730 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57310 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.158:80 +TCP TTL:241 TOS:0x0 ID:40199 IpLen:20 DgmLen:40 +Seq: 0xEA6629C9 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:37.155553 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:6972 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:38.158922 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:22236 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:39.155082 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:53170 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:39.155083 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:17881 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:42.154019 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:45955 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:42.154800 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:49744 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:1 IpLen:20 DgmLen:1228 DF +Len: 1200 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:43.611652 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57311 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.142:80 +TCP TTL:241 TOS:0x0 ID:57401 IpLen:20 DgmLen:40 +Seq: 0x8F6554E7 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:47.224196 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:55727 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:458 DF +Len: 430 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:47.224196 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:57895 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:25:52.241638 185.93.41.55 -> 172.224.49.20 +ICMP TTL:60 TOS:0x0 ID:44192 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.20:443 -> 185.93.41.55:65302 +UDP TTL:49 TOS:0x0 ID:0 IpLen:20 DgmLen:86 DF +Len: 58 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:26:14.412901 10.255.255.5 -> 192.144.232.182 +ICMP TTL:63 TOS:0xC0 ID:23444 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.144.232.182:51940 -> 86.110.96.156:80 +TCP TTL:47 TOS:0x0 ID:61347 IpLen:20 DgmLen:40 +Seq: 0x566E609C +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:28:24.507926 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5635 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.177:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4B1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:29:03.890390 10.255.255.5 -> 139.84.194.210 +ICMP TTL:63 TOS:0xC0 ID:28130 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.84.194.210 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:22 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 39788 Id: 39788 SeqNo: 21 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:29:08.893523 10.255.255.5 -> 139.84.194.210 +ICMP TTL:63 TOS:0xC0 ID:28131 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.84.194.210 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:23 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 39788 Id: 39788 SeqNo: 22 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:31:24.686285 10.255.255.5 -> 69.25.7.69 +ICMP TTL:63 TOS:0xC0 ID:4099 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.69 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 28670 Id: 34809 SeqNo: 8 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:31:25.645748 10.255.255.5 -> 69.25.7.78 +ICMP TTL:63 TOS:0xC0 ID:47458 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.78 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 28670 Id: 34810 SeqNo: 7 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:31:27.150059 10.255.255.5 -> 69.25.7.75 +ICMP TTL:63 TOS:0xC0 ID:19579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +69.25.7.75 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 28664 Id: 34811 SeqNo: 12 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:36:10.056075 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5636 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.42:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42A +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:40:26.756855 185.93.41.55 -> 172.224.49.13 +ICMP TTL:61 TOS:0x0 ID:12830 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.49.13:443 -> 185.93.41.55:55834 +UDP TTL:50 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:40:29.610383 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16552 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56802 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x99FB529 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:40:29.917735 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16553 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56802 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x99FB529 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:40:31.950359 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16554 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56802 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x99FB529 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:41:26.698535 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5637 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.84:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B454 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:42:47.181675 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5638 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.37:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B425 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:15.778411 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:47679 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:59296 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x6C9DD109 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:16.085045 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:47680 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:59296 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x6C9DD109 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:17.443072 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5639 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:9543 -> 193.232.180.225:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4E1 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:18.098054 10.255.255.5 -> 8.8.8.8 +ICMP TTL:63 TOS:0xC0 ID:47681 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.8.8:443 -> 192.168.70.130:59296 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0x6C9DD109 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:24.686428 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16771 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30692 -> 193.232.180.148:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 3 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:43:44.154002 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57312 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.10:80 +TCP TTL:241 TOS:0x0 ID:40235 IpLen:20 DgmLen:40 +Seq: 0x8B7B2971 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:48:45.035939 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5640 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.47:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B42F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:50:02.308762 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5641 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:23051 -> 193.232.180.63:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B43F +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:51:24.942020 10.255.255.5 -> 172.104.238.162 +ICMP TTL:63 TOS:0xC0 ID:37309 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.238.162:19757 -> 193.232.180.32:443 +TCP TTL:241 TOS:0x0 ID:19183 IpLen:20 DgmLen:40 +Seq: 0xAF99FF74 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:52:07.674013 185.93.41.55 -> 172.224.39.132 +ICMP TTL:60 TOS:0x0 ID:13679 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:50617 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:52:07.674014 185.93.41.55 -> 172.224.39.132 +ICMP TTL:60 TOS:0x0 ID:55019 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.132:443 -> 185.93.41.55:50617 +UDP TTL:244 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:53:12.376270 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5642 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:19330 -> 193.232.180.190:443 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4BE +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:55:44.132204 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57313 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.76:443 +TCP TTL:241 TOS:0x0 ID:48115 IpLen:20 DgmLen:40 +Seq: 0xF5E60E04 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:55:48.736354 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:35038 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:62942 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:55:48.736354 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:47386 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:62942 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:55:58.426337 10.255.255.5 -> 52.208.241.142 +ICMP TTL:63 TOS:0xC0 ID:41745 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.208.241.142 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:10 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 9 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:56:03.430565 10.255.255.5 -> 52.208.241.142 +ICMP TTL:63 TOS:0xC0 ID:41746 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.208.241.142 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32786 Id: 32786 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:56:29.398017 10.255.255.5 -> 52.66.188.179 +ICMP TTL:63 TOS:0xC0 ID:22690 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.66.188.179 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:56:36.387366 10.255.255.5 -> 52.66.188.179 +ICMP TTL:63 TOS:0xC0 ID:22691 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.66.188.179 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:56:54.553303 10.255.255.5 -> 47.129.37.88 +ICMP TTL:63 TOS:0xC0 ID:43613 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.129.37.88 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:25 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 24 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:57:00.658392 10.255.255.5 -> 47.129.37.88 +ICMP TTL:63 TOS:0xC0 ID:43614 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +47.129.37.88 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:26 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 25 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:59:10.846928 10.255.255.5 -> 13.210.39.95 +ICMP TTL:63 TOS:0xC0 ID:13493 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.210.39.95 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:30 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 29 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:59:15.863305 10.255.255.5 -> 13.210.39.95 +ICMP TTL:63 TOS:0xC0 ID:13494 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.210.39.95 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:31 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 30 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-08:59:22.710860 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5643 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.6:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B406 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:06.398506 10.255.255.5 -> 15.228.56.113 +ICMP TTL:63 TOS:0xC0 ID:45649 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.228.56.113 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:25 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 24 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:11.450736 10.255.255.5 -> 15.228.56.113 +ICMP TTL:63 TOS:0xC0 ID:45650 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +15.228.56.113 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:26 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 25 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:13.252579 10.255.255.5 -> 64.94.45.66 +ICMP TTL:63 TOS:0xC0 ID:26688 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.66 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31023 Id: 32457 SeqNo: 7 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:13.423302 10.255.255.5 -> 64.94.45.60 +ICMP TTL:63 TOS:0xC0 ID:8249 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.60 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31021 Id: 32456 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:14.266224 10.255.255.5 -> 64.94.45.59 +ICMP TTL:63 TOS:0xC0 ID:21579 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +64.94.45.59 -> 86.110.96.150 +ICMP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 31021 Id: 32458 SeqNo: 8 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:35.021001 10.255.255.5 -> 54.177.229.94 +ICMP TTL:63 TOS:0xC0 ID:38847 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.177.229.94 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:01:40.022032 10.255.255.5 -> 54.177.229.94 +ICMP TTL:63 TOS:0xC0 ID:38848 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +54.177.229.94 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:02:32.775887 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16643 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56837 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0xD9DB7002 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:02:33.084697 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16644 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56837 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0xD9DB7002 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:02:35.148610 10.255.255.5 -> 8.8.4.4 +ICMP TTL:63 TOS:0xC0 ID:16645 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +8.8.4.4:443 -> 192.168.70.232:56837 +TCP TTL:1 TOS:0x0 ID:0 IpLen:20 DgmLen:60 DF +Seq: 0xD9DB7002 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:03:50.807619 10.255.255.5 -> 35.182.126.227 +ICMP TTL:63 TOS:0xC0 ID:24354 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +35.182.126.227 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:30 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 29 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:03:56.624912 10.255.255.5 -> 35.182.126.227 +ICMP TTL:63 TOS:0xC0 ID:24355 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +35.182.126.227 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:31 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 30 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:06:58.739478 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:33720 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:53414 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:06:58.739479 185.93.41.55 -> 172.224.40.137 +ICMP TTL:61 TOS:0x0 ID:12516 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.40.137:443 -> 185.93.41.55:53414 +UDP TTL:51 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:06:59.472192 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:52134 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:54299 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:402:16] "PROTOCOL-ICMP destination unreachable port unreachable packet detected" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:06:59.472193 185.93.41.55 -> 172.224.39.133 +ICMP TTL:61 TOS:0x0 ID:29540 IpLen:20 DgmLen:56 +Type:3 Code:3 DESTINATION UNREACHABLE: PORT UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.224.39.133:443 -> 185.93.41.55:54299 +UDP TTL:245 TOS:0x0 ID:0 IpLen:20 DgmLen:58 DF +Len: 30 Csum: 0 +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:08:44.268098 10.255.255.5 -> 13.36.177.71 +ICMP TTL:63 TOS:0xC0 ID:33321 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.36.177.71 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:10 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 9 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:08:49.272181 10.255.255.5 -> 13.36.177.71 +ICMP TTL:63 TOS:0xC0 ID:33322 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +13.36.177.71 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:11 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32788 Id: 32788 SeqNo: 10 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:09:09.537513 10.255.255.5 -> 18.169.170.185 +ICMP TTL:63 TOS:0xC0 ID:6290 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.169.170.185 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:09:15.533994 10.255.255.5 -> 192.141.9.110 +ICMP TTL:63 TOS:0xC0 ID:330 IpLen:20 DgmLen:88 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +192.141.9.110:39087 -> 193.232.180.79:80 +TCP TTL:42 TOS:0x0 ID:34146 IpLen:20 DgmLen:60 DF +Seq: 0xAEA21C3D +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:09:15.813733 10.255.255.5 -> 18.169.170.185 +ICMP TTL:63 TOS:0xC0 ID:6291 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.169.170.185 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:09:24.493985 10.255.255.5 -> 94.141.120.83 +ICMP TTL:63 TOS:0xC0 ID:16772 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +94.141.120.83:30683 -> 193.232.180.139:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 DF +Len: 7 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:09:32.814763 10.255.255.5 -> 172.104.138.223 +ICMP TTL:63 TOS:0xC0 ID:57314 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.104.138.223:24653 -> 193.232.180.215:443 +TCP TTL:241 TOS:0x0 ID:45599 IpLen:20 DgmLen:40 +Seq: 0x79D30773 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:10:21.032849 10.255.255.5 -> 178.215.236.84 +ICMP TTL:63 TOS:0xC0 ID:14028 IpLen:20 DgmLen:98 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +178.215.236.84:30706 -> 193.232.180.162:53 +UDP TTL:1 TOS:0x0 ID:49640 IpLen:20 DgmLen:70 +Len: 0 Csum: 0 +(42 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:10:50.139417 10.255.255.5 -> 52.90.145.138 +ICMP TTL:63 TOS:0xC0 ID:55321 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.90.145.138 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:10:55.146418 10.255.255.5 -> 52.90.145.138 +ICMP TTL:63 TOS:0xC0 ID:55322 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +52.90.145.138 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:19 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 18 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:11:25.339484 10.255.255.5 -> 139.162.229.94 +ICMP TTL:63 TOS:0xC0 ID:8291 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.229.94 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:12308 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 16213 Id: 17152 SeqNo: 37 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:11:25.354135 10.255.255.5 -> 139.162.229.94 +ICMP TTL:63 TOS:0xC0 ID:8292 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.229.94 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:12310 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 16212 Id: 17152 SeqNo: 38 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:11:25.360047 10.255.255.5 -> 139.162.229.94 +ICMP TTL:63 TOS:0xC0 ID:8293 IpLen:20 DgmLen:88 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +139.162.229.94 -> 86.110.96.149 +ICMP TTL:1 TOS:0x0 ID:12312 IpLen:20 DgmLen:60 +Type: 8 Code: 0 Csum: 16211 Id: 17152 SeqNo: 39 +(32 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:12:14.109633 10.255.255.5 -> 208.72.153.115 +ICMP TTL:63 TOS:0xC0 ID:12214 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.153.115 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:20 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 65336 Id: 65336 SeqNo: 19 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:12:19.577815 10.255.255.5 -> 208.72.153.115 +ICMP TTL:63 TOS:0xC0 ID:12215 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +208.72.153.115 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:21 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 65336 Id: 65336 SeqNo: 20 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:13:17.243525 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5644 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.40:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B428 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:15:32.989098 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5645 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.82:80 +TCP TTL:238 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B452 +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:16:01.590660 10.255.255.5 -> 18.217.215.27 +ICMP TTL:63 TOS:0xC0 ID:38785 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.217.215.27 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:16 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 15 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:16:06.658632 10.255.255.5 -> 18.217.215.27 +ICMP TTL:63 TOS:0xC0 ID:38786 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +18.217.215.27 -> 193.232.180.131 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 32787 Id: 32787 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:17:23.853301 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5646 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:6278 -> 193.232.180.203:80 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B4CB +(12 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:18:02.370482 10.255.255.5 -> 169.255.56.68 +ICMP TTL:63 TOS:0xC0 ID:29951 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +169.255.56.68 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:17 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 55347 Id: 55347 SeqNo: 16 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:449:9] "PROTOCOL-ICMP Time-To-Live Exceeded in Transit" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:18:07.398464 10.255.255.5 -> 169.255.56.68 +ICMP TTL:63 TOS:0xC0 ID:29952 IpLen:20 DgmLen:72 +Type:11 Code:0 TTL EXCEEDED IN TRANSIT +** ORIGINAL DATAGRAM DUMP: +169.255.56.68 -> 193.232.180.2 +ICMP TTL:1 TOS:0x0 ID:18 IpLen:20 DgmLen:44 DF +Type: 8 Code: 0 Csum: 55347 Id: 55347 SeqNo: 17 +(16 more bytes of original packet) +** END OF DUMP + +[**] [1:399:9] "PROTOCOL-ICMP Destination Unreachable Host Unreachable" [**] +[Classification: Misc activity] [Priority: 3] +[AppID: ICMP] +08/22-09:18:39.566191 10.255.255.5 -> 172.255.0.6 +ICMP TTL:63 TOS:0xC0 ID:5647 IpLen:20 DgmLen:68 +Type:3 Code:1 DESTINATION UNREACHABLE: HOST UNREACHABLE +** ORIGINAL DATAGRAM DUMP: +172.255.0.6:30130 -> 193.232.180.40:443 +TCP TTL:239 TOS:0x0 ID:54321 IpLen:20 DgmLen:40 +Seq: 0xC1E8B428 +(12 more bytes of original packet) +** END OF DUMP + diff --git a/logs/alert_json.txt b/logs/alert_json.txt new file mode 100644 index 0000000..3e49d06 --- /dev/null +++ b/logs/alert_json.txt @@ -0,0 +1,2426 @@ +{ "timestamp" : "08/21-13:25:23.023631", "pkt_num" : 16102, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "156.59.219.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:25:23.030648", "pkt_num" : 16115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "156.59.219.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:25:23.042603", "pkt_num" : 16158, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "156.59.219.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:25:23.283682", "pkt_num" : 16494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "156.59.219.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:25:36.012592", "pkt_num" : 40854, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 36, "dir" : "C2S", "src_ap" : "192.71.26.73:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:29456:3", "action" : "allow" } +{ "timestamp" : "08/21-13:25:44.319397", "pkt_num" : 56749, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:27:04.122656", "pkt_num" : 253090, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:27:04.122656", "pkt_num" : 253090, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:29:18.730288", "pkt_num" : 642135, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:30:04.133522", "pkt_num" : 772280, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:30:04.133522", "pkt_num" : 772280, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:30:44.964212", "pkt_num" : 875637, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 120, "dir" : "C2S", "src_ap" : "192.178.241.251:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:30:44.972257", "pkt_num" : 875650, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 96, "dir" : "C2S", "src_ap" : "192.178.241.234:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:31:04.139990", "pkt_num" : 927877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:31:04.139990", "pkt_num" : 927877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:31:05.244572", "pkt_num" : 930083, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:31:11.584735", "pkt_num" : 947854, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.172.26.143:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:32:04.143940", "pkt_num" : 1092029, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:32:04.143940", "pkt_num" : 1092029, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:32:04.146789", "pkt_num" : 1092055, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.118.42.254:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:32:18.307511", "pkt_num" : 1132949, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:33:04.154425", "pkt_num" : 1247295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:33:04.154425", "pkt_num" : 1247295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:33:38.350503", "pkt_num" : 1336419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:33:45.920769", "pkt_num" : 1363886, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:34:04.148715", "pkt_num" : 1420723, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:34:04.148715", "pkt_num" : 1420723, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:34:19.480368", "pkt_num" : 1476653, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "190.103.186.106:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:34:24.515612", "pkt_num" : 1487911, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "190.103.186.106:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:35:04.152566", "pkt_num" : 1591797, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:35:04.152566", "pkt_num" : 1591797, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:36:04.165636", "pkt_num" : 1738606, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.241:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:36:04.165636", "pkt_num" : 1738606, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.241:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:36:19.326799", "pkt_num" : 1849341, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:36:52.608270", "pkt_num" : 2129679, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:37:00.949346", "pkt_num" : 2152624, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:37:04.156934", "pkt_num" : 2159873, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:37:04.156934", "pkt_num" : 2159873, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:38:04.170707", "pkt_num" : 2380302, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:38:04.170707", "pkt_num" : 2380302, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:38:14.521316", "pkt_num" : 2407578, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.162121", "pkt_num" : 2679002, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.162121", "pkt_num" : 2679002, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.172954", "pkt_num" : 2679046, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.241:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.172954", "pkt_num" : 2679046, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.241:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.173268", "pkt_num" : 2679048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:40:04.173268", "pkt_num" : 2679048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:53:03.103837", "pkt_num" : 137426, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-13:53:03.103837", "pkt_num" : 137426, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-13:56:48.005483", "pkt_num" : 776937, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-13:57:54.542945", "pkt_num" : 956349, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-13:59:46.150027", "pkt_num" : 1253162, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.48.11:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-13:59:46.150027", "pkt_num" : 1253163, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.48.11:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:00:36.860477", "pkt_num" : 1389853, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:01:58.114460", "pkt_num" : 1562080, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:02:13.112327", "pkt_num" : 1616455, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:02:34.686816", "pkt_num" : 1665564, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:03:40.989648", "pkt_num" : 1846859, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:04:31.717046", "pkt_num" : 2018477, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:04:43.621219", "pkt_num" : 2042790, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "46.243.143.156:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:05:02.703652", "pkt_num" : 2085649, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:05:10.017672", "pkt_num" : 2102444, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:05:25.596035", "pkt_num" : 2148360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:05:32.779931", "pkt_num" : 2163649, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:06:03.521532", "pkt_num" : 2254295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:06:03.521532", "pkt_num" : 2254295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:07:03.552117", "pkt_num" : 2426836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:07:03.552117", "pkt_num" : 2426836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:08:03.585984", "pkt_num" : 2592094, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:08:03.585984", "pkt_num" : 2592094, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:08:45.013634", "pkt_num" : 2712339, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:55.849901", "pkt_num" : 2739047, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:55.849901", "pkt_num" : 2739048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:55.849901", "pkt_num" : 2739049, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:55.849975", "pkt_num" : 2739050, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:55.850051", "pkt_num" : 2739051, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:08:59.884194", "pkt_num" : 2748907, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:09:04.014405", "pkt_num" : 2760757, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:09:12.211035", "pkt_num" : 2779223, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:09:28.348076", "pkt_num" : 2818195, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:10:56.900923", "pkt_num" : 3036781, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:10:57.735111", "pkt_num" : 3041166, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.172.30.197:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:12:03.714074", "pkt_num" : 3230505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:12:03.714074", "pkt_num" : 3230505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:12:22.058516", "pkt_num" : 3281835, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:12:30.083414", "pkt_num" : 3301367, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:12:55.582991", "pkt_num" : 3366336, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:13:03.746247", "pkt_num" : 3402662, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:13:03.746247", "pkt_num" : 3402662, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:14:48.019163", "pkt_num" : 3700844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:15:15.403950", "pkt_num" : 3783280, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:15:58.481531", "pkt_num" : 3874181, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:16:03.847109", "pkt_num" : 3886434, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:16:03.847109", "pkt_num" : 3886434, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:16:03.847109", "pkt_num" : 3886435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:16:03.847109", "pkt_num" : 3886435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:16:18.417940", "pkt_num" : 3920963, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:17:51.442585", "pkt_num" : 4151679, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.0.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:17:52.981144", "pkt_num" : 4154904, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:17:53.283334", "pkt_num" : 4155696, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:17:55.302379", "pkt_num" : 4159689, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:18:51.990740", "pkt_num" : 4310220, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:19:03.944124", "pkt_num" : 4342001, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:19:03.944124", "pkt_num" : 4342001, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:19:03.945912", "pkt_num" : 4342004, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.201:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:19:03.945912", "pkt_num" : 4342004, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.201:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:19:13.464559", "pkt_num" : 4366661, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:19:13.765519", "pkt_num" : 4367248, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:19:15.794926", "pkt_num" : 4371319, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:20:03.974494", "pkt_num" : 4512844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:20:03.974494", "pkt_num" : 4512844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:20:49.183772", "pkt_num" : 4646438, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:20:51.445028", "pkt_num" : 4653872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:21:04.008196", "pkt_num" : 4695116, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:21:04.008196", "pkt_num" : 4695116, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:22:04.050009", "pkt_num" : 4879113, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:22:04.050009", "pkt_num" : 4879113, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:22:16.627099", "pkt_num" : 4922864, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:22:27.546873", "pkt_num" : 4954777, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.172.30.143:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:22:50.393914", "pkt_num" : 5015127, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:22:52.691881", "pkt_num" : 5022542, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:22:54.491446", "pkt_num" : 5025801, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:22:55.538723", "pkt_num" : 5028102, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:22:57.045750", "pkt_num" : 5033799, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:22:57.045750", "pkt_num" : 5033800, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:23:02.968569", "pkt_num" : 5050981, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-14:23:24.067178", "pkt_num" : 5115207, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "219.142.106.139:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:25:06.192274", "pkt_num" : 5549435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:04.163122", "pkt_num" : 5830628, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:26:04.163122", "pkt_num" : 5830628, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:26:04.163484", "pkt_num" : 5830634, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:26:04.163484", "pkt_num" : 5830634, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:26:12.808191", "pkt_num" : 5888804, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:38.809207", "pkt_num" : 6000413, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:38.811991", "pkt_num" : 6000421, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:38.811991", "pkt_num" : 6000422, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:39.114913", "pkt_num" : 6001354, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:41.156200", "pkt_num" : 6006242, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:26:41.156200", "pkt_num" : 6006243, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.194181", "pkt_num" : 6067454, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.194181", "pkt_num" : 6067454, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.194397", "pkt_num" : 6067458, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.194397", "pkt_num" : 6067458, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.201891", "pkt_num" : 6067499, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.216:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:27:04.201891", "pkt_num" : 6067499, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.216:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:27:13.721013", "pkt_num" : 6109112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:27:50.630206", "pkt_num" : 6348372, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:28:03.006089", "pkt_num" : 6424904, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:28:04.205795", "pkt_num" : 6430684, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:28:04.205795", "pkt_num" : 6430684, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:28:04.206173", "pkt_num" : 6430685, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:28:04.206173", "pkt_num" : 6430685, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:29:04.208478", "pkt_num" : 6687292, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:29:04.208478", "pkt_num" : 6687292, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:29:04.208893", "pkt_num" : 6687296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:29:04.208893", "pkt_num" : 6687296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:30:04.209578", "pkt_num" : 6949082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:30:04.209578", "pkt_num" : 6949082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:30:04.209925", "pkt_num" : 6949085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:30:04.209925", "pkt_num" : 6949085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:31:04.216567", "pkt_num" : 7165610, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:31:04.216567", "pkt_num" : 7165610, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:31:05.073347", "pkt_num" : 7169624, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:31:11.033500", "pkt_num" : 7191067, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:31:48.984965", "pkt_num" : 7284897, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:32:04.218130", "pkt_num" : 7333061, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:32:04.218130", "pkt_num" : 7333061, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:32:09.286073", "pkt_num" : 7350471, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:33:04.218213", "pkt_num" : 7514068, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:33:04.218213", "pkt_num" : 7514068, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:33:29.419080", "pkt_num" : 7592331, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:33:41.349462", "pkt_num" : 7641172, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:33:53.749851", "pkt_num" : 7678414, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.226593", "pkt_num" : 7712766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.226593", "pkt_num" : 7712766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.234531", "pkt_num" : 7712808, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.228:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.234531", "pkt_num" : 7712808, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.228:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.237591", "pkt_num" : 7712820, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:34:04.237591", "pkt_num" : 7712820, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:35:58.874834", "pkt_num" : 8180778, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:36:04.234287", "pkt_num" : 8197775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.238:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:36:04.234287", "pkt_num" : 8197775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.238:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:36:21.645732", "pkt_num" : 8251361, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:39:36.420026", "pkt_num" : 8885391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "95.142.204.178:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:41:55.578753", "pkt_num" : 9363098, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:42:00.869024", "pkt_num" : 9377470, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:42:05.059099", "pkt_num" : 9390055, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:42:54.885613", "pkt_num" : 9515172, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.169.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:42:58.887304", "pkt_num" : 9525062, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.169.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:15.453187", "pkt_num" : 10202085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:15.453187", "pkt_num" : 10202086, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:17.217192", "pkt_num" : 10206257, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:18.463155", "pkt_num" : 10208221, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:18.463262", "pkt_num" : 10208222, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:18.463309", "pkt_num" : 10208223, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:21.473496", "pkt_num" : 10217880, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:24.483536", "pkt_num" : 10230746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:47:33.514034", "pkt_num" : 10257300, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:48:09.133453", "pkt_num" : 10345168, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:48:09.748832", "pkt_num" : 10347425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:48:09.748832", "pkt_num" : 10347425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:50:06.758008", "pkt_num" : 10603997, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:50:09.743938", "pkt_num" : 10611750, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:50:09.743938", "pkt_num" : 10611750, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:50:41.329418", "pkt_num" : 10710627, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:50:42.879421", "pkt_num" : 10714752, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:09.747770", "pkt_num" : 10804042, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:51:09.747770", "pkt_num" : 10804042, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:51:21.320921", "pkt_num" : 10842950, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:27.051189", "pkt_num" : 10863439, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:34.381360", "pkt_num" : 10888872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:34.451407", "pkt_num" : 10889333, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:38.151600", "pkt_num" : 10901961, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:44.891870", "pkt_num" : 10922315, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:50.532055", "pkt_num" : 10937843, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:51:55.842231", "pkt_num" : 10953326, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:52:00.292397", "pkt_num" : 10968809, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:52:09.750618", "pkt_num" : 11003746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:52:09.750618", "pkt_num" : 11003746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:52:31.483726", "pkt_num" : 11076629, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.212.60.167:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:54:09.755228", "pkt_num" : 11483707, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:54:09.755228", "pkt_num" : 11483707, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:54:32.488458", "pkt_num" : 11557644, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:54:49.309049", "pkt_num" : 11606765, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:57:07.664555", "pkt_num" : 12035020, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:57:09.773018", "pkt_num" : 12043668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.211:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-14:57:09.773018", "pkt_num" : 12043668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.211:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-14:57:31.180583", "pkt_num" : 12116630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-14:59:02.159037", "pkt_num" : 12390985, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-14:59:34.774829", "pkt_num" : 12494614, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:28.762393", "pkt_num" : 12662801, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:35.802742", "pkt_num" : 12683320, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:35.802742", "pkt_num" : 12683322, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:35.802837", "pkt_num" : 12683323, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687874, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687878, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.482795", "pkt_num" : 12687879, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.522716", "pkt_num" : 12687989, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.522716", "pkt_num" : 12687990, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.532735", "pkt_num" : 12688023, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:00:37.532735", "pkt_num" : 12688024, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.206.27:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:02:54.708156", "pkt_num" : 13109896, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:03:09.412602", "pkt_num" : 13157142, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "181.13.244.29:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:03:09.787243", "pkt_num" : 13158424, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.238:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:03:09.787243", "pkt_num" : 13158424, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.238:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:04:56.552930", "pkt_num" : 13519720, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:05:09.785295", "pkt_num" : 13565039, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:05:09.785295", "pkt_num" : 13565039, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:06:09.785847", "pkt_num" : 13773435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:06:09.785847", "pkt_num" : 13773435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:06:37.106742", "pkt_num" : 13920722, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:07:09.791520", "pkt_num" : 14024214, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:07:09.791520", "pkt_num" : 14024214, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:08:09.791270", "pkt_num" : 14225994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:08:09.791270", "pkt_num" : 14225994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:09:09.793625", "pkt_num" : 14412755, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:09:09.793625", "pkt_num" : 14412755, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:10:09.797934", "pkt_num" : 14596876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:10:09.797934", "pkt_num" : 14596876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:11:09.798949", "pkt_num" : 14774241, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:11:09.798949", "pkt_num" : 14774241, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:12:09.801960", "pkt_num" : 14965834, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:12:09.801960", "pkt_num" : 14965834, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:12:42.641080", "pkt_num" : 15065953, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:13:09.804022", "pkt_num" : 15149431, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:13:09.804022", "pkt_num" : 15149431, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:13:10.255156", "pkt_num" : 15150601, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:14:09.809682", "pkt_num" : 15363071, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:14:09.809682", "pkt_num" : 15363071, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:14:52.496259", "pkt_num" : 15510956, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:15:09.817332", "pkt_num" : 15566964, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:15:09.817332", "pkt_num" : 15566964, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:15:46.748358", "pkt_num" : 15688191, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.172.30.130:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:16:09.820617", "pkt_num" : 15762860, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:16:09.820617", "pkt_num" : 15762860, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:17:09.824850", "pkt_num" : 15968115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:17:09.824850", "pkt_num" : 15968115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:17:54.133376", "pkt_num" : 16114412, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:18:19.914441", "pkt_num" : 16193836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:19:09.827822", "pkt_num" : 16344335, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:19:09.827822", "pkt_num" : 16344335, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:19:20.226702", "pkt_num" : 16375159, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:20:09.828827", "pkt_num" : 16499966, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:20:09.828827", "pkt_num" : 16499966, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:20:11.508754", "pkt_num" : 16504210, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:20:48.060223", "pkt_num" : 16590162, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:21:09.835521", "pkt_num" : 16649572, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:21:09.835521", "pkt_num" : 16649572, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:21:18.671345", "pkt_num" : 16685878, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:21:33.561973", "pkt_num" : 16727255, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:25:09.843857", "pkt_num" : 17398691, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.141:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:25:09.843857", "pkt_num" : 17398691, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.141:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:27:09.813868", "pkt_num" : 17697045, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.141:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:27:09.813868", "pkt_num" : 17697045, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.141:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:27:26.605749", "pkt_num" : 17731871, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:29:09.801698", "pkt_num" : 17972757, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:29:09.801698", "pkt_num" : 17972757, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:30:42.013332", "pkt_num" : 18212507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:31:09.833877", "pkt_num" : 18302350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:31:09.833877", "pkt_num" : 18302350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:31:32.355442", "pkt_num" : 18352609, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.118.42.254:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:31:55.826252", "pkt_num" : 18420296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:33:09.862200", "pkt_num" : 18621980, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:33:09.862200", "pkt_num" : 18621980, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:33:34.714763", "pkt_num" : 18684671, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:33:44.690642", "pkt_num" : 18710485, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:34:09.855396", "pkt_num" : 18767350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:34:09.855396", "pkt_num" : 18767350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:36:09.864982", "pkt_num" : 19090470, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:36:09.864982", "pkt_num" : 19090470, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:36:21.486695", "pkt_num" : 19121877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:37:52.810285", "pkt_num" : 19373457, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:38:23.751584", "pkt_num" : 19449518, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:38:29.431725", "pkt_num" : 19462090, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:39:05.536228", "pkt_num" : 19556837, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:39:26.544015", "pkt_num" : 19625127, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:40:09.884952", "pkt_num" : 19737634, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:40:09.884952", "pkt_num" : 19737634, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:40:55.610694", "pkt_num" : 19854612, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:41:09.883439", "pkt_num" : 19916204, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:41:09.883439", "pkt_num" : 19916204, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:41:13.890600", "pkt_num" : 19925800, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:41:24.848605", "pkt_num" : 19955847, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:41:33.570494", "pkt_num" : 19975393, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:42:09.888950", "pkt_num" : 20054331, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:42:09.888950", "pkt_num" : 20054331, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:42:47.751289", "pkt_num" : 20134869, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 36, "dir" : "C2S", "src_ap" : "172.105.181.89:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:29456:3", "action" : "allow" } +{ "timestamp" : "08/21-15:48:36.645458", "pkt_num" : 21362669, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:49:09.910258", "pkt_num" : 21470263, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:49:09.910258", "pkt_num" : 21470263, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:51:37.952532", "pkt_num" : 21936144, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:52:43.725233", "pkt_num" : 22097062, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:54:15.855034", "pkt_num" : 22297948, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "222.180.162.228:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-15:55:09.913403", "pkt_num" : 22403738, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:55:09.913403", "pkt_num" : 22403738, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:55:09.915653", "pkt_num" : 22403747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:55:09.915653", "pkt_num" : 22403747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:56:07.808981", "pkt_num" : 22521429, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:09.921051", "pkt_num" : 22525414, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:56:09.921051", "pkt_num" : 22525414, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:56:10.829224", "pkt_num" : 22527009, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:10.829224", "pkt_num" : 22527010, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:10.829318", "pkt_num" : 22527011, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:10.829318", "pkt_num" : 22527012, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:13.849237", "pkt_num" : 22535439, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:13.849237", "pkt_num" : 22535440, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:13.849237", "pkt_num" : 22535441, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:19.870267", "pkt_num" : 22551945, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:56:25.909827", "pkt_num" : 22564384, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 104, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.212.5.164:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:57:09.921847", "pkt_num" : 22654731, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:57:09.921847", "pkt_num" : 22654731, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.922672", "pkt_num" : 22778335, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.922672", "pkt_num" : 22778335, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.925412", "pkt_num" : 22778358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.925412", "pkt_num" : 22778358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.930447", "pkt_num" : 22778377, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:58:09.930447", "pkt_num" : 22778377, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:58:30.568832", "pkt_num" : 22816131, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-15:59:09.930075", "pkt_num" : 22895673, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-15:59:09.930075", "pkt_num" : 22895673, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-15:59:43.641659", "pkt_num" : 22967974, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:00:09.929277", "pkt_num" : 23017823, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:00:09.929277", "pkt_num" : 23017823, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:00:44.484074", "pkt_num" : 23087509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:00:51.834267", "pkt_num" : 23107516, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:01:09.937073", "pkt_num" : 23157217, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:01:09.937073", "pkt_num" : 23157217, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:01:55.976972", "pkt_num" : 23282679, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:02:09.937342", "pkt_num" : 23322683, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:02:09.937342", "pkt_num" : 23322683, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:02:09.940114", "pkt_num" : 23322721, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:02:09.940114", "pkt_num" : 23322721, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:03:09.939718", "pkt_num" : 23496225, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:03:09.939718", "pkt_num" : 23496225, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:03:09.942527", "pkt_num" : 23496248, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:03:09.942527", "pkt_num" : 23496248, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:03:24.570357", "pkt_num" : 23536175, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:04:09.953261", "pkt_num" : 23665877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:04:09.953261", "pkt_num" : 23665877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:04:09.958291", "pkt_num" : 23665918, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:04:09.958291", "pkt_num" : 23665918, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.133:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:05:09.957965", "pkt_num" : 23838532, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:05:09.957965", "pkt_num" : 23838532, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:06:09.959998", "pkt_num" : 24014687, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:06:09.959998", "pkt_num" : 24014687, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:07:09.964785", "pkt_num" : 24179177, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:07:09.964785", "pkt_num" : 24179177, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:08:09.966267", "pkt_num" : 24297494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:08:09.966267", "pkt_num" : 24297494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:08:11.931652", "pkt_num" : 24301869, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:09:09.968441", "pkt_num" : 24405247, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:09:09.968441", "pkt_num" : 24405247, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:09:40.371438", "pkt_num" : 24464591, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:10:09.971309", "pkt_num" : 24516355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:10:09.971309", "pkt_num" : 24516355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:10:19.716553", "pkt_num" : 24531435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:11:09.975114", "pkt_num" : 24620383, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:11:09.975114", "pkt_num" : 24620383, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:12:09.975926", "pkt_num" : 24722174, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:12:09.975926", "pkt_num" : 24722174, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:14:09.987244", "pkt_num" : 24941919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:14:09.987244", "pkt_num" : 24941919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:18:00.094745", "pkt_num" : 25425037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:18:09.986204", "pkt_num" : 25442052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:18:09.986204", "pkt_num" : 25442052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:21:41.813384", "pkt_num" : 25833040, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:21:44.633498", "pkt_num" : 25838420, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:06.969658", "pkt_num" : 25878239, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:06.969772", "pkt_num" : 25878240, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:06.969772", "pkt_num" : 25878241, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:06.969772", "pkt_num" : 25878242, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:06.969773", "pkt_num" : 25878243, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:10.939669", "pkt_num" : 25884592, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:14.929902", "pkt_num" : 25891495, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:22.870938", "pkt_num" : 25904425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.229.221.95:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:38.529184", "pkt_num" : 25931167, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:22:40.225639", "pkt_num" : 25934650, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:09.996741", "pkt_num" : 25982270, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:09.999499", "pkt_num" : 25982278, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:23:09.999499", "pkt_num" : 25982278, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:23:15.476092", "pkt_num" : 25991229, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "10.255.255.2:0", "dst_ap" : "209.38.180.198:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:15.583068", "pkt_num" : 25991369, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:16.222593", "pkt_num" : 25992284, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "82.163.78.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:16.506408", "pkt_num" : 25992639, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.59.55.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:16.606958", "pkt_num" : 25992778, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "10.255.255.2:0", "dst_ap" : "209.38.180.198:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:18.661916", "pkt_num" : 25996670, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "82.163.78.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:18.911179", "pkt_num" : 25996823, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "10.255.255.2:0", "dst_ap" : "209.38.180.198:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:21.490366", "pkt_num" : 26000631, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.217.199:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:21.637226", "pkt_num" : 26001091, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "146.190.4.192:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:21.796534", "pkt_num" : 26001689, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "10.255.255.2:0", "dst_ap" : "50.116.39.197:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:23.524924", "pkt_num" : 26004274, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "82.163.78.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:23.639337", "pkt_num" : 26004455, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:31.707899", "pkt_num" : 26018003, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "10.255.255.2:0", "dst_ap" : "51.89.179.182:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:33.244542", "pkt_num" : 26020131, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "82.163.78.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:36.461237", "pkt_num" : 26025880, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:37.440559", "pkt_num" : 26027378, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:38.640022", "pkt_num" : 26029370, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:41.078037", "pkt_num" : 26033562, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.237.90:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:57.191000", "pkt_num" : 26064436, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.254.245.116:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:57.191001", "pkt_num" : 26064437, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.254.245.116:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:57.192972", "pkt_num" : 26064439, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.254.245.116:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:23:57.203950", "pkt_num" : 26064442, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.254.245.116:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:24:01.548798", "pkt_num" : 26075161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:24:09.139209", "pkt_num" : 26088968, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:24:10.001469", "pkt_num" : 26090037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.138:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:24:10.001469", "pkt_num" : 26090037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.138:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:24:27.409797", "pkt_num" : 26119990, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:25:09.998969", "pkt_num" : 26224829, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:25:09.998969", "pkt_num" : 26224829, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:26:10.001173", "pkt_num" : 26376472, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:26:10.001173", "pkt_num" : 26376472, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:26:22.144319", "pkt_num" : 26443682, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:27:10.002275", "pkt_num" : 26604449, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:27:10.002275", "pkt_num" : 26604449, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:27:23.636757", "pkt_num" : 26634499, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:28:10.005997", "pkt_num" : 26734567, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:28:10.005997", "pkt_num" : 26734567, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:29:10.007698", "pkt_num" : 26845216, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:29:10.007698", "pkt_num" : 26845216, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:29:15.200976", "pkt_num" : 26854747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:29:45.752224", "pkt_num" : 26915097, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:30:10.012277", "pkt_num" : 26962476, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:30:10.012277", "pkt_num" : 26962476, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:31:06.555472", "pkt_num" : 27074135, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:31:10.015694", "pkt_num" : 27078206, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:31:10.015694", "pkt_num" : 27078206, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.147:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:31:28.455551", "pkt_num" : 27101134, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:31:29.397844", "pkt_num" : 27102040, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.78:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:31:30.864769", "pkt_num" : 27103692, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.75:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:32:38.849101", "pkt_num" : 27202400, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:33:10.025869", "pkt_num" : 27244888, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:33:10.025869", "pkt_num" : 27244888, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:33:19.090690", "pkt_num" : 27257375, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:34:10.028829", "pkt_num" : 27365480, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:34:10.028829", "pkt_num" : 27365480, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:35:10.031544", "pkt_num" : 27455977, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:35:10.031544", "pkt_num" : 27455977, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:35:15.805359", "pkt_num" : 27469607, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:36:00.652990", "pkt_num" : 27527438, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 36, "dir" : "C2S", "src_ap" : "172.105.21.17:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:29456:3", "action" : "allow" } +{ "timestamp" : "08/21-16:36:47.645242", "pkt_num" : 27617594, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:37:10.038967", "pkt_num" : 27646580, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:37:10.038967", "pkt_num" : 27646580, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:37:50.061367", "pkt_num" : 27699887, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:37:56.631684", "pkt_num" : 27707135, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "211.21.48.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:37:56.633583", "pkt_num" : 27707136, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "211.21.48.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:37:56.881602", "pkt_num" : 27707288, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "211.21.48.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:37:56.881602", "pkt_num" : 27707289, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "211.21.48.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:38:10.042169", "pkt_num" : 27722519, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:38:10.042169", "pkt_num" : 27722519, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:39:10.044281", "pkt_num" : 27802690, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:39:10.044281", "pkt_num" : 27802690, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:40:10.048761", "pkt_num" : 27882253, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:40:10.048761", "pkt_num" : 27882253, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:42:10.056829", "pkt_num" : 28124762, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:42:10.056829", "pkt_num" : 28124762, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:42:54.803279", "pkt_num" : 28223699, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:43:10.056766", "pkt_num" : 28242789, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:43:10.056766", "pkt_num" : 28242789, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:44:10.059881", "pkt_num" : 28308175, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:44:10.059881", "pkt_num" : 28308175, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:45:10.065747", "pkt_num" : 28367414, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:45:10.065747", "pkt_num" : 28367414, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:45:44.873757", "pkt_num" : 28405036, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:44.874615", "pkt_num" : 28405039, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:44.875820", "pkt_num" : 28405041, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:45.678480", "pkt_num" : 28406261, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:45.679761", "pkt_num" : 28406281, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:45.680164", "pkt_num" : 28406285, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:46.679909", "pkt_num" : 28410241, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:46.679909", "pkt_num" : 28410242, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:47.339480", "pkt_num" : 28410759, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:47.339480", "pkt_num" : 28410760, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:49.713884", "pkt_num" : 28412692, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:49.730605", "pkt_num" : 28412694, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:50.615826", "pkt_num" : 28414370, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:50.615827", "pkt_num" : 28414371, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:54.714150", "pkt_num" : 28419467, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:54.714150", "pkt_num" : 28419468, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:58.247752", "pkt_num" : 28422770, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:58.247752", "pkt_num" : 28422771, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:45:58.636687", "pkt_num" : 28424171, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-16:46:10.069932", "pkt_num" : 28445778, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:46:10.069932", "pkt_num" : 28445778, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:46:15.101402", "pkt_num" : 28452942, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:46:16.811280", "pkt_num" : 28453663, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:46:23.841575", "pkt_num" : 28459992, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:46:33.371772", "pkt_num" : 28473222, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:48:10.076221", "pkt_num" : 28553380, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:48:10.076221", "pkt_num" : 28553380, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:48:51.097017", "pkt_num" : 28582261, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:49:09.164839", "pkt_num" : 28596284, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:49:10.079965", "pkt_num" : 28596668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:49:10.079965", "pkt_num" : 28596668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:49:19.226495", "pkt_num" : 28607391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "175.6.22.149:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-16:50:10.082572", "pkt_num" : 28690423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:50:10.082572", "pkt_num" : 28690423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:50:25.780967", "pkt_num" : 28703522, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:50:44.221602", "pkt_num" : 28718843, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:51:10.084644", "pkt_num" : 28739283, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:51:10.084644", "pkt_num" : 28739283, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:52:10.087954", "pkt_num" : 28788861, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:52:10.087954", "pkt_num" : 28788861, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:52:40.456301", "pkt_num" : 28807574, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:53:10.089478", "pkt_num" : 28828423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:53:10.089478", "pkt_num" : 28828423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:54:10.093026", "pkt_num" : 28893481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:54:10.093026", "pkt_num" : 28893481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:55:10.094013", "pkt_num" : 28938776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:55:10.094013", "pkt_num" : 28938776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:56:10.096840", "pkt_num" : 28982585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:56:10.096840", "pkt_num" : 28982585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:56:16.504989", "pkt_num" : 28994012, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:57:10.100741", "pkt_num" : 29044615, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-16:57:10.100741", "pkt_num" : 29044615, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-16:57:29.457786", "pkt_num" : 29061519, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:57:59.828713", "pkt_num" : 29085190, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-16:59:23.462282", "pkt_num" : 29152422, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:00:10.106355", "pkt_num" : 29192161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:00:10.106355", "pkt_num" : 29192161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:00:10.114718", "pkt_num" : 29192200, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.134:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:00:10.114718", "pkt_num" : 29192200, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.134:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:00:26.684476", "pkt_num" : 29207235, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:01:32.067163", "pkt_num" : 29278972, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:02:10.113353", "pkt_num" : 29308875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:02:10.113353", "pkt_num" : 29308875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:02:33.259572", "pkt_num" : 29325352, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:03:10.116623", "pkt_num" : 29352507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:03:10.116623", "pkt_num" : 29352507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:03:10.124866", "pkt_num" : 29352554, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.134:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:03:10.124866", "pkt_num" : 29352554, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.134:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:03:14.482695", "pkt_num" : 29355732, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:04:10.119407", "pkt_num" : 29393407, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:04:10.119407", "pkt_num" : 29393407, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:05:10.127312", "pkt_num" : 29437411, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:05:10.127312", "pkt_num" : 29437411, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:05:10.129405", "pkt_num" : 29437419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:05:10.129405", "pkt_num" : 29437419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:06:06.097991", "pkt_num" : 29483273, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:06:14.182485", "pkt_num" : 29489492, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:06:49.869601", "pkt_num" : 29515593, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:07:10.135869", "pkt_num" : 29531430, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:07:10.135869", "pkt_num" : 29531430, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:07:23.160735", "pkt_num" : 29541218, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:08:10.138529", "pkt_num" : 29577658, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:08:10.138529", "pkt_num" : 29577658, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:08:38.863854", "pkt_num" : 29601683, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:09:10.144772", "pkt_num" : 29631112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:09:10.144772", "pkt_num" : 29631112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:09:11.295001", "pkt_num" : 29632710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:10:10.144260", "pkt_num" : 29705745, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:10:10.144260", "pkt_num" : 29705745, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:10:10.147115", "pkt_num" : 29705761, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:10:10.147115", "pkt_num" : 29705761, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:10:42.245417", "pkt_num" : 29748507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "115.227.49.23:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:11:10.149882", "pkt_num" : 29807099, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:11:10.149882", "pkt_num" : 29807099, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:11:16.177295", "pkt_num" : 29815984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:16.485376", "pkt_num" : 29816404, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:17.100789", "pkt_num" : 29819950, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:17.100789", "pkt_num" : 29819951, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:18.251115", "pkt_num" : 29822345, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:18.251115", "pkt_num" : 29822346, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:20.586267", "pkt_num" : 29831229, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:20.586317", "pkt_num" : 29831230, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:25.249430", "pkt_num" : 29844677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:25.250548", "pkt_num" : 29844678, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:34.620562", "pkt_num" : 29868490, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:34.620562", "pkt_num" : 29868491, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.7:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:11:36.640862", "pkt_num" : 29871711, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:12:33.462952", "pkt_num" : 29978030, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:14:14.526908", "pkt_num" : 30198645, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:14:52.648493", "pkt_num" : 30256763, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:15:02.728813", "pkt_num" : 30272601, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:15:09.889036", "pkt_num" : 30283600, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:15:33.650038", "pkt_num" : 30323838, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:15:42.590393", "pkt_num" : 30337682, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:02.231207", "pkt_num" : 30370500, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:02.831281", "pkt_num" : 30371622, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:10.166693", "pkt_num" : 30383603, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:16:10.166693", "pkt_num" : 30383603, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:16:10.167374", "pkt_num" : 30383608, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:16:10.167374", "pkt_num" : 30383608, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:16:16.101668", "pkt_num" : 30394483, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:23.311989", "pkt_num" : 30405223, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:27.872152", "pkt_num" : 30413104, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:32.152360", "pkt_num" : 30419604, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:49.533035", "pkt_num" : 30445553, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.207.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:16:58.425927", "pkt_num" : 30460979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:17:10.170428", "pkt_num" : 30479816, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:17:10.170428", "pkt_num" : 30479816, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:17:49.665518", "pkt_num" : 30547419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:18:10.170943", "pkt_num" : 30579776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.131:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:18:10.170943", "pkt_num" : 30579776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.131:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:20:10.179588", "pkt_num" : 30773495, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:20:10.179588", "pkt_num" : 30773495, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:21:10.181715", "pkt_num" : 30879435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:21:10.181715", "pkt_num" : 30879435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:21:34.274286", "pkt_num" : 30924773, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:22:10.184024", "pkt_num" : 30984014, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:22:10.184024", "pkt_num" : 30984014, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:22:35.246602", "pkt_num" : 31024670, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:23:06.961877", "pkt_num" : 31075621, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.188178", "pkt_num" : 31080862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.186:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.188178", "pkt_num" : 31080862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.186:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.189817", "pkt_num" : 31080871, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.189817", "pkt_num" : 31080871, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.190398", "pkt_num" : 31080876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:23:10.190398", "pkt_num" : 31080876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:23:13.378090", "pkt_num" : 31086040, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:24:10.187957", "pkt_num" : 31177358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.131:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:24:10.187957", "pkt_num" : 31177358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.131:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:24:10.189880", "pkt_num" : 31177372, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:24:10.189880", "pkt_num" : 31177372, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:24:29.354583", "pkt_num" : 31209016, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:25:10.187502", "pkt_num" : 31276538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:25:10.187502", "pkt_num" : 31276538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:26:10.193788", "pkt_num" : 31375411, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:26:10.193788", "pkt_num" : 31375411, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:27:10.192520", "pkt_num" : 31469589, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:27:10.192520", "pkt_num" : 31469589, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:28:10.194776", "pkt_num" : 31562984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:28:10.194776", "pkt_num" : 31562984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:29:10.199814", "pkt_num" : 31757332, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:29:10.199814", "pkt_num" : 31757332, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:30:07.055102", "pkt_num" : 31962240, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 36, "dir" : "C2S", "src_ap" : "172.233.161.194:0", "dst_ap" : "185.93.41.55:0", "rule" : "1:29456:3", "action" : "allow" } +{ "timestamp" : "08/21-17:30:10.200694", "pkt_num" : 31967482, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:30:10.200694", "pkt_num" : 31967482, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:30:24.904906", "pkt_num" : 31994898, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:30:51.856049", "pkt_num" : 32039219, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:31:10.205309", "pkt_num" : 32070494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:31:10.205309", "pkt_num" : 32070494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:31:17.391848", "pkt_num" : 32083157, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.28.0.17:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:31:20.397934", "pkt_num" : 32087733, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.28.0.17:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:32:10.210049", "pkt_num" : 32168448, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:32:10.210049", "pkt_num" : 32168448, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:33:10.210875", "pkt_num" : 32273425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:33:10.210875", "pkt_num" : 32273425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:33:18.921820", "pkt_num" : 32287952, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:33:55.313219", "pkt_num" : 32352729, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:34:10.214430", "pkt_num" : 32376670, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:34:10.214430", "pkt_num" : 32376670, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:34:27.244544", "pkt_num" : 32402218, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:35:10.226185", "pkt_num" : 32478669, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:35:10.226185", "pkt_num" : 32478669, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.596981", "pkt_num" : 32530668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.598830", "pkt_num" : 32530669, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.599714", "pkt_num" : 32530670, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.600712", "pkt_num" : 32530672, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.654676", "pkt_num" : 32530727, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:35:39.674879", "pkt_num" : 32530750, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 576, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-17:36:39.079879", "pkt_num" : 32622920, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:38:01.642854", "pkt_num" : 32759404, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:38:10.235897", "pkt_num" : 32773862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:38:10.235897", "pkt_num" : 32773862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:39:10.233368", "pkt_num" : 32878398, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:39:10.233368", "pkt_num" : 32878398, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:39:43.506827", "pkt_num" : 33030777, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:41:10.249779", "pkt_num" : 33992095, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:41:10.249779", "pkt_num" : 33992095, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:41:41.211457", "pkt_num" : 34109310, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:41:58.582437", "pkt_num" : 34128102, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:02.592241", "pkt_num" : 34132309, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:10.242580", "pkt_num" : 34138900, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:42:10.242580", "pkt_num" : 34138900, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:42:10.251268", "pkt_num" : 34138938, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:42:10.251268", "pkt_num" : 34138938, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147533, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147535, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147536, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147537, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:22.897335", "pkt_num" : 34147538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:26.917340", "pkt_num" : 34150336, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:26.917340", "pkt_num" : 34150337, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:32.347505", "pkt_num" : 34154746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:36.067817", "pkt_num" : 34156350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:42:36.067818", "pkt_num" : 34156351, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:43:10.256694", "pkt_num" : 34194022, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:43:10.256694", "pkt_num" : 34194022, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.14:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:43:28.235655", "pkt_num" : 34212465, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:44:05.637165", "pkt_num" : 34242199, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:45:10.250618", "pkt_num" : 34300659, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:45:10.250618", "pkt_num" : 34300659, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:45:25.146311", "pkt_num" : 34316568, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:46:06.587126", "pkt_num" : 34349707, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:47:10.257167", "pkt_num" : 34411137, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:47:10.257167", "pkt_num" : 34411137, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:47:45.175639", "pkt_num" : 34449419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:48:10.261370", "pkt_num" : 34480064, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-17:48:10.261370", "pkt_num" : 34480064, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-17:49:33.660130", "pkt_num" : 34562222, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:50:39.339037", "pkt_num" : 34620268, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "103.116.78.151:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:50:39.598760", "pkt_num" : 34620339, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "103.116.78.151:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:50:39.601680", "pkt_num" : 34620340, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "103.116.78.151:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:51:28.825172", "pkt_num" : 34657886, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:54:55.092571", "pkt_num" : 34808293, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:56:09.925638", "pkt_num" : 34859210, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:57:43.439308", "pkt_num" : 34929043, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-17:59:12.233873", "pkt_num" : 34994345, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:59:24.208414", "pkt_num" : 35005562, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:59:25.311464", "pkt_num" : 35006547, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-17:59:33.543503", "pkt_num" : 35011485, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:00:13.505113", "pkt_num" : 35046396, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:00:14.277274", "pkt_num" : 35046887, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.95.146.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:00:14.280889", "pkt_num" : 35046888, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.95.146.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:00:14.287097", "pkt_num" : 35046891, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.95.146.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:00:14.289039", "pkt_num" : 35046892, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.95.146.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:01:08.255599", "pkt_num" : 35083910, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:08.616635", "pkt_num" : 35084531, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:09.591305", "pkt_num" : 35085381, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:09.591305", "pkt_num" : 35085382, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:12.636583", "pkt_num" : 35086667, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:12.636583", "pkt_num" : 35086668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:17.709116", "pkt_num" : 35091814, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:17.711355", "pkt_num" : 35091815, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:01:22.638527", "pkt_num" : 35096270, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.94.6:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/21-18:03:22.092424", "pkt_num" : 35183775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:03:29.702726", "pkt_num" : 35192725, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:03:45.803414", "pkt_num" : 35206668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:05:03.236554", "pkt_num" : 35279313, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:07:10.324656", "pkt_num" : 35376013, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:07:10.324656", "pkt_num" : 35376013, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:07:34.002395", "pkt_num" : 35392536, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:09:10.331296", "pkt_num" : 35466290, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:09:10.331296", "pkt_num" : 35466290, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:09:21.926555", "pkt_num" : 35473294, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:10:27.149170", "pkt_num" : 35518551, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:11:10.338227", "pkt_num" : 35543110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:11:10.338227", "pkt_num" : 35543110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:11:22.101294", "pkt_num" : 35549340, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:12:10.339971", "pkt_num" : 35582164, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:12:10.339971", "pkt_num" : 35582164, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:12:10.342273", "pkt_num" : 35582179, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:12:10.342273", "pkt_num" : 35582179, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:13:10.344366", "pkt_num" : 35619076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:13:10.344366", "pkt_num" : 35619076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:13:53.784082", "pkt_num" : 35652501, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.240.64:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:13:53.794204", "pkt_num" : 35652503, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.240.64:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:13:53.814935", "pkt_num" : 35652510, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.240.64:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:14:10.347582", "pkt_num" : 35663920, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:14:10.347582", "pkt_num" : 35663920, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.15:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:15:30.001159", "pkt_num" : 35721645, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:16:10.349321", "pkt_num" : 35754948, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:16:10.349321", "pkt_num" : 35754948, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:16:55.434328", "pkt_num" : 35790655, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:17:10.349355", "pkt_num" : 35803523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:17:10.349355", "pkt_num" : 35803523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:18:10.360034", "pkt_num" : 35850169, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:18:10.360034", "pkt_num" : 35850169, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:18:59.489406", "pkt_num" : 35884259, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:20:10.379214", "pkt_num" : 35939613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:20:10.379214", "pkt_num" : 35939613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:21:42.335612", "pkt_num" : 36002413, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:23:10.369211", "pkt_num" : 36061616, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:23:10.369211", "pkt_num" : 36061616, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:25:44.905542", "pkt_num" : 36162182, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:26:29.208113", "pkt_num" : 36193280, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:27:10.376035", "pkt_num" : 36224375, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:27:10.376035", "pkt_num" : 36224375, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:28:21.061282", "pkt_num" : 36269789, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:28:30.231708", "pkt_num" : 36274297, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:29:10.391239", "pkt_num" : 36300523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:29:10.391239", "pkt_num" : 36300523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:29:11.003279", "pkt_num" : 36300808, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:30:28.936295", "pkt_num" : 36453428, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:31:13.638028", "pkt_num" : 36495098, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:32:10.405726", "pkt_num" : 36533307, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:32:10.405726", "pkt_num" : 36533307, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.146:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:32:23.600702", "pkt_num" : 36541861, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:33:10.392854", "pkt_num" : 36573608, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:33:10.392854", "pkt_num" : 36573608, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.98.87.145:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:36:10.403658", "pkt_num" : 36700054, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:36:10.403658", "pkt_num" : 36700054, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:36:39.160024", "pkt_num" : 36716383, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "202.112.237.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:37:10.404865", "pkt_num" : 36734708, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:37:10.404865", "pkt_num" : 36734708, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:37:32.092983", "pkt_num" : 36748866, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:38:10.409539", "pkt_num" : 36775085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:38:10.409539", "pkt_num" : 36775085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:38:48.515792", "pkt_num" : 36816530, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:39:10.411031", "pkt_num" : 36832657, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:39:10.411031", "pkt_num" : 36832657, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:39:32.037674", "pkt_num" : 36845710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:40:10.413556", "pkt_num" : 36869919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:40:10.413556", "pkt_num" : 36869919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:41:40.852725", "pkt_num" : 36924872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:43:24.716718", "pkt_num" : 37005520, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.141.9.110:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:44:05.328273", "pkt_num" : 37031525, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:44:10.420942", "pkt_num" : 37035016, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:44:10.420942", "pkt_num" : 37035016, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.154:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:44:11.538485", "pkt_num" : 37035455, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:45:46.222394", "pkt_num" : 37098913, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:47:10.434688", "pkt_num" : 37161060, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:47:10.434688", "pkt_num" : 37161060, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:48:10.436844", "pkt_num" : 37206594, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:48:10.436844", "pkt_num" : 37206594, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:50:00.512200", "pkt_num" : 37281357, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:50:26.853209", "pkt_num" : 37299721, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:50:30.903335", "pkt_num" : 37301290, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:53:10.450404", "pkt_num" : 37402677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:53:10.450404", "pkt_num" : 37402677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:54:46.913496", "pkt_num" : 37471086, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:54:47.803601", "pkt_num" : 37471327, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:55:10.453762", "pkt_num" : 37487481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:55:10.453762", "pkt_num" : 37487481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.227.20:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:55:34.625353", "pkt_num" : 37510785, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:56:25.037275", "pkt_num" : 37544711, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:57:10.459626", "pkt_num" : 37571344, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:57:10.459626", "pkt_num" : 37571344, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:57:47.733416", "pkt_num" : 37592301, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-18:57:59.140992", "pkt_num" : 37599593, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:58:10.462199", "pkt_num" : 37607810, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:58:10.462199", "pkt_num" : 37607810, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-18:58:41.342695", "pkt_num" : 37634160, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-18:59:10.463409", "pkt_num" : 37653988, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:366:11", "action" : "allow" } +{ "timestamp" : "08/21-18:59:10.463409", "pkt_num" : 37653988, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 60, "dir" : "S2C", "src_ap" : "185.93.41.55:0", "dst_ap" : "192.142.226.153:0", "rule" : "1:384:8", "action" : "allow" } +{ "timestamp" : "08/21-19:00:49.157616", "pkt_num" : 37730931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:02:36.311871", "pkt_num" : 37807838, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:04:24.156114", "pkt_num" : 37874835, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:03.367552", "pkt_num" : 37898755, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:19.808713", "pkt_num" : 37910768, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:29.108575", "pkt_num" : 37916734, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:46.329423", "pkt_num" : 37929931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:47.209514", "pkt_num" : 37930277, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:05:59.679858", "pkt_num" : 37938552, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:06:03.119993", "pkt_num" : 37940990, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:06:12.010239", "pkt_num" : 37945869, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:06:17.350410", "pkt_num" : 37949693, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:06:42.091450", "pkt_num" : 37965749, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:06:59.892231", "pkt_num" : 37974652, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:07:07.922722", "pkt_num" : 37978708, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.110.206:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:09:31.868109", "pkt_num" : 38063908, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:09:38.427016", "pkt_num" : 38069092, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:10:26.100429", "pkt_num" : 38101152, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:12:27.585050", "pkt_num" : 38179710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:13:57.298617", "pkt_num" : 38226710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:40.030282", "pkt_num" : 38249494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:40.710312", "pkt_num" : 38249733, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:41.060329", "pkt_num" : 38249854, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:41.140300", "pkt_num" : 38249883, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:41.390316", "pkt_num" : 38249967, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:41.410220", "pkt_num" : 38249979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:41.600285", "pkt_num" : 38250019, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:42.040435", "pkt_num" : 38250155, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:42.100284", "pkt_num" : 38250177, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:42.150428", "pkt_num" : 38250187, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:42.420368", "pkt_num" : 38250322, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:42.880528", "pkt_num" : 38250498, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:43.110377", "pkt_num" : 38250587, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:43.290370", "pkt_num" : 38250627, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:44.670467", "pkt_num" : 38252124, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:44.690416", "pkt_num" : 38252143, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:44.720464", "pkt_num" : 38252160, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:44.970493", "pkt_num" : 38252206, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:45.760686", "pkt_num" : 38252347, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:46.070530", "pkt_num" : 38252428, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:46.890783", "pkt_num" : 38252630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:47.200560", "pkt_num" : 38252737, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:47.210575", "pkt_num" : 38252742, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:47.640592", "pkt_num" : 38252882, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:48.950558", "pkt_num" : 38253908, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:51.090617", "pkt_num" : 38254961, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:51.640688", "pkt_num" : 38255136, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:51.770710", "pkt_num" : 38255182, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:51.950696", "pkt_num" : 38255211, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:52.290763", "pkt_num" : 38255318, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:52.821076", "pkt_num" : 38255481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:53.360841", "pkt_num" : 38255766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:54.450759", "pkt_num" : 38257256, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:56.180984", "pkt_num" : 38258306, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:57.320896", "pkt_num" : 38258835, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:57.470994", "pkt_num" : 38258876, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:57.780981", "pkt_num" : 38258952, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:57.980978", "pkt_num" : 38259003, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:58.250926", "pkt_num" : 38259407, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:14:59.461046", "pkt_num" : 38260385, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:00.441244", "pkt_num" : 38260759, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:00.601060", "pkt_num" : 38260816, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:01.091043", "pkt_num" : 38260920, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:01.561092", "pkt_num" : 38261068, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:01.631072", "pkt_num" : 38261083, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:01.671089", "pkt_num" : 38261096, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:02.251248", "pkt_num" : 38261304, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:02.601049", "pkt_num" : 38261429, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:03.521198", "pkt_num" : 38262845, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:03.641202", "pkt_num" : 38262931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:04.021261", "pkt_num" : 38263048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:04.121181", "pkt_num" : 38263092, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:04.891219", "pkt_num" : 38263594, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:05.471345", "pkt_num" : 38263737, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:07.951361", "pkt_num" : 38266037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:08.041367", "pkt_num" : 38266076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:08.461395", "pkt_num" : 38266263, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:09.911398", "pkt_num" : 38266884, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:10.101528", "pkt_num" : 38266931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:10.131482", "pkt_num" : 38266939, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:10.241585", "pkt_num" : 38266975, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:11.211554", "pkt_num" : 38267255, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:11.591672", "pkt_num" : 38267397, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:13.051702", "pkt_num" : 38268923, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:14.271586", "pkt_num" : 38269667, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:15.361624", "pkt_num" : 38270062, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:15.451625", "pkt_num" : 38270086, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:16.141649", "pkt_num" : 38270300, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:16.651640", "pkt_num" : 38270480, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:17.261745", "pkt_num" : 38271501, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:17.281618", "pkt_num" : 38271505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:17.781782", "pkt_num" : 38271677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:17.861749", "pkt_num" : 38271704, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:18.021822", "pkt_num" : 38271747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:18.331768", "pkt_num" : 38271822, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:18.431803", "pkt_num" : 38271841, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:18.711883", "pkt_num" : 38271914, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:18.811778", "pkt_num" : 38271951, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:19.571842", "pkt_num" : 38272193, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:20.991847", "pkt_num" : 38272632, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:21.711811", "pkt_num" : 38273709, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:21.821907", "pkt_num" : 38273755, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:21.891838", "pkt_num" : 38273774, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:22.561977", "pkt_num" : 38273979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:22.852188", "pkt_num" : 38274064, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:22.901974", "pkt_num" : 38274098, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:23.832004", "pkt_num" : 38274502, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:24.161981", "pkt_num" : 38274649, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:24.582050", "pkt_num" : 38274892, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:24.902043", "pkt_num" : 38275024, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:25.422070", "pkt_num" : 38275159, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:27.252124", "pkt_num" : 38276747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:27.682172", "pkt_num" : 38277081, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:27.802182", "pkt_num" : 38277286, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:28.482203", "pkt_num" : 38278133, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:28.492240", "pkt_num" : 38278160, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:29.442254", "pkt_num" : 38279717, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:30.882197", "pkt_num" : 38281068, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:31.462283", "pkt_num" : 38281522, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:32.422249", "pkt_num" : 38281784, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:33.342262", "pkt_num" : 38282106, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:33.652454", "pkt_num" : 38282171, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:34.162446", "pkt_num" : 38282292, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:35.522517", "pkt_num" : 38282740, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:36.112496", "pkt_num" : 38282865, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:36.312508", "pkt_num" : 38282921, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:36.392480", "pkt_num" : 38282943, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:36.852482", "pkt_num" : 38283042, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:37.662544", "pkt_num" : 38283355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:38.452620", "pkt_num" : 38283571, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:38.692550", "pkt_num" : 38283631, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:39.592508", "pkt_num" : 38284695, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:40.072589", "pkt_num" : 38285703, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:40.202684", "pkt_num" : 38285767, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:40.642647", "pkt_num" : 38285873, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:41.252743", "pkt_num" : 38286040, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:41.752741", "pkt_num" : 38286252, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:42.662715", "pkt_num" : 38286561, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:42.662716", "pkt_num" : 38286562, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:43.132756", "pkt_num" : 38286719, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:43.272741", "pkt_num" : 38286766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:43.482753", "pkt_num" : 38286814, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:43.492777", "pkt_num" : 38286817, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:44.402701", "pkt_num" : 38288065, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:44.792752", "pkt_num" : 38288517, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:45.042748", "pkt_num" : 38288584, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:45.632803", "pkt_num" : 38288760, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:46.322770", "pkt_num" : 38288944, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:46.462810", "pkt_num" : 38288978, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:47.502886", "pkt_num" : 38289295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:47.612901", "pkt_num" : 38289317, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:48.303909", "pkt_num" : 38289473, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:49.363008", "pkt_num" : 38290755, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:50.022983", "pkt_num" : 38290964, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:50.113027", "pkt_num" : 38290995, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:50.403019", "pkt_num" : 38291075, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:50.693022", "pkt_num" : 38291157, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:51.233087", "pkt_num" : 38291282, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:52.473188", "pkt_num" : 38291712, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:52.933184", "pkt_num" : 38291836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:54.243210", "pkt_num" : 38293326, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:54.303184", "pkt_num" : 38293348, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:54.343263", "pkt_num" : 38293355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:54.453403", "pkt_num" : 38293397, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:57.263180", "pkt_num" : 38294552, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:57.453181", "pkt_num" : 38294613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:57.953310", "pkt_num" : 38294767, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:58.993526", "pkt_num" : 38295874, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:59.033487", "pkt_num" : 38295895, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:15:59.133361", "pkt_num" : 38295931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:00.823477", "pkt_num" : 38296487, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:01.053383", "pkt_num" : 38296540, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:02.373461", "pkt_num" : 38296913, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:02.743462", "pkt_num" : 38297371, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:02.893422", "pkt_num" : 38297839, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:03.033636", "pkt_num" : 38298137, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:03.563569", "pkt_num" : 38298328, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:04.243460", "pkt_num" : 38298591, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:05.853681", "pkt_num" : 38299181, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:05.873642", "pkt_num" : 38299187, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:05.983798", "pkt_num" : 38299212, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:06.093816", "pkt_num" : 38299263, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:06.973629", "pkt_num" : 38299729, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:07.433622", "pkt_num" : 38300367, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:07.983616", "pkt_num" : 38300863, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:08.173862", "pkt_num" : 38300933, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:08.983700", "pkt_num" : 38301271, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:09.773739", "pkt_num" : 38301621, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:11.033826", "pkt_num" : 38302033, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:11.493867", "pkt_num" : 38302158, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:13.343908", "pkt_num" : 38303674, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:14.583935", "pkt_num" : 38304321, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:14.863991", "pkt_num" : 38304425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:16.653938", "pkt_num" : 38305820, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:17.204061", "pkt_num" : 38306111, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:17.704065", "pkt_num" : 38306334, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:18.604124", "pkt_num" : 38306604, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:18.614231", "pkt_num" : 38306607, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:18.854250", "pkt_num" : 38306668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:19.144187", "pkt_num" : 38306735, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:19.564188", "pkt_num" : 38306848, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:20.044198", "pkt_num" : 38307071, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:20.174182", "pkt_num" : 38307119, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:20.624228", "pkt_num" : 38307283, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:21.444202", "pkt_num" : 38309048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:21.464216", "pkt_num" : 38309092, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:21.644217", "pkt_num" : 38309613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:22.114258", "pkt_num" : 38309811, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:22.664260", "pkt_num" : 38309984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:23.784284", "pkt_num" : 38310277, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:23.964286", "pkt_num" : 38310326, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:24.384362", "pkt_num" : 38310452, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:24.534400", "pkt_num" : 38310492, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:24.904417", "pkt_num" : 38310702, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:25.974390", "pkt_num" : 38311331, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:26.334490", "pkt_num" : 38312316, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:27.204468", "pkt_num" : 38312747, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:27.544550", "pkt_num" : 38312838, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:27.644442", "pkt_num" : 38312865, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:28.754480", "pkt_num" : 38313163, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:28.784457", "pkt_num" : 38313183, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:29.724509", "pkt_num" : 38313446, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.164557", "pkt_num" : 38313612, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.304585", "pkt_num" : 38313651, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.374806", "pkt_num" : 38313684, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.394576", "pkt_num" : 38313691, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.624737", "pkt_num" : 38313782, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:30.834588", "pkt_num" : 38314246, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:31.254735", "pkt_num" : 38315272, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:32.534655", "pkt_num" : 38315615, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:32.924632", "pkt_num" : 38315748, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:33.754851", "pkt_num" : 38316085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:34.204720", "pkt_num" : 38316209, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:34.224844", "pkt_num" : 38316212, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:36.224761", "pkt_num" : 38318159, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:38.174828", "pkt_num" : 38318683, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:38.384845", "pkt_num" : 38318736, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:38.584964", "pkt_num" : 38318803, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:39.844973", "pkt_num" : 38319297, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:40.134965", "pkt_num" : 38319433, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:40.775149", "pkt_num" : 38319652, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:40.985054", "pkt_num" : 38319692, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:41.084889", "pkt_num" : 38319721, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:41.114943", "pkt_num" : 38319734, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:41.375003", "pkt_num" : 38319793, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:42.305325", "pkt_num" : 38320118, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:43.075032", "pkt_num" : 38320385, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:43.105025", "pkt_num" : 38320394, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:43.975132", "pkt_num" : 38320726, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:45.125104", "pkt_num" : 38322360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:45.475066", "pkt_num" : 38322521, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:45.495109", "pkt_num" : 38322525, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:45.605308", "pkt_num" : 38322573, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:46.095230", "pkt_num" : 38322762, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:46.555187", "pkt_num" : 38322913, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:47.165225", "pkt_num" : 38323116, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:48.825347", "pkt_num" : 38323868, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:49.045182", "pkt_num" : 38324379, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:49.155311", "pkt_num" : 38324784, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:49.185257", "pkt_num" : 38324886, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:49.835358", "pkt_num" : 38325378, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:50.855389", "pkt_num" : 38325645, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:52.045440", "pkt_num" : 38325940, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:52.255378", "pkt_num" : 38325991, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:16:52.315427", "pkt_num" : 38326010, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.148.15:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:18:13.478723", "pkt_num" : 38379112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:21:38.496619", "pkt_num" : 38512592, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:23:51.320794", "pkt_num" : 38597391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:24:02.492414", "pkt_num" : 38605014, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:24:28.489588", "pkt_num" : 38622258, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "182.100.46.196:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:24:31.478770", "pkt_num" : 38624560, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "182.100.46.196:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:24:32.490870", "pkt_num" : 38624903, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "182.100.46.196:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:24:35.481891", "pkt_num" : 38627484, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "182.100.46.196:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:26:19.395051", "pkt_num" : 38692519, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "117.33.161.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:26:20.928319", "pkt_num" : 38692971, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:26:23.397095", "pkt_num" : 38693790, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "117.33.161.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:26:23.406393", "pkt_num" : 38693794, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "117.33.161.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:26:27.408458", "pkt_num" : 38696438, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "117.33.161.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:31:44.000380", "pkt_num" : 38878830, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:32:59.353271", "pkt_num" : 38936630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:33:42.594959", "pkt_num" : 38962774, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:33:47.205136", "pkt_num" : 38975344, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:34:09.356185", "pkt_num" : 39029516, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:35:49.708463", "pkt_num" : 39086635, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:42:06.324693", "pkt_num" : 39366834, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:45:44.503331", "pkt_num" : 39505124, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:45:45.433592", "pkt_num" : 39505337, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:52:51.980085", "pkt_num" : 39755781, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:53:08.680740", "pkt_num" : 39767579, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:54:14.461109", "pkt_num" : 39833877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "168.235.81.158:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:54:19.465366", "pkt_num" : 39837254, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "168.235.81.158:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-19:54:48.964723", "pkt_num" : 39866830, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:55:19.656078", "pkt_num" : 39898226, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:56:10.237987", "pkt_num" : 39932366, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-19:58:45.354195", "pkt_num" : 40026288, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:01:36.260740", "pkt_num" : 40126123, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:01:44.420951", "pkt_num" : 40131419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:02:25.822083", "pkt_num" : 40158075, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.32.15:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:02:25.824030", "pkt_num" : 40158080, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.32.15:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:02:25.824955", "pkt_num" : 40158081, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.232.32.15:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:06:09.978120", "pkt_num" : 40334773, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.120.149.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:06:09.978120", "pkt_num" : 40334774, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.120.149.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:06:09.978120", "pkt_num" : 40334775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.120.149.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:06:09.978120", "pkt_num" : 40334776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.120.149.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:10:01.110429", "pkt_num" : 40471527, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:10:51.011841", "pkt_num" : 40503754, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:11:04.018448", "pkt_num" : 40511780, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:15:18.702921", "pkt_num" : 40663210, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:15:32.043427", "pkt_num" : 40670367, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:17:54.119055", "pkt_num" : 40760771, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:18:32.900551", "pkt_num" : 40783403, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:20:32.374232", "pkt_num" : 40938797, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.1.161:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:21:05.385844", "pkt_num" : 40957001, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "50.116.23.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:21:05.636719", "pkt_num" : 40957109, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "50.116.23.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:21:06.646928", "pkt_num" : 40957656, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "50.116.23.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:21:06.900874", "pkt_num" : 40957882, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "50.116.23.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:21:07.726832", "pkt_num" : 40958243, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:27:28.658884", "pkt_num" : 41213461, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:30:21.098323", "pkt_num" : 41313728, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:30:39.468879", "pkt_num" : 41321936, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:31:46.443112", "pkt_num" : 41365317, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:31:47.951063", "pkt_num" : 41365695, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:32:37.303502", "pkt_num" : 41395582, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.96.108:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:32:37.303502", "pkt_num" : 41395583, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.96.108:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:32:37.312353", "pkt_num" : 41395585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.96.108:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:33:13.555296", "pkt_num" : 41416116, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "167.88.125.122:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:33:18.565502", "pkt_num" : 41418930, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "167.88.125.122:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:34:43.440796", "pkt_num" : 41468068, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:34:53.998919", "pkt_num" : 41473617, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:35:52.461291", "pkt_num" : 41508793, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:39:08.888976", "pkt_num" : 41616708, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:39:40.658372", "pkt_num" : 41632728, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "75.80.136.51:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:39:45.688526", "pkt_num" : 41635979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "75.80.136.51:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:39:51.328774", "pkt_num" : 41638903, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "75.80.136.51:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:41:40.744887", "pkt_num" : 41713380, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:44:19.721070", "pkt_num" : 41815652, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:44:50.192250", "pkt_num" : 41838037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:46:22.543443", "pkt_num" : 41897292, "proto" : "TCP", "pkt_gen" : "stream_tcp", "pkt_len" : 211, "dir" : "C2S", "src_ap" : "107.175.242.95:43852", "dst_ap" : "185.93.41.55:80", "rule" : "1:59948:1", "action" : "allow" } +{ "timestamp" : "08/21-20:48:42.186717", "pkt_num" : 41982346, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:52:26.276603", "pkt_num" : 42121203, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:52:37.360273", "pkt_num" : 42125172, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-20:53:01.332008", "pkt_num" : 42141398, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:55:45.187896", "pkt_num" : 42230039, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529558", "pkt_num" : 42291978, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529558", "pkt_num" : 42291979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529558", "pkt_num" : 42291980, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529558", "pkt_num" : 42291981, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529559", "pkt_num" : 42291982, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:01.529559", "pkt_num" : 42291983, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 80, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:05.049727", "pkt_num" : 42293657, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:05.049728", "pkt_num" : 42293658, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 119, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:11.573691", "pkt_num" : 42296630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.118.42.254:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-20:58:19.274085", "pkt_num" : 42300256, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:00:42.470102", "pkt_num" : 42386559, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.66:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:00:44.444211", "pkt_num" : 42387162, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.59:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:00:44.602386", "pkt_num" : 42387276, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.60:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:02:55.014732", "pkt_num" : 42451344, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:03:06.254651", "pkt_num" : 42456186, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.187.227.119:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:03:11.255472", "pkt_num" : 42458585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.187.227.119:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:03:26.865245", "pkt_num" : 42465098, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:05:04.806905", "pkt_num" : 42512974, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:05:14.050204", "pkt_num" : 42517353, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:10:03.091672", "pkt_num" : 42656769, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:10:46.173561", "pkt_num" : 42677231, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.187.227.121:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:10:51.209814", "pkt_num" : 42680064, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.187.227.121:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:13:28.459848", "pkt_num" : 42765926, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:13:33.395145", "pkt_num" : 42768444, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:15:10.372727", "pkt_num" : 42818976, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "50.116.23.150:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:16:02.975826", "pkt_num" : 42845320, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:17:11.940709", "pkt_num" : 42875956, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:18:18.287912", "pkt_num" : 42907227, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:18:56.292666", "pkt_num" : 42922494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:19:01.674254", "pkt_num" : 42924773, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:20:42.144048", "pkt_num" : 42976866, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:21:02.097643", "pkt_num" : 42988052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:21:04.835036", "pkt_num" : 42990727, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:21:13.807943", "pkt_num" : 42995744, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:22:50.541846", "pkt_num" : 43043094, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:23:57.734488", "pkt_num" : 43080915, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.171.130.26:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:23:58.733724", "pkt_num" : 43081154, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.171.130.26:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:24:01.739903", "pkt_num" : 43081504, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.171.130.26:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:24:02.739714", "pkt_num" : 43082806, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.171.130.26:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:25:39.558319", "pkt_num" : 43126078, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:28:33.595320", "pkt_num" : 43220140, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.70.75.102:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:28:33.599694", "pkt_num" : 43220142, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.70.75.102:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:28:33.603128", "pkt_num" : 43220143, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.70.75.102:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:28:33.603462", "pkt_num" : 43220144, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.70.75.102:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:28:40.615436", "pkt_num" : 43223388, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:29:06.766377", "pkt_num" : 43235504, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:30:49.820417", "pkt_num" : 43290578, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:34:45.920008", "pkt_num" : 43408637, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:34:51.709964", "pkt_num" : 43410967, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:34:56.960227", "pkt_num" : 43413910, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:35:03.510884", "pkt_num" : 43420314, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:37:29.976415", "pkt_num" : 43461606, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:37:50.617021", "pkt_num" : 43468797, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:39:48.811625", "pkt_num" : 43499677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:39:56.461834", "pkt_num" : 43502595, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:42:06.796923", "pkt_num" : 43530975, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:44:20.242225", "pkt_num" : 43556012, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:44:21.202314", "pkt_num" : 43556160, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:48:18.551524", "pkt_num" : 43606164, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:49:03.663463", "pkt_num" : 43613729, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:49:32.994458", "pkt_num" : 43619169, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:52:11.600846", "pkt_num" : 43656118, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:52:54.752360", "pkt_num" : 43664149, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:54:12.085524", "pkt_num" : 43678347, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:54:20.685760", "pkt_num" : 43680265, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-21:56:45.596609", "pkt_num" : 43706033, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "125.39.141.133:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:56:45.600725", "pkt_num" : 43706037, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "125.39.141.133:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:56:45.605584", "pkt_num" : 43706038, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "125.39.141.133:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:56:45.616540", "pkt_num" : 43706041, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "125.39.141.133:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-21:57:10.382526", "pkt_num" : 43710455, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:00:41.590798", "pkt_num" : 43749705, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:01:22.602499", "pkt_num" : 43760831, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:02:27.684962", "pkt_num" : 43773165, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:02:39.685391", "pkt_num" : 43775183, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:04:53.305657", "pkt_num" : 43800082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:05:49.823386", "pkt_num" : 43813940, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:06:03.293533", "pkt_num" : 43816144, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:07:10.506147", "pkt_num" : 43829143, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:08:26.979021", "pkt_num" : 43842765, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:08:50.810072", "pkt_num" : 43846509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:09:08.540688", "pkt_num" : 43850604, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:10:52.194818", "pkt_num" : 43872345, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:11:03.635320", "pkt_num" : 43874392, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:11:48.356962", "pkt_num" : 43881518, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:14:16.812615", "pkt_num" : 43908658, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.47.254.178:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:14:21.827711", "pkt_num" : 43909554, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.47.254.178:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:14:52.476267", "pkt_num" : 43915855, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:17:45.903901", "pkt_num" : 43948992, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "113.57.9.147:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:17:45.907717", "pkt_num" : 43948993, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "113.57.9.147:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:17:45.914715", "pkt_num" : 43948994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "113.57.9.147:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:17:45.915519", "pkt_num" : 43948995, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "113.57.9.147:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:18:26.312655", "pkt_num" : 43956061, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:18:48.113441", "pkt_num" : 43963387, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:19:21.124694", "pkt_num" : 43970371, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:24:15.506442", "pkt_num" : 44033861, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:24:48.377656", "pkt_num" : 44040742, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:26:35.941669", "pkt_num" : 44063283, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:27:00.921954", "pkt_num" : 44067498, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:29:14.078042", "pkt_num" : 44093349, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:29:58.369538", "pkt_num" : 44101497, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:31:32.493506", "pkt_num" : 44123402, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:36:47.435937", "pkt_num" : 44196391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:37:33.987596", "pkt_num" : 44204775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:39:07.261320", "pkt_num" : 44220244, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:42:27.399195", "pkt_num" : 44268943, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "194.195.122.95:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:43:27.331366", "pkt_num" : 44313347, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:43:30.522169", "pkt_num" : 44315628, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.181.191.16:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:43:35.540339", "pkt_num" : 44319257, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.181.191.16:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:45:56.407283", "pkt_num" : 44388509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:46:45.679405", "pkt_num" : 44398342, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:47:05.719919", "pkt_num" : 44402235, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:49:53.606550", "pkt_num" : 44434465, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:51:29.541114", "pkt_num" : 44455005, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.179.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:51:29.541114", "pkt_num" : 44455006, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.179.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:51:33.543420", "pkt_num" : 44456076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.179.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:51:33.543420", "pkt_num" : 44456077, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "157.185.179.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:52:44.183401", "pkt_num" : 44469189, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:52:44.983276", "pkt_num" : 44469318, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:53:26.555107", "pkt_num" : 44478083, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:53:44.615672", "pkt_num" : 44481062, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:54:56.824589", "pkt_num" : 44495025, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:55:18.947410", "pkt_num" : 44499610, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:56:09.247926", "pkt_num" : 44511153, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.91.107.75:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:56:14.250121", "pkt_num" : 44512135, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.91.107.75:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-22:56:39.722484", "pkt_num" : 44516360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:56:40.662663", "pkt_num" : 44516507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:56:46.653365", "pkt_num" : 44517285, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:11.724029", "pkt_num" : 44522794, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:12.663882", "pkt_num" : 44522932, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:25.174404", "pkt_num" : 44525811, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:40.994924", "pkt_num" : 44528760, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:44.114989", "pkt_num" : 44529201, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:54.145487", "pkt_num" : 44530852, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:57:54.305422", "pkt_num" : 44530909, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:58:19.756633", "pkt_num" : 44535967, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:58:25.546703", "pkt_num" : 44536879, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.168.40.211:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:58:26.786878", "pkt_num" : 44536987, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-22:59:45.009817", "pkt_num" : 44550822, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:00:54.692448", "pkt_num" : 44562374, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:08.140797", "pkt_num" : 44564663, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "170.39.227.143:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:08.140797", "pkt_num" : 44564664, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "170.39.227.143:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:08.142727", "pkt_num" : 44564665, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "170.39.227.143:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:08.142727", "pkt_num" : 44564666, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "170.39.227.143:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:37.757130", "pkt_num" : 44570360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "198.148.92.176:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:40.114484", "pkt_num" : 44570710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:42.759041", "pkt_num" : 44571166, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "198.148.92.176:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:01:44.494480", "pkt_num" : 44571587, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:03:38.618963", "pkt_num" : 44601794, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:04:20.906273", "pkt_num" : 44610844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "184.75.215.61:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:04:25.908407", "pkt_num" : 44611728, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "184.75.215.61:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:04:43.116423", "pkt_num" : 44614621, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:05:39.323807", "pkt_num" : 44625101, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:06:07.824731", "pkt_num" : 44631896, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:06:40.749041", "pkt_num" : 44639820, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.111.254.249:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:06:45.750316", "pkt_num" : 44640761, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.111.254.249:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:08:57.860834", "pkt_num" : 44666635, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.152.33.91:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:09:02.862123", "pkt_num" : 44667845, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.152.33.91:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:09:54.737591", "pkt_num" : 44678916, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "43.157.136.212:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:09:55.738592", "pkt_num" : 44679148, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "43.157.136.212:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:09:57.555670", "pkt_num" : 44679549, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "43.157.136.212:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:09:58.556387", "pkt_num" : 44679715, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "43.157.136.212:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:12:22.349139", "pkt_num" : 44707770, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.169.251:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:12:27.350195", "pkt_num" : 44708474, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.169.251:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:15:21.410980", "pkt_num" : 44742007, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "176.124.32.11:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:16:29.719190", "pkt_num" : 44753369, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.118.42.254:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:16:56.450380", "pkt_num" : 44757569, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:19:53.257173", "pkt_num" : 44791161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:23:41.716075", "pkt_num" : 44844053, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:24:37.068464", "pkt_num" : 44853887, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:24:56.628981", "pkt_num" : 44857218, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:25:40.940985", "pkt_num" : 44865217, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:25:52.211207", "pkt_num" : 44866713, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:28:00.047306", "pkt_num" : 44891574, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "162.220.51.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:28:05.049432", "pkt_num" : 44892247, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "162.220.51.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:29:38.060282", "pkt_num" : 44908150, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:30:44.752596", "pkt_num" : 44935680, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:30:57.273359", "pkt_num" : 44948960, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:31:01.603501", "pkt_num" : 44949880, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:32:14.656295", "pkt_num" : 45061121, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:35:49.264701", "pkt_num" : 45287274, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:36:13.415585", "pkt_num" : 45291487, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:36:34.325751", "pkt_num" : 45295052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:37:19.868490", "pkt_num" : 45302813, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:40:06.114806", "pkt_num" : 45337024, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:41:00.426979", "pkt_num" : 45346393, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:42:30.270493", "pkt_num" : 45362392, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.129.61:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:47:14.481545", "pkt_num" : 45421641, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:49:17.546383", "pkt_num" : 45449296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:50:14.188792", "pkt_num" : 45461569, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:50:34.849401", "pkt_num" : 45465434, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:51:28.871679", "pkt_num" : 45481885, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:51:40.321721", "pkt_num" : 45485115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "104.166.182.132:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:53:12.005648", "pkt_num" : 45506863, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:53:28.486313", "pkt_num" : 45509835, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:54:25.878689", "pkt_num" : 45521285, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:54:50.949420", "pkt_num" : 45527758, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:55:16.060450", "pkt_num" : 45536228, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:55:39.741613", "pkt_num" : 45541836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:58:39.028359", "pkt_num" : 45575781, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/21-23:59:36.415262", "pkt_num" : 45586540, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.236.16.163:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:59:36.415435", "pkt_num" : 45586541, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.236.16.163:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/21-23:59:36.418119", "pkt_num" : 45586543, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "124.236.16.163:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:01:34.445181", "pkt_num" : 45900192, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:04:01.641199", "pkt_num" : 45936640, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:04:38.500332", "pkt_num" : 45945823, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:04:43.504538", "pkt_num" : 45947119, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:05:38.194841", "pkt_num" : 45961534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:06:00.629105", "pkt_num" : 45968931, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:08:10.450835", "pkt_num" : 45998085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:08:19.917113", "pkt_num" : 46000712, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.1.162:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:09:45.174533", "pkt_num" : 46019129, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:10:50.907188", "pkt_num" : 46035534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:11:00.407508", "pkt_num" : 46037779, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:13:44.704130", "pkt_num" : 46074389, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:14:20.473107", "pkt_num" : 46083508, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.149.234:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:14:25.473077", "pkt_num" : 46084682, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.149.234:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:15:05.267242", "pkt_num" : 46093243, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:16:01.589309", "pkt_num" : 46105663, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:17:57.341686", "pkt_num" : 46132979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.45.52.133:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:18:26.503124", "pkt_num" : 46139923, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "113.200.63.216:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:19:52.804384", "pkt_num" : 46160374, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:20:04.144978", "pkt_num" : 46163609, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:21:38.702659", "pkt_num" : 46186238, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:21:44.202873", "pkt_num" : 46187041, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:24:07.078396", "pkt_num" : 46216595, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:24:43.419870", "pkt_num" : 46224837, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:26:15.483351", "pkt_num" : 46243270, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:26:23.493763", "pkt_num" : 46244868, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:26:42.984484", "pkt_num" : 46248310, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:26:50.904873", "pkt_num" : 46249684, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:27:19.505964", "pkt_num" : 46256491, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:27:21.185935", "pkt_num" : 46256854, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:27:33.226444", "pkt_num" : 46259291, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:27:34.536613", "pkt_num" : 46259442, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:28:41.149184", "pkt_num" : 46275494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:29:10.340392", "pkt_num" : 46282053, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:29:26.571016", "pkt_num" : 46286002, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:29:28.660960", "pkt_num" : 46286256, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:29:36.571325", "pkt_num" : 46287622, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 66, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.206.142.100:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:31:38.243535", "pkt_num" : 46312744, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:35:21.690697", "pkt_num" : 46449896, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:36:32.216348", "pkt_num" : 46461163, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.115.216.137:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:36:37.217396", "pkt_num" : 46461752, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.115.216.137:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:37:11.369241", "pkt_num" : 46468045, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:37:53.550730", "pkt_num" : 46473896, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:42:39.242030", "pkt_num" : 46522523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:42:55.102676", "pkt_num" : 46524585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:43:00.303116", "pkt_num" : 46525351, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:45:25.408488", "pkt_num" : 46547228, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:34.663704", "pkt_num" : 46557504, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:34.667095", "pkt_num" : 46557505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:38.666395", "pkt_num" : 46558010, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:38.670397", "pkt_num" : 46558011, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:46.666854", "pkt_num" : 46559076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:50.667827", "pkt_num" : 46559675, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:51.677963", "pkt_num" : 46559874, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:46:55.678485", "pkt_num" : 46560531, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:47:03.700726", "pkt_num" : 46561677, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:47:07.702674", "pkt_num" : 46562215, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:47:12.703216", "pkt_num" : 46563246, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:47:16.703368", "pkt_num" : 46564082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.162.238.1:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:55:35.922510", "pkt_num" : 46650260, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:57:23.847056", "pkt_num" : 46668128, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-00:58:20.705683", "pkt_num" : 46676616, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.131.213:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-00:59:26.181683", "pkt_num" : 46686740, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:01:00.744201", "pkt_num" : 46704669, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:02:07.485460", "pkt_num" : 46721304, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.31.22.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:02:12.488643", "pkt_num" : 46722619, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.31.22.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:02:18.738520", "pkt_num" : 46724354, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:06:11.067410", "pkt_num" : 46771564, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:10:15.849916", "pkt_num" : 46818297, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "167.160.93.230:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:10:21.031129", "pkt_num" : 46819181, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "167.160.93.230:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:10:40.368193", "pkt_num" : 46821995, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:12:29.402337", "pkt_num" : 46856945, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:12:46.473056", "pkt_num" : 46859551, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:13:08.783819", "pkt_num" : 46867824, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:13:30.054673", "pkt_num" : 46871512, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:13:41.385322", "pkt_num" : 46873078, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:15:30.579535", "pkt_num" : 46893872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:16:35.112755", "pkt_num" : 46904922, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.135.148.140:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:16:40.114883", "pkt_num" : 46905489, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.135.148.140:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:17:38.148008", "pkt_num" : 46915743, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.247.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:17:44.609361", "pkt_num" : 46916808, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.247.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:19:09.228087", "pkt_num" : 46931063, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:23:55.720900", "pkt_num" : 46990082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.57.205:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:25:08.682337", "pkt_num" : 47002104, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:26:50.693832", "pkt_num" : 47017641, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:28:08.569063", "pkt_num" : 47033444, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:28:46.430666", "pkt_num" : 47039010, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:29:14.911823", "pkt_num" : 47044376, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:29:58.838119", "pkt_num" : 47052312, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.224.14.198:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:30:02.841135", "pkt_num" : 47053630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "183.224.14.198:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:30:03.143729", "pkt_num" : 47053660, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:33:57.122841", "pkt_num" : 47302959, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:35:30.586580", "pkt_num" : 47378664, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:36:05.857782", "pkt_num" : 47387464, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:37:55.862104", "pkt_num" : 47404593, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:38:17.752996", "pkt_num" : 47408505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:40:32.938256", "pkt_num" : 47434104, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:41:27.340433", "pkt_num" : 47442875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:41:29.680500", "pkt_num" : 47443354, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:42:42.820719", "pkt_num" : 47455481, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.133.64.19:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:42:43.123917", "pkt_num" : 47455509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.133.64.19:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:42:43.367838", "pkt_num" : 47455520, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.133.64.19:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:42:43.369689", "pkt_num" : 47455523, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.133.64.19:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:42:55.823911", "pkt_num" : 47457417, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:43:23.434963", "pkt_num" : 47462872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:44:41.009660", "pkt_num" : 47476085, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.14.131.156:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:44:46.012848", "pkt_num" : 47476805, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.14.131.156:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:44:53.378420", "pkt_num" : 47477822, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:48:42.097316", "pkt_num" : 47529860, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:48:48.773077", "pkt_num" : 47530746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.245.214.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:48:53.778060", "pkt_num" : 47531441, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.245.214.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:49:12.088910", "pkt_num" : 47535028, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:50:51.352459", "pkt_num" : 47551128, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:51:11.518088", "pkt_num" : 47554260, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.145.196:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:51:15.083590", "pkt_num" : 47554694, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:51:42.575267", "pkt_num" : 47558785, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:51:43.125805", "pkt_num" : 47558850, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.75:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:51:43.471728", "pkt_num" : 47558880, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.78:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-01:53:50.069494", "pkt_num" : 47579359, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:53:55.719576", "pkt_num" : 47580352, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-01:55:26.513181", "pkt_num" : 47598407, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:02:25.702583", "pkt_num" : 47713814, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.31.22.170:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:02:30.704670", "pkt_num" : 47714885, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.31.22.170:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:02:37.710094", "pkt_num" : 47715885, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:02:43.320438", "pkt_num" : 47716706, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:02:43.920244", "pkt_num" : 47716770, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:05:38.567167", "pkt_num" : 47753115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:05:46.117404", "pkt_num" : 47754628, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:07:12.061006", "pkt_num" : 47771983, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:08:39.972898", "pkt_num" : 47791209, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.223.228:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:08:45.383238", "pkt_num" : 47792321, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.223.228:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:10:00.967588", "pkt_num" : 47806823, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:11:36.671102", "pkt_num" : 47831637, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:11:48.091471", "pkt_num" : 47833272, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:12:55.464248", "pkt_num" : 47851059, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:16:57.783890", "pkt_num" : 47900340, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:18:55.377513", "pkt_num" : 47924102, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "118.113.198.159:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:18:55.389480", "pkt_num" : 47924103, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "118.113.198.159:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:18:55.404537", "pkt_num" : 47924107, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "118.113.198.159:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:18:55.651514", "pkt_num" : 47924186, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "118.113.198.159:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:19:09.338777", "pkt_num" : 47927004, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:21:02.183168", "pkt_num" : 47949777, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:22:59.717787", "pkt_num" : 47976372, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:23:07.418129", "pkt_num" : 47977695, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:23:38.339308", "pkt_num" : 47984463, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:24:03.756968", "pkt_num" : 47989657, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:24:40.582053", "pkt_num" : 47997758, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:25:06.673005", "pkt_num" : 48003122, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:27:38.778759", "pkt_num" : 48028098, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:28:11.920389", "pkt_num" : 48032752, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:31:40.008379", "pkt_num" : 48065551, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:32:32.700741", "pkt_num" : 48074447, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-02:32:32.700741", "pkt_num" : 48074448, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-02:33:27.202362", "pkt_num" : 48178915, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:36:28.461115", "pkt_num" : 48206270, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:36:41.670337", "pkt_num" : 48208171, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:36:49.040533", "pkt_num" : 48209378, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:37:10.411264", "pkt_num" : 48212629, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:40:43.117899", "pkt_num" : 48246419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 92, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "78.47.43.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:43:40.626527", "pkt_num" : 48271895, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:45:42.971303", "pkt_num" : 48290014, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:46:13.239238", "pkt_num" : 48294261, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "205.209.152.106:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:46:18.241480", "pkt_num" : 48295150, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "205.209.152.106:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:48:53.328774", "pkt_num" : 48319657, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:50:09.551684", "pkt_num" : 48332540, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:50:39.863058", "pkt_num" : 48337608, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:50:53.186269", "pkt_num" : 48339240, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:50:56.313831", "pkt_num" : 48339783, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:51:38.075439", "pkt_num" : 48345596, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:52:14.066630", "pkt_num" : 48351814, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:53:18.309190", "pkt_num" : 48362109, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:53:36.889817", "pkt_num" : 48364979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:53:39.480065", "pkt_num" : 48365282, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:54:06.762673", "pkt_num" : 48380181, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.223.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:54:12.068045", "pkt_num" : 48390825, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.63.223.186:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:54:31.321978", "pkt_num" : 48433628, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:54:48.092564", "pkt_num" : 48436424, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:54:59.548780", "pkt_num" : 48438169, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.3.163.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:55:04.548851", "pkt_num" : 48438780, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.3.163.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:57:21.078698", "pkt_num" : 48459560, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-02:59:55.684579", "pkt_num" : 48484057, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "120.232.252.226:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-02:59:55.684579", "pkt_num" : 48484058, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "120.232.252.226:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:04.014810", "pkt_num" : 48485575, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "144.208.127.177:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:09.023120", "pkt_num" : 48486442, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "144.208.127.177:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:27.105932", "pkt_num" : 48489943, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:27.336179", "pkt_num" : 48489996, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:29.005962", "pkt_num" : 48490229, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:29.246097", "pkt_num" : 48490267, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:30.106199", "pkt_num" : 48490404, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:30.436076", "pkt_num" : 48490419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:30.746247", "pkt_num" : 48490459, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:30.996215", "pkt_num" : 48490476, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:31.116246", "pkt_num" : 48490494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:31.486384", "pkt_num" : 48490545, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:31.506035", "pkt_num" : 48490557, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:33.896252", "pkt_num" : 48490966, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:34.166217", "pkt_num" : 48490993, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:35.436380", "pkt_num" : 48491155, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:35.946483", "pkt_num" : 48491257, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.096334", "pkt_num" : 48491283, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.106529", "pkt_num" : 48491286, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.456304", "pkt_num" : 48491320, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.536488", "pkt_num" : 48491327, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.806354", "pkt_num" : 48491361, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.816317", "pkt_num" : 48491363, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.846436", "pkt_num" : 48491366, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:36.986381", "pkt_num" : 48491393, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:37.296391", "pkt_num" : 48491461, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:37.696634", "pkt_num" : 48491516, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:38.677101", "pkt_num" : 48491732, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:39.606354", "pkt_num" : 48492174, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:39.676495", "pkt_num" : 48492184, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:40.196463", "pkt_num" : 48492282, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:40.237346", "pkt_num" : 48492286, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:40.416487", "pkt_num" : 48492318, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:40.906694", "pkt_num" : 48492416, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:40.966644", "pkt_num" : 48492423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:41.596548", "pkt_num" : 48492521, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:41.656609", "pkt_num" : 48492529, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:43.176845", "pkt_num" : 48492774, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:43.596625", "pkt_num" : 48492844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:44.206692", "pkt_num" : 48492933, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:47.266764", "pkt_num" : 48493432, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:47.736800", "pkt_num" : 48493508, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:48.166854", "pkt_num" : 48493592, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:48.546858", "pkt_num" : 48493645, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:48.967163", "pkt_num" : 48493694, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:49.726845", "pkt_num" : 48493844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:49.756877", "pkt_num" : 48493849, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:50.107174", "pkt_num" : 48493891, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:50.336835", "pkt_num" : 48493922, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:51.886965", "pkt_num" : 48494195, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:51.947012", "pkt_num" : 48494204, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:52.676944", "pkt_num" : 48494301, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:52.876958", "pkt_num" : 48494322, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:54.407090", "pkt_num" : 48494536, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:54.476989", "pkt_num" : 48494544, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:54.967205", "pkt_num" : 48494648, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:55.847192", "pkt_num" : 48494847, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:55.887223", "pkt_num" : 48494850, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:56.997221", "pkt_num" : 48495118, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:57.677117", "pkt_num" : 48495236, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:57.747253", "pkt_num" : 48495248, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:57.907255", "pkt_num" : 48495282, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:57.937190", "pkt_num" : 48495289, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:58.041046", "pkt_num" : 48495295, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:58.677229", "pkt_num" : 48495397, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:00:59.977420", "pkt_num" : 48495691, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:00.677215", "pkt_num" : 48495793, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:01.067261", "pkt_num" : 48495875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:01.957348", "pkt_num" : 48496079, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:02.077472", "pkt_num" : 48496092, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:02.637470", "pkt_num" : 48496188, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:02.827373", "pkt_num" : 48496210, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:03.047333", "pkt_num" : 48496232, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:03.247494", "pkt_num" : 48496255, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:03.567355", "pkt_num" : 48496306, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:04.727388", "pkt_num" : 48496436, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:05.807675", "pkt_num" : 48496604, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:05.927695", "pkt_num" : 48496617, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:06.447467", "pkt_num" : 48496732, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:06.627509", "pkt_num" : 48496749, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:07.017510", "pkt_num" : 48496838, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:07.117577", "pkt_num" : 48496845, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:07.897560", "pkt_num" : 48496967, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:08.477547", "pkt_num" : 48497049, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:09.677568", "pkt_num" : 48497435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:10.477766", "pkt_num" : 48497543, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:10.657697", "pkt_num" : 48497592, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:11.337760", "pkt_num" : 48497724, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:11.667745", "pkt_num" : 48497806, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:11.677668", "pkt_num" : 48497807, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:11.697733", "pkt_num" : 48497808, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:12.067786", "pkt_num" : 48497860, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:12.587746", "pkt_num" : 48497942, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:12.607965", "pkt_num" : 48497948, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:12.827786", "pkt_num" : 48497970, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:12.847897", "pkt_num" : 48497983, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.267880", "pkt_num" : 48498192, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.337778", "pkt_num" : 48498205, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.448092", "pkt_num" : 48498214, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.707790", "pkt_num" : 48498249, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.877991", "pkt_num" : 48498346, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:14.897798", "pkt_num" : 48498352, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:16.227811", "pkt_num" : 48498613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:16.577916", "pkt_num" : 48498692, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:16.677973", "pkt_num" : 48498703, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:16.998060", "pkt_num" : 48498728, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:17.488001", "pkt_num" : 48498782, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:17.747836", "pkt_num" : 48498836, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:19.287943", "pkt_num" : 48499166, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:19.758064", "pkt_num" : 48499266, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:20.528096", "pkt_num" : 48499413, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:20.777938", "pkt_num" : 48499452, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:21.458278", "pkt_num" : 48499577, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:22.538182", "pkt_num" : 48499892, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:23.048183", "pkt_num" : 48499994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:23.118247", "pkt_num" : 48500003, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:23.488194", "pkt_num" : 48500051, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:24.158247", "pkt_num" : 48500144, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:25.178182", "pkt_num" : 48500262, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:25.398378", "pkt_num" : 48500303, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:25.538206", "pkt_num" : 48500322, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:26.328364", "pkt_num" : 48500417, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:26.928267", "pkt_num" : 48500508, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:26.989252", "pkt_num" : 48500513, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:27.278259", "pkt_num" : 48500553, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:27.408520", "pkt_num" : 48500565, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:27.958644", "pkt_num" : 48500639, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:28.538284", "pkt_num" : 48500699, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:29.548611", "pkt_num" : 48500825, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:30.478624", "pkt_num" : 48500984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:30.638469", "pkt_num" : 48501012, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:31.848567", "pkt_num" : 48501197, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:31.978700", "pkt_num" : 48501211, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:32.018601", "pkt_num" : 48501214, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:33.218675", "pkt_num" : 48501422, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:33.348725", "pkt_num" : 48501450, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:34.268582", "pkt_num" : 48501648, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:35.228613", "pkt_num" : 48501744, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:35.308582", "pkt_num" : 48501758, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:36.228611", "pkt_num" : 48501851, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:38.068750", "pkt_num" : 48502172, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:38.148815", "pkt_num" : 48502181, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:38.288802", "pkt_num" : 48502202, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:39.268704", "pkt_num" : 48502380, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:39.348708", "pkt_num" : 48502404, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:41.318856", "pkt_num" : 48502733, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:41.818973", "pkt_num" : 48502826, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:41.919023", "pkt_num" : 48502862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:43.108962", "pkt_num" : 48503053, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:43.298997", "pkt_num" : 48503073, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:43.339009", "pkt_num" : 48503081, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:44.288963", "pkt_num" : 48503188, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:45.399021", "pkt_num" : 48503312, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:45.669111", "pkt_num" : 48503345, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:45.829207", "pkt_num" : 48503364, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:46.089115", "pkt_num" : 48503427, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:47.399210", "pkt_num" : 48503588, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:48.419181", "pkt_num" : 48503769, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:48.659232", "pkt_num" : 48503819, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:49.009344", "pkt_num" : 48503903, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:50.739301", "pkt_num" : 48504190, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:50.789291", "pkt_num" : 48504198, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:51.239262", "pkt_num" : 48504249, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:51.429595", "pkt_num" : 48504296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:51.489314", "pkt_num" : 48504309, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:51.749427", "pkt_num" : 48504379, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:52.179516", "pkt_num" : 48504421, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:52.279225", "pkt_num" : 48504433, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:52.429489", "pkt_num" : 48504461, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:52.509413", "pkt_num" : 48504467, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:52.959331", "pkt_num" : 48504548, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:53.139321", "pkt_num" : 48504574, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:53.149362", "pkt_num" : 48504575, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:55.719415", "pkt_num" : 48505058, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:56.859561", "pkt_num" : 48505325, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:57.239430", "pkt_num" : 48505379, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:58.189467", "pkt_num" : 48505840, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:59.809607", "pkt_num" : 48506487, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:01:59.989566", "pkt_num" : 48506533, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:00.499660", "pkt_num" : 48506658, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:00.579682", "pkt_num" : 48506696, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:01.529678", "pkt_num" : 48506957, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:01.639673", "pkt_num" : 48506999, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:02.359833", "pkt_num" : 48507284, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:02.759928", "pkt_num" : 48507429, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:02.879688", "pkt_num" : 48507508, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:03.439741", "pkt_num" : 48507702, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:04.260000", "pkt_num" : 48507919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:04.489769", "pkt_num" : 48507979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:04.619779", "pkt_num" : 48508038, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:04.709789", "pkt_num" : 48508057, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:05.179859", "pkt_num" : 48508210, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:05.889944", "pkt_num" : 48508538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:06.409764", "pkt_num" : 48508881, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:07.090020", "pkt_num" : 48509071, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:07.549968", "pkt_num" : 48509167, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:08.730052", "pkt_num" : 48509545, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:10.700263", "pkt_num" : 48510305, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:12.450192", "pkt_num" : 48510681, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:12.850113", "pkt_num" : 48510989, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:13.120246", "pkt_num" : 48511046, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:13.140165", "pkt_num" : 48511052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:13.230381", "pkt_num" : 48511064, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:13.240195", "pkt_num" : 48511065, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:14.010174", "pkt_num" : 48511250, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:14.220193", "pkt_num" : 48511300, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:14.490317", "pkt_num" : 48511354, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:15.880391", "pkt_num" : 48511792, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:16.050233", "pkt_num" : 48511818, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:16.530533", "pkt_num" : 48511893, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:16.790463", "pkt_num" : 48511951, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:17.400346", "pkt_num" : 48512034, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:18.800406", "pkt_num" : 48512457, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:19.740339", "pkt_num" : 48512607, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:20.330462", "pkt_num" : 48512688, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:20.480364", "pkt_num" : 48512711, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:20.880426", "pkt_num" : 48512790, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:21.100429", "pkt_num" : 48512866, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:22.080436", "pkt_num" : 48512994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:22.750802", "pkt_num" : 48513112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:23.050535", "pkt_num" : 48513198, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:24.500542", "pkt_num" : 48513402, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:24.640537", "pkt_num" : 48513432, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:24.680601", "pkt_num" : 48513439, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:25.161256", "pkt_num" : 48513555, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:25.520624", "pkt_num" : 48513681, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:26.430640", "pkt_num" : 48513866, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:26.900669", "pkt_num" : 48513996, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:27.000645", "pkt_num" : 48514004, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:27.220668", "pkt_num" : 48514050, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:27.520706", "pkt_num" : 48514073, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.060728", "pkt_num" : 48514149, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.390762", "pkt_num" : 48514199, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.440684", "pkt_num" : 48514205, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.520755", "pkt_num" : 48514215, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.590655", "pkt_num" : 48514235, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:28.860753", "pkt_num" : 48514288, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:30.520772", "pkt_num" : 48514568, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:31.110836", "pkt_num" : 48514617, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:31.380957", "pkt_num" : 48514651, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:31.660899", "pkt_num" : 48514754, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:31.940822", "pkt_num" : 48514798, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:32.520883", "pkt_num" : 48514892, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:32.651081", "pkt_num" : 48514902, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:33.331142", "pkt_num" : 48514999, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:33.470837", "pkt_num" : 48515044, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:34.210962", "pkt_num" : 48515139, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:36.041812", "pkt_num" : 48515355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:36.511027", "pkt_num" : 48515425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:37.531243", "pkt_num" : 48515534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:37.901247", "pkt_num" : 48515600, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:02:38.011035", "pkt_num" : 48515689, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.183:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:03:05.864049", "pkt_num" : 48520349, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.26.37.242:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:03:06.885245", "pkt_num" : 48520493, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.26.37.242:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:03:09.867205", "pkt_num" : 48521293, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.26.37.242:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:03:10.891057", "pkt_num" : 48521432, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.26.37.242:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:04:08.578953", "pkt_num" : 48532050, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.143.128.127:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:04:13.580143", "pkt_num" : 48534415, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.143.128.127:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:06:47.950896", "pkt_num" : 48559468, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:07:10.311816", "pkt_num" : 48563578, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:07:43.493076", "pkt_num" : 48569286, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:08:38.015303", "pkt_num" : 48607555, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:11:02.390948", "pkt_num" : 48632398, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:13:23.499897", "pkt_num" : 48659291, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.143.128.123:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:13:28.505935", "pkt_num" : 48659911, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "37.143.128.123:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:15:41.521956", "pkt_num" : 48683551, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:17:57.658400", "pkt_num" : 48710447, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.255.123.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:17:57.660898", "pkt_num" : 48710448, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.255.123.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:17:57.668579", "pkt_num" : 48710449, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.255.123.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:17:57.673264", "pkt_num" : 48710450, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.255.123.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:18:52.268068", "pkt_num" : 48725138, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:21:25.585370", "pkt_num" : 48927429, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:23:09.436855", "pkt_num" : 48944325, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.186.85:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:23:16.117024", "pkt_num" : 48946118, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.186.85:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:23:23.017323", "pkt_num" : 48947297, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.38.186.85:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:23:36.000506", "pkt_num" : 48949266, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:25:04.533962", "pkt_num" : 49029895, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:25:25.725035", "pkt_num" : 49033360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:26:48.948033", "pkt_num" : 49048873, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:27:37.300224", "pkt_num" : 49057780, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:28:15.401445", "pkt_num" : 49063579, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:30:18.644039", "pkt_num" : 49084290, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:30:18.662045", "pkt_num" : 49084294, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:30:18.679989", "pkt_num" : 49084296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:31:11.127638", "pkt_num" : 49092827, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:31:11.128791", "pkt_num" : 49092828, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:31:11.133664", "pkt_num" : 49092829, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "145.239.89.233:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:33:07.884716", "pkt_num" : 49112336, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "190.123.44.172:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:33:08.122884", "pkt_num" : 49112369, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:33:12.888832", "pkt_num" : 49113614, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "190.123.44.172:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:33:18.934961", "pkt_num" : 49114746, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:35:35.220043", "pkt_num" : 49145052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.47.253.31:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:35:40.220262", "pkt_num" : 49145778, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.47.253.31:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:39:05.256856", "pkt_num" : 49182525, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:39:35.678176", "pkt_num" : 49187614, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:39:45.618479", "pkt_num" : 49189239, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:40:15.279689", "pkt_num" : 49193748, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:45:34.725657", "pkt_num" : 49315110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.246.23.195:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:46:54.195289", "pkt_num" : 49335532, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:48:33.969305", "pkt_num" : 49352884, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:49:12.250739", "pkt_num" : 49359161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:51:00.535121", "pkt_num" : 49377538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:54:12.292747", "pkt_num" : 49475447, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:55:26.715550", "pkt_num" : 49505710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:56:43.938565", "pkt_num" : 49548262, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:57:48.020992", "pkt_num" : 49586130, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:57:59.011468", "pkt_num" : 49592801, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-03:59:15.084440", "pkt_num" : 49629044, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "165.22.156.107:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-03:59:20.086481", "pkt_num" : 49631515, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "165.22.156.107:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:03:01.343234", "pkt_num" : 49711706, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:04:19.726463", "pkt_num" : 49729624, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:04:44.227578", "pkt_num" : 49733809, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:06:34.002039", "pkt_num" : 49752567, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.3.163.246:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:06:39.019026", "pkt_num" : 49753296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "74.3.163.246:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:06:49.522366", "pkt_num" : 49755000, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:07:56.386514", "pkt_num" : 49775963, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.56.118.127:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:08:01.839279", "pkt_num" : 49776919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.56.118.127:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:08:58.457387", "pkt_num" : 49789717, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:12:21.905361", "pkt_num" : 49843286, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:17:58.798800", "pkt_num" : 49912086, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:19:41.502672", "pkt_num" : 49933153, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:22:38.729623", "pkt_num" : 49963441, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:23:49.517341", "pkt_num" : 49979389, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "144.208.127.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:23:55.456715", "pkt_num" : 49980276, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "144.208.127.136:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:27:45.801534", "pkt_num" : 50095396, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:30:39.958652", "pkt_num" : 50130559, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:30:59.829195", "pkt_num" : 50134188, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:31:19.201827", "pkt_num" : 50138586, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:31:30.800371", "pkt_num" : 50140301, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:31:35.380750", "pkt_num" : 50141009, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:36:07.281295", "pkt_num" : 50377517, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:03.622715", "pkt_num" : 50428646, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.51.74.12:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:04.862859", "pkt_num" : 50428829, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:07.625714", "pkt_num" : 50429383, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.51.74.12:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:08.651679", "pkt_num" : 50429603, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.51.74.12:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:12.658918", "pkt_num" : 50430624, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "111.51.74.12:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:41:54.094858", "pkt_num" : 50436483, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:43:23.458302", "pkt_num" : 50450898, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:43:59.423364", "pkt_num" : 50456937, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.144.104.141:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:44:04.552312", "pkt_num" : 50457611, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.144.104.141:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-04:46:57.146617", "pkt_num" : 50498943, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:47:02.646849", "pkt_num" : 50504436, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:51:09.056556", "pkt_num" : 50618959, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:51:39.927818", "pkt_num" : 50625377, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:52:34.249921", "pkt_num" : 50639656, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:56:22.458841", "pkt_num" : 50692858, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:56:38.089494", "pkt_num" : 50695801, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:57:53.972496", "pkt_num" : 50716671, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:58:29.243977", "pkt_num" : 50725445, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:59:42.886693", "pkt_num" : 50741110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-04:59:43.906828", "pkt_num" : 50741250, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:00:01.488304", "pkt_num" : 50745055, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:00:42.898819", "pkt_num" : 50760565, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 112, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "163.181.131.213:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:01:57.080699", "pkt_num" : 50777149, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "138.68.51.158:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:02:02.081636", "pkt_num" : 50778329, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "138.68.51.158:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:04:51.243010", "pkt_num" : 50883022, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "31.40.212.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:04:56.245438", "pkt_num" : 50884348, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "31.40.212.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:05:05.429622", "pkt_num" : 50886281, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:08:37.839501", "pkt_num" : 50933425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.32.191.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:08:37.841320", "pkt_num" : 50933426, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.32.191.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:08:37.845294", "pkt_num" : 50933427, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.32.191.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:08:37.845376", "pkt_num" : 50933428, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "152.32.191.35:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:09:32.669925", "pkt_num" : 50945656, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:09:50.850554", "pkt_num" : 50949146, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:10:24.411890", "pkt_num" : 50959078, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:11:34.084705", "pkt_num" : 50974458, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:14:17.890302", "pkt_num" : 51014705, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:14:32.981606", "pkt_num" : 51018249, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:16:03.875398", "pkt_num" : 51036725, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:19:01.702298", "pkt_num" : 51067710, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.155.120:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:21:55.379133", "pkt_num" : 51105364, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:22:34.270798", "pkt_num" : 51112110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:22:54.101345", "pkt_num" : 51114819, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.3.59.207:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:23:42.553280", "pkt_num" : 51122591, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:24:40.955467", "pkt_num" : 51132431, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:28:01.068824", "pkt_num" : 51165048, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:28:06.708308", "pkt_num" : 51165646, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "209.182.225.160:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:28:10.143776", "pkt_num" : 51166095, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:28:11.709392", "pkt_num" : 51166749, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "209.182.225.160:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:28:41.175057", "pkt_num" : 51171625, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:29:03.868033", "pkt_num" : 51175039, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.71.158.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:29:08.875257", "pkt_num" : 51175800, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "45.71.158.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:29:48.718248", "pkt_num" : 51182136, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:31:00.870279", "pkt_num" : 51197297, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:34:11.801226", "pkt_num" : 51347226, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "91.148.134.246:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:34:16.813380", "pkt_num" : 51348433, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "91.148.134.246:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:35:50.731758", "pkt_num" : 51365110, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:36:33.653421", "pkt_num" : 51372524, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "203.29.240.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:36:38.763569", "pkt_num" : 51373226, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "203.29.240.224:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:36:39.153809", "pkt_num" : 51373275, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:36:42.503839", "pkt_num" : 51373771, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:38:50.228955", "pkt_num" : 51394307, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.149.109:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:38:50.228955", "pkt_num" : 51394308, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.149.109:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:34.395440", "pkt_num" : 51455676, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:34.495373", "pkt_num" : 51455687, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:34.585300", "pkt_num" : 51455700, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:35.200298", "pkt_num" : 51455790, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.71.26.103:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:35.247309", "pkt_num" : 51455799, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.71.26.103:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:35.486270", "pkt_num" : 51455818, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.71.26.103:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:35.550323", "pkt_num" : 51455825, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.71.26.103:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:35.985288", "pkt_num" : 51455877, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:36.285423", "pkt_num" : 51455930, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:42.215617", "pkt_num" : 51456720, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:44.835882", "pkt_num" : 51457019, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:49.405875", "pkt_num" : 51457712, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:54.456173", "pkt_num" : 51458518, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:55.038501", "pkt_num" : 51458659, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:55.511246", "pkt_num" : 51458844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "36.101.206.21:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:55.518199", "pkt_num" : 51458847, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "36.101.206.21:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:57.266382", "pkt_num" : 51459141, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:57.516240", "pkt_num" : 51459206, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:59.156468", "pkt_num" : 51459376, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:59.513492", "pkt_num" : 51459410, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "36.101.206.21:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:41:59.520384", "pkt_num" : 51459412, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 64, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "36.101.206.21:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:00.996321", "pkt_num" : 51459613, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:01.626550", "pkt_num" : 51459757, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:05.666448", "pkt_num" : 51461583, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:05.766746", "pkt_num" : 51461589, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:07.946820", "pkt_num" : 51461759, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:11.886728", "pkt_num" : 51462513, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:12.956765", "pkt_num" : 51463000, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:15.896965", "pkt_num" : 51463512, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:17.566983", "pkt_num" : 51464435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:23.617219", "pkt_num" : 51465358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:23.877443", "pkt_num" : 51465390, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:25.547375", "pkt_num" : 51465625, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:28.227399", "pkt_num" : 51465957, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:28.727462", "pkt_num" : 51466006, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:28.847605", "pkt_num" : 51466014, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:29.847629", "pkt_num" : 51466115, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:31.187685", "pkt_num" : 51466387, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:32.227507", "pkt_num" : 51467204, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:32.727474", "pkt_num" : 51468030, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:33.397828", "pkt_num" : 51468255, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:33.397828", "pkt_num" : 51468256, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:36.117743", "pkt_num" : 51469019, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:37.427763", "pkt_num" : 51469177, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:37.677710", "pkt_num" : 51469238, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:39.187969", "pkt_num" : 51469954, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:39.567774", "pkt_num" : 51470033, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:39.687869", "pkt_num" : 51470073, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:39.707805", "pkt_num" : 51470076, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:39.987850", "pkt_num" : 51470148, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:40.657802", "pkt_num" : 51470258, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:41.667918", "pkt_num" : 51471142, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:43.018022", "pkt_num" : 51471958, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:44.178063", "pkt_num" : 51472128, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:45.328012", "pkt_num" : 51472459, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:45.388082", "pkt_num" : 51472490, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:46.618225", "pkt_num" : 51472875, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:48.038358", "pkt_num" : 51473436, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:48.198288", "pkt_num" : 51473462, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:48.598189", "pkt_num" : 51473534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:48.608353", "pkt_num" : 51473536, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:48.618182", "pkt_num" : 51473538, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.028338", "pkt_num" : 51473846, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.038784", "pkt_num" : 51473847, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.078293", "pkt_num" : 51473855, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.678356", "pkt_num" : 51473958, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.758435", "pkt_num" : 51473964, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:49.808400", "pkt_num" : 51473971, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:50.118278", "pkt_num" : 51474891, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:50.518264", "pkt_num" : 51475804, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:51.068457", "pkt_num" : 51475921, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:51.348459", "pkt_num" : 51475972, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:51.468332", "pkt_num" : 51475979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:51.679139", "pkt_num" : 51475994, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:51.938336", "pkt_num" : 51476096, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:52.278360", "pkt_num" : 51476146, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:52.388621", "pkt_num" : 51476166, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:52.868403", "pkt_num" : 51476222, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:53.138437", "pkt_num" : 51476304, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:53.178498", "pkt_num" : 51476306, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:53.918480", "pkt_num" : 51476416, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:54.088415", "pkt_num" : 51476433, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:54.328517", "pkt_num" : 51476468, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:54.788625", "pkt_num" : 51476512, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:56.988732", "pkt_num" : 51476909, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:58.638608", "pkt_num" : 51477261, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:58.728684", "pkt_num" : 51477273, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:59.078701", "pkt_num" : 51477310, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:42:59.148868", "pkt_num" : 51477330, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:01.328881", "pkt_num" : 51477734, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:01.328882", "pkt_num" : 51477735, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:02.148816", "pkt_num" : 51477832, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:03.149004", "pkt_num" : 51477923, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:03.808866", "pkt_num" : 51478016, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:03.999375", "pkt_num" : 51478062, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:05.129218", "pkt_num" : 51478245, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:05.158872", "pkt_num" : 51478247, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:05.178915", "pkt_num" : 51478248, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:05.378908", "pkt_num" : 51478298, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:05.998889", "pkt_num" : 51478366, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:06.588954", "pkt_num" : 51478419, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:06.988974", "pkt_num" : 51478474, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:07.178897", "pkt_num" : 51478504, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:07.358895", "pkt_num" : 51478530, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:07.558836", "pkt_num" : 51478547, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:07.579084", "pkt_num" : 51478549, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:07.848938", "pkt_num" : 51478571, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:10.129297", "pkt_num" : 51478961, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:10.269118", "pkt_num" : 51478976, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:11.389346", "pkt_num" : 51479145, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:12.539114", "pkt_num" : 51479511, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:12.789117", "pkt_num" : 51479578, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:13.379373", "pkt_num" : 51479697, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:13.569215", "pkt_num" : 51479712, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:13.889218", "pkt_num" : 51479804, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:14.269220", "pkt_num" : 51479872, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:14.549255", "pkt_num" : 51479908, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:15.489236", "pkt_num" : 51480118, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:16.209455", "pkt_num" : 51480333, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:16.509362", "pkt_num" : 51480406, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:16.879246", "pkt_num" : 51480435, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:17.129217", "pkt_num" : 51480509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:17.289497", "pkt_num" : 51480578, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:17.309228", "pkt_num" : 51480583, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:18.069536", "pkt_num" : 51480781, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:18.209333", "pkt_num" : 51480882, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:18.549335", "pkt_num" : 51480948, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:18.729477", "pkt_num" : 51480968, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:18.789389", "pkt_num" : 51480993, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:20.139623", "pkt_num" : 51481190, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:20.619527", "pkt_num" : 51481318, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:21.029711", "pkt_num" : 51481355, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:21.699674", "pkt_num" : 51481476, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:22.119491", "pkt_num" : 51481520, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:23.779558", "pkt_num" : 51481781, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:25.419589", "pkt_num" : 51482046, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:26.119860", "pkt_num" : 51482152, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:26.349647", "pkt_num" : 51482177, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:26.799823", "pkt_num" : 51482213, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:27.589652", "pkt_num" : 51482411, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:27.669678", "pkt_num" : 51482421, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:28.099740", "pkt_num" : 51482479, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:28.419705", "pkt_num" : 51482512, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:29.189754", "pkt_num" : 51482588, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:29.669943", "pkt_num" : 51482633, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:29.699976", "pkt_num" : 51482639, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:29.819784", "pkt_num" : 51482668, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:30.649901", "pkt_num" : 51482908, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:32.650084", "pkt_num" : 51483230, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:32.850053", "pkt_num" : 51483275, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:33.349892", "pkt_num" : 51483370, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:33.459895", "pkt_num" : 51483387, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:33.520007", "pkt_num" : 51483391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:33.929980", "pkt_num" : 51483554, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:34.560173", "pkt_num" : 51483699, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:35.090046", "pkt_num" : 51483776, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:35.719998", "pkt_num" : 51484011, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:36.340171", "pkt_num" : 51484070, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:36.350066", "pkt_num" : 51484071, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:36.860193", "pkt_num" : 51484141, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:38.000205", "pkt_num" : 51484239, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:38.260316", "pkt_num" : 51484305, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:38.490065", "pkt_num" : 51484371, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:38.840221", "pkt_num" : 51484408, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:39.070264", "pkt_num" : 51484455, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:39.280143", "pkt_num" : 51484505, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:39.470307", "pkt_num" : 51484527, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:40.240294", "pkt_num" : 51484592, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:40.280210", "pkt_num" : 51484595, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:40.640314", "pkt_num" : 51484662, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:40.930214", "pkt_num" : 51484734, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:41.310120", "pkt_num" : 51484787, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:41.360313", "pkt_num" : 51484804, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:41.880271", "pkt_num" : 51484862, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:43.043468", "pkt_num" : 51485067, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:43.480306", "pkt_num" : 51485107, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:43.840339", "pkt_num" : 51485166, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:44.160438", "pkt_num" : 51485195, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:44.360375", "pkt_num" : 51485225, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:43:44.760482", "pkt_num" : 51485259, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.169.6.55:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:44:11.701464", "pkt_num" : 51489678, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:45:06.603614", "pkt_num" : 51498848, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:47:51.274882", "pkt_num" : 51527883, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.186.76.52:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:47:55.112470", "pkt_num" : 51528370, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.186.76.52:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:47:55.136944", "pkt_num" : 51528385, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.186.76.52:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:47:55.190211", "pkt_num" : 51528427, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.186.76.52:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:48:26.941445", "pkt_num" : 51540655, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:49:38.634492", "pkt_num" : 51555408, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:51:48.929614", "pkt_num" : 51579766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:55:44.172624", "pkt_num" : 51688916, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-05:55:44.172624", "pkt_num" : 51688917, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-05:55:44.172625", "pkt_num" : 51688918, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-05:55:44.172625", "pkt_num" : 51688919, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-05:55:46.316682", "pkt_num" : 51689391, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:55:55.238979", "pkt_num" : 51691437, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:56:28.990490", "pkt_num" : 51701721, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:58:16.814638", "pkt_num" : 51744222, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:58:47.215875", "pkt_num" : 51766821, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-05:59:12.918942", "pkt_num" : 51772023, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.105.19.188:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-05:59:19.263997", "pkt_num" : 51773499, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.105.19.188:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:01:39.982527", "pkt_num" : 51809769, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:03:30.888445", "pkt_num" : 51831307, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "197.140.142.65:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:03:35.890559", "pkt_num" : 51832228, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "197.140.142.65:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:06:47.324023", "pkt_num" : 51871796, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "117.144.213.77:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:14:23.682598", "pkt_num" : 52049410, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:15:39.045635", "pkt_num" : 52068879, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:16:32.909185", "pkt_num" : 52089383, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "87.121.99.10:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:16:37.910396", "pkt_num" : 52090022, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "87.121.99.10:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:17:23.009560", "pkt_num" : 52101586, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:23:54.571894", "pkt_num" : 52223793, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:25:47.181729", "pkt_num" : 52313852, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "61.147.171.3:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:25:47.430689", "pkt_num" : 52313900, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "61.147.171.3:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:31:52.383712", "pkt_num" : 52483437, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:32:23.784909", "pkt_num" : 52496508, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:34:16.330021", "pkt_num" : 52525400, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:35:59.917860", "pkt_num" : 52661063, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.72.155.10:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:36:04.920103", "pkt_num" : 52661896, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.72.155.10:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:39:15.993866", "pkt_num" : 52935841, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.92.27.91:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:39:15.993866", "pkt_num" : 52935842, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.92.27.91:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:39:16.070981", "pkt_num" : 52935850, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "23.92.27.91:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:39:51.297467", "pkt_num" : 52944324, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.192.124.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:39:56.299669", "pkt_num" : 52946036, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "185.192.124.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:40:27.686116", "pkt_num" : 52955172, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:05.858289", "pkt_num" : 52965832, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:05.860945", "pkt_num" : 52965842, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:05.865330", "pkt_num" : 52965844, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:05.867040", "pkt_num" : 52965845, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:20.655028", "pkt_num" : 52972184, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:20.897847", "pkt_num" : 52972240, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.223.102.33:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:21.652973", "pkt_num" : 52972405, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:22.673123", "pkt_num" : 52972596, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:22.673123", "pkt_num" : 52972597, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:25.748529", "pkt_num" : 52976230, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:25.748529", "pkt_num" : 52976231, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:26.596999", "pkt_num" : 52976358, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "92.223.102.33:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:30.645915", "pkt_num" : 52977268, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:30.645915", "pkt_num" : 52977269, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-06:41:50.479277", "pkt_num" : 52985604, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "51.81.233.95:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:41:55.479470", "pkt_num" : 52987674, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "51.81.233.95:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:42:25.456127", "pkt_num" : 52999361, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "150.109.186.152:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:42:25.552972", "pkt_num" : 52999396, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "150.109.186.152:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:42:25.604336", "pkt_num" : 52999421, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "150.109.186.152:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:42:26.787068", "pkt_num" : 53000380, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "150.109.186.152:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:44:28.203306", "pkt_num" : 53032826, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:46:39.498430", "pkt_num" : 53067854, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:47:09.789610", "pkt_num" : 53076138, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:47:38.610876", "pkt_num" : 53089664, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:47:43.200929", "pkt_num" : 53091357, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:47:54.911544", "pkt_num" : 53093978, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:48:11.012164", "pkt_num" : 53100727, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:49:21.264817", "pkt_num" : 53123759, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:49:59.986401", "pkt_num" : 53135729, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:51:16.199304", "pkt_num" : 53158904, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:51:53.592991", "pkt_num" : 53168900, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.175.82.15:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:51:58.596251", "pkt_num" : 53170482, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "107.175.82.15:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-06:52:51.993069", "pkt_num" : 53186152, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-06:54:58.248346", "pkt_num" : 53262787, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:02:20.060729", "pkt_num" : 53492717, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:21.062563", "pkt_num" : 53493117, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:22.059589", "pkt_num" : 53493415, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:22.059589", "pkt_num" : 53493416, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:25.059093", "pkt_num" : 53494629, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:25.059093", "pkt_num" : 53494630, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:30.052901", "pkt_num" : 53495816, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:30.052901", "pkt_num" : 53495817, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:02:35.061951", "pkt_num" : 53497610, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:08:52.340770", "pkt_num" : 53646204, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:09:29.153802", "pkt_num" : 53655227, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "146.185.214.51:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:09:34.155720", "pkt_num" : 53657261, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "146.185.214.51:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:12:12.558886", "pkt_num" : 53801554, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:12:16.568880", "pkt_num" : 53803892, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.210.244:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:12:24.389046", "pkt_num" : 53807052, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:13:33.791773", "pkt_num" : 53864690, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.105.149.4:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:13:38.579694", "pkt_num" : 53866122, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:14:50.904764", "pkt_num" : 53915816, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.28.0.17:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:14:53.907748", "pkt_num" : 53916308, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.28.0.17:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:15:34.736558", "pkt_num" : 53937265, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.13.193:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:15:59.957824", "pkt_num" : 53951541, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.241.130.226:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:18:06.416278", "pkt_num" : 54011681, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "147.78.1.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:18:12.009729", "pkt_num" : 54013946, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "147.78.1.203:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:19:15.283067", "pkt_num" : 54038053, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:19:30.365851", "pkt_num" : 54043406, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:23:08.370462", "pkt_num" : 54138171, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "147.78.1.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:23:13.416667", "pkt_num" : 54140375, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "147.78.1.36:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:24:00.829083", "pkt_num" : 54157775, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "15.204.24.58:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:24:05.878200", "pkt_num" : 54159130, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "15.204.24.58:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:25:53.110851", "pkt_num" : 54194323, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.172.30.71:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:31:02.773015", "pkt_num" : 54303400, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.13.193:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:32:01.818591", "pkt_num" : 54330140, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:32:14.564393", "pkt_num" : 54338207, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:15.562948", "pkt_num" : 54338457, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:16.569827", "pkt_num" : 54338958, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:16.569828", "pkt_num" : 54338959, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:19.542006", "pkt_num" : 54339984, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:19.543050", "pkt_num" : 54339986, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:24.516722", "pkt_num" : 54342733, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:24.516722", "pkt_num" : 54342734, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:29.548866", "pkt_num" : 54344675, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.135:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:39.949598", "pkt_num" : 54349352, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:32:42.388230", "pkt_num" : 54351369, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.217758", "pkt_num" : 54355491, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.233205", "pkt_num" : 54355492, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.234342", "pkt_num" : 54355494, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.249684", "pkt_num" : 54355496, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.308168", "pkt_num" : 54355524, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.312108", "pkt_num" : 54355527, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:51.314356", "pkt_num" : 54355528, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:52.306015", "pkt_num" : 54355817, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:52.310954", "pkt_num" : 54355820, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:52.311858", "pkt_num" : 54355821, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:52.320519", "pkt_num" : 54355822, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:32:52.728321", "pkt_num" : 54355873, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:33:18.068275", "pkt_num" : 54363725, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:34:40.236404", "pkt_num" : 54407553, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:40:04.510542", "pkt_num" : 54575575, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:05.512499", "pkt_num" : 54575829, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.134:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.722733", "pkt_num" : 54587928, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.722900", "pkt_num" : 54587929, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.723361", "pkt_num" : 54587930, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.724334", "pkt_num" : 54587935, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.725950", "pkt_num" : 54587936, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.785538", "pkt_num" : 54588007, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.795277", "pkt_num" : 54588019, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.796568", "pkt_num" : 54588020, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.796568", "pkt_num" : 54588021, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.955376", "pkt_num" : 54588206, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:30.955377", "pkt_num" : 54588207, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.043250", "pkt_num" : 54588315, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.048235", "pkt_num" : 54588325, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.048235", "pkt_num" : 54588326, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.348747", "pkt_num" : 54589296, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.348811", "pkt_num" : 54589298, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.500496", "pkt_num" : 54589765, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.500496", "pkt_num" : 54589766, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:40:31.500496", "pkt_num" : 54589767, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.64.41.3:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:44:11.396864", "pkt_num" : 54693251, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:44:17.153176", "pkt_num" : 54695458, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.201:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:46:09.343583", "pkt_num" : 54873079, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:46:14.343766", "pkt_num" : 54948265, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "38.54.59.207:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:46:53.328860", "pkt_num" : 55229972, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-07:52:45.214201", "pkt_num" : 55499518, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:53:47.590221", "pkt_num" : 55531690, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:53:47.590221", "pkt_num" : 55531691, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-07:54:55.779200", "pkt_num" : 55603091, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-07:59:32.660232", "pkt_num" : 55826170, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:00:22.154806", "pkt_num" : 55858979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:00:40.782668", "pkt_num" : 55870537, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:02:06.175819", "pkt_num" : 55926094, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:08:28.361105", "pkt_num" : 57218057, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:09:49.694332", "pkt_num" : 57289544, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:13:20.212390", "pkt_num" : 57533735, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:14:26.673282", "pkt_num" : 57583321, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:19:00.225787", "pkt_num" : 58030826, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:21:27.881479", "pkt_num" : 58555103, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:22:06.647809", "pkt_num" : 58682465, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.213.192.144:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:22:06.697742", "pkt_num" : 58682615, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.213.192.144:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:22:10.694895", "pkt_num" : 58695343, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.213.192.144:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:22:10.697056", "pkt_num" : 58695350, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 62, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.213.192.144:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:23:14.435730", "pkt_num" : 58806185, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:25:37.155553", "pkt_num" : 58973112, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:38.158922", "pkt_num" : 58974303, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:39.155082", "pkt_num" : 58975160, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:39.155083", "pkt_num" : 58975161, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:42.154019", "pkt_num" : 58977637, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:42.154800", "pkt_num" : 58977638, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:43.611652", "pkt_num" : 58978617, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:25:47.224196", "pkt_num" : 58980485, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:47.224196", "pkt_num" : 58980486, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:25:52.241638", "pkt_num" : 58982422, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.20:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:26:14.412901", "pkt_num" : 58995717, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.144.232.182:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:28:24.507926", "pkt_num" : 59099529, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:29:03.890390", "pkt_num" : 59132760, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.84.194.210:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:29:08.893523", "pkt_num" : 59135432, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.84.194.210:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:31:24.686285", "pkt_num" : 59272515, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.69:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:31:25.645748", "pkt_num" : 59273122, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.78:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:31:27.150059", "pkt_num" : 59274322, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "69.25.7.75:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:36:10.056075", "pkt_num" : 59488534, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:40:26.756855", "pkt_num" : 59807867, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.49.13:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:40:29.610383", "pkt_num" : 59824655, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:40:29.917735", "pkt_num" : 59826577, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:40:31.950359", "pkt_num" : 59838251, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:41:26.698535", "pkt_num" : 59968339, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:42:47.181675", "pkt_num" : 60129555, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:15.778411", "pkt_num" : 60145863, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:16.085045", "pkt_num" : 60146045, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:17.443072", "pkt_num" : 60147061, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:18.098054", "pkt_num" : 60147412, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.8.8:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:24.686428", "pkt_num" : 60150882, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:43:44.154002", "pkt_num" : 60163506, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:48:45.035939", "pkt_num" : 60478649, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:50:02.308762", "pkt_num" : 60636337, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:51:24.942020", "pkt_num" : 60728360, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.238.162:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:52:07.674013", "pkt_num" : 60775081, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:52:07.674014", "pkt_num" : 60775082, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.132:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:53:12.376270", "pkt_num" : 60814522, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:55:44.132204", "pkt_num" : 60929600, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-08:55:48.736354", "pkt_num" : 60933718, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:55:48.736354", "pkt_num" : 60933719, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-08:55:58.426337", "pkt_num" : 60975501, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.208.241.142:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:56:03.430565", "pkt_num" : 60991777, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.208.241.142:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:56:29.398017", "pkt_num" : 61020235, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.66.188.179:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:56:36.387366", "pkt_num" : 61025002, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.66.188.179:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:56:54.553303", "pkt_num" : 61040979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.129.37.88:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:57:00.658392", "pkt_num" : 61043407, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "47.129.37.88:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:59:10.846928", "pkt_num" : 61113466, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "13.210.39.95:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:59:15.863305", "pkt_num" : 61116585, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "13.210.39.95:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-08:59:22.710860", "pkt_num" : 61121243, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:06.398506", "pkt_num" : 61222738, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "15.228.56.113:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:11.450736", "pkt_num" : 61226241, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "15.228.56.113:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:13.252579", "pkt_num" : 61227087, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.66:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:13.423302", "pkt_num" : 61227159, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.60:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:14.266224", "pkt_num" : 61227979, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "64.94.45.59:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:35.021001", "pkt_num" : 61241176, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "54.177.229.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:01:40.022032", "pkt_num" : 61250507, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "54.177.229.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:02:32.775887", "pkt_num" : 61292865, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:02:33.084697", "pkt_num" : 61293011, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:02:35.148610", "pkt_num" : 61294259, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "8.8.4.4:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:03:50.807619", "pkt_num" : 61348165, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "35.182.126.227:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:03:56.624912", "pkt_num" : 61352141, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "35.182.126.227:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:06:58.739478", "pkt_num" : 61573423, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-09:06:58.739479", "pkt_num" : 61573425, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.40.137:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-09:06:59.472192", "pkt_num" : 61573859, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-09:06:59.472193", "pkt_num" : 61573860, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 56, "dir" : "C2S", "src_ap" : "185.93.41.55:0", "dst_ap" : "172.224.39.133:0", "rule" : "1:402:16", "action" : "allow" } +{ "timestamp" : "08/22-09:08:44.268098", "pkt_num" : 61650430, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "13.36.177.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:08:49.272181", "pkt_num" : 61655404, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "13.36.177.71:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:09:09.537513", "pkt_num" : 61669053, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "18.169.170.185:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:09:15.533994", "pkt_num" : 61672006, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "192.141.9.110:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:09:15.813733", "pkt_num" : 61672100, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "18.169.170.185:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:09:24.493985", "pkt_num" : 61676509, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "94.141.120.83:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:09:32.814763", "pkt_num" : 61683398, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.104.138.223:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:10:21.032849", "pkt_num" : 61759871, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 98, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "178.215.236.84:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:10:50.139417", "pkt_num" : 61782433, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.90.145.138:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:10:55.146418", "pkt_num" : 61788626, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "52.90.145.138:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:11:25.339484", "pkt_num" : 61825864, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.229.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:11:25.354135", "pkt_num" : 61825885, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.229.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:11:25.360047", "pkt_num" : 61825935, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 88, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "139.162.229.94:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:12:14.109633", "pkt_num" : 61873571, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.72.153.115:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:12:19.577815", "pkt_num" : 61877436, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "208.72.153.115:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:13:17.243525", "pkt_num" : 61919370, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:15:32.989098", "pkt_num" : 62011335, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:16:01.590660", "pkt_num" : 62039427, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "18.217.215.27:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:16:06.658632", "pkt_num" : 62042315, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "18.217.215.27:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:17:23.853301", "pkt_num" : 62112219, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:18:02.370482", "pkt_num" : 62147540, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "169.255.56.68:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:18:07.398464", "pkt_num" : 62150713, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 72, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "169.255.56.68:0", "rule" : "1:449:9", "action" : "allow" } +{ "timestamp" : "08/22-09:18:39.566191", "pkt_num" : 62171842, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } +{ "timestamp" : "08/22-09:18:39.566191", "pkt_num" : 62171842, "proto" : "ICMP", "pkt_gen" : "raw", "pkt_len" : 68, "dir" : "C2S", "src_ap" : "10.255.255.5:0", "dst_ap" : "172.255.0.6:0", "rule" : "1:399:9", "action" : "allow" } \ No newline at end of file diff --git a/logs/appid_stats.log b/logs/appid_stats.log new file mode 100644 index 0000000..5acd6d8 --- /dev/null +++ b/logs/appid_stats.log @@ -0,0 +1,66398 @@ +1724164800,__unknown,1071200,10459081 +1724164800,Google,23923,107875 +1724164800,Adobe Software,4275,6181 +1724164800,Apple Store,25289,124267 +1724164800,Chrome,611,526 +1724164800,DNS,23701,28328 +1724164800,Gmail,123830,159575 +1724164800,HTTP,54321,71526 +1724164800,Internet Explorer,762,660 +1724164800,iTunes,2389,11881 +1724164800,Launchpad,2560,1984 +1724164800,Microsoft Update,981,827 +1724164800,NTP,1170,1170 +1724164800,SSL,855,7032 +1724164800,VKontakte,4678,10385 +1724164800,Advanced Packaging Tool,21304,19414 +1724164800,HTTPS,1816558,8778666 +1724164800,Apple sites,20797,22419 +1724164800,Avast,3402,10538 +1724164800,SSL client,299860,1861646 +1724164800,Ubuntu Update Manager,13856,12980 +1724164800,Microsoft,9329,33493 +1724164800,Google Adsense,1407,9500 +1724164800,Mail.Ru,6281,16622 +1724164800,Yandex,56699,1311680 +1724164800,Ubuntu,6589,6290 +1724164800,Nvidia,17715,39971 +1724164800,Microsoft CryptoAPI,6047,7429 +1724164800,Microsoft WNS,633,7961 +1724164800,WeChat,1218,3855 +1724164800,ICMP,336,0 +1724164800,Telegram,741,610 +1724164800,Edge Chromium,527,1365 +1724164800,DNS over TLS,5020,16230 +1724164800,DNS over HTTPS,102462,281483 +1724164800,_err_4655,2380,3202 +1724165100,__unknown,2334317,9264895 +1724165100,BitTorrent,1178,0 +1724165100,Google APIs,16016,49617 +1724165100,Google,166213,2861539 +1724165100,Android browser,782,526 +1724165100,DNS,12151,90 +1724165100,Gmail,20399,94614 +1724165100,Google Analytics,5886,7810 +1724165100,HTTP,9276,19819 +1724165100,Microsoft Update,641,507 +1724165100,NTP,900,900 +1724165100,STUN,3604,4684 +1724165100,Odnoklassniki,3439,8887 +1724165100,HTTPS,547211,3650664 +1724165100,Mozilla,5158,3362 +1724165100,SSL client,240317,3113466 +1724165100,Yandex,7638,69580 +1724165100,MDNS,364,0 +1724165100,Microsoft CryptoAPI,8494,19293 +1724165100,Google Play,5891,1368 +1724165100,ICMP,6686,120 +1724165100,ICMP for IPv6,140,0 +1724165100,Google Sign in,5879,4318 +1724165100,Grammarly,2332,7947 +1724165100,DNS over HTTPS,32064,82546 +1724165100,__unknown,1822006,11656899 +1724165100,Apple Update,3682,12071 +1724165100,DHCPv6,1141,0 +1724165100,Google APIs,10618,37111 +1724165100,Google,38080,108652 +1724165100,Apple Store,17066,63210 +1724165100,Chrome,565,484 +1724165100,DNS,52865,49953 +1724165100,HTTP,174438,7306559 +1724165100,iTunes,4815,12143 +1724165100,Launchpad,2560,1984 +1724165100,Microsoft Update,3255,2735 +1724165100,NetBIOS-ns,92,0 +1724165100,NTP,270,270 +1724165100,SSL,4527,18258 +1724165100,STUN,570,378 +1724165100,VKontakte,2383,5535 +1724165100,Odnoklassniki,3759,2393 +1724165100,Steam,2891,6458 +1724165100,Advanced Packaging Tool,32910,30148 +1724165100,HTTPS,1229035,4368371 +1724165100,Apple sites,3298,20057 +1724165100,iCloud,71755,31513 +1724165100,Avast,830,848 +1724165100,SSL client,569530,1035576 +1724165100,Doubleclick,8770,15057 +1724165100,GoDaddy,1780,5971 +1724165100,Flurry Analytics,5304,5410 +1724165100,Ubuntu Update Manager,24923,23286 +1724165100,Microsoft,82769,6388668 +1724165100,VeriSign,566,2140 +1724165100,Mail.Ru,5460,11471 +1724165100,Yandex,40250,264305 +1724165100,Ubuntu,6702,6257 +1724165100,Nvidia,12875,38909 +1724165100,Microsoft CryptoAPI,12339,14351 +1724165100,Microsoft NCSI,871,1100 +1724165100,Microsoft WNS,633,7961 +1724165100,Google Play,320031,139819 +1724165100,CloudFlare,10408,226961 +1724165100,ICMP,2775,0 +1724165100,Telegram,4544,8636 +1724165100,Zoom,4493,6821 +1724165100,Edge Chromium,3402,10807 +1724165100,DNS over TLS,11972,41748 +1724165100,DNS over HTTPS,84644,273247 +1724165400,__unknown,704694,8100703 +1724165400,HTTPS,282765,60377 +1724165400,SSL client,275600,33491 +1724165400,Google Play,273332,30899 +1724165400,ICMP,16478,5880 +1724165400,DNS over HTTPS,129218,283965 +1724165400,__unknown,3287063,26870675 +1724165400,BitTorrent,463,496 +1724165400,Google APIs,6681,19431 +1724165400,Google Drive,5971,9836 +1724165400,Google,41246,132739 +1724165400,Android browser,465,333 +1724165400,BitTorrent tracker,153,0 +1724165400,DNS,19482,180 +1724165400,Gmail,21477,56050 +1724165400,HTTP,2489,9947 +1724165400,NTP,1260,1260 +1724165400,STUN,1174,1006 +1724165400,HTTPS,607180,2670003 +1724165400,WhatsApp,4052,22369 +1724165400,Apple sites,1849,8953 +1724165400,Mozilla,5679,7840 +1724165400,SSL client,118436,771595 +1724165400,CloudFront,2059,8190 +1724165400,Microsoft,2024,9614 +1724165400,Stack Overflow,2712,1698 +1724165400,Yandex,10169,484775 +1724165400,Pocket,2704,6233 +1724165400,Google Play,14653,22352 +1724165400,CloudFlare,1932,4575 +1724165400,ICMP,19398,0 +1724165400,ICMP for IPv6,140,0 +1724165400,Grammarly,4473,15489 +1724165400,DNS over HTTPS,21134,53899 +1724165400,__unknown,2105099,23562349 +1724165400,Apple Update,1754,4999 +1724165400,DHCPv6,978,0 +1724165400,Google APIs,20704,36578 +1724165400,Google,82293,253863 +1724165400,MSN,578,502 +1724165400,Wikipedia,5089,17809 +1724165400,Chrome,1130,968 +1724165400,DNS,40181,40945 +1724165400,Firefox,2574,3862 +1724165400,HTTP,389551,13240778 +1724165400,iTunes,2201,13698 +1724165400,Launchpad,3200,2480 +1724165400,Microsoft Update,38331,633531 +1724165400,NetBIOS-dgm,493,0 +1724165400,NTP,1170,1080 +1724165400,SSL,2735,11390 +1724165400,STUN,6874,3248 +1724165400,Odnoklassniki,3850,7530 +1724165400,Advanced Packaging Tool,229367,9061377 +1724165400,Windows Update,35032,630667 +1724165400,HTTPS,1600734,9318619 +1724165400,WhatsApp,5594,111056 +1724165400,Apple sites,36266,71297 +1724165400,iCloud,115979,131578 +1724165400,Mozilla,998,4046 +1724165400,Avast,1146,1173 +1724165400,Opera,13044,10853 +1724165400,SSL client,854985,7654704 +1724165400,Box,1404,5023 +1724165400,Ubuntu Update Manager,223819,9057185 +1724165400,Microsoft,79099,3509653 +1724165400,Google Adsense,716,4750 +1724165400,Mail.Ru,3939,6455 +1724165400,Yandex,106988,6917365 +1724165400,Ubuntu,5521,4931 +1724165400,Microsoft CryptoAPI,11131,12755 +1724165400,Microsoft NCSI,411,487 +1724165400,Microsoft WNS,578,502 +1724165400,Apple Maps,30246,42492 +1724165400,Pocket,4502,10828 +1724165400,Google Play,453290,118113 +1724165400,Casale,4386,15801 +1724165400,CloudFlare,1932,4573 +1724165400,Google Hangouts,797,7092 +1724165400,ICMP,23000,0 +1724165400,Demandbase,2534,7694 +1724165400,Telegram,4355,1984 +1724165400,Zoom,38079,9311 +1724165400,Edge Chromium,4109,14043 +1724165400,DNS over TLS,6729,18460 +1724165400,DNS over HTTPS,126222,385053 +1724165400,Notion,1314,1093 +1724165699,__unknown,1236344,520507 +1724165699,Google,9117,18965 +1724165699,Chrome,1678,4232 +1724165699,HTTP,1678,4232 +1724165699,HTTPS,36653,29655 +1724165699,SSL client,9117,18965 +1724165699,ICMP,31816,0 +1724165699,DNS over HTTPS,21398,47313 +1724165699,__unknown,11908,165038 +1724165699,Gmail,17417,12451 +1724165699,SSL,2416,9177 +1724165699,HTTPS,110584,526678 +1724165699,SSL client,22391,28905 +1724165699,Google Hangouts,2416,9177 +1724165699,ICMP,5850,1800 +1724165699,DNS over HTTPS,2558,7277 +1724165699,__unknown,4892025,62602958 +1724165699,BitTorrent,463,694 +1724165699,DHCPv6,163,0 +1724165699,Google APIs,18019,93669 +1724165699,Google,194631,378630 +1724165699,Android browser,467,333 +1724165699,BitTorrent tracker,153,198 +1724165699,Chrome,1275,869 +1724165699,DNS,14076,270 +1724165699,Gmail,15376,59142 +1724165699,HTTP,7844,14932 +1724165699,Microsoft Update,1627,1356 +1724165699,NTP,1800,1800 +1724165699,SSL,6972,31908 +1724165699,STUN,3596,4206 +1724165699,YouTube,4614,10682 +1724165699,HTTPS,543533,3617715 +1724165699,WhatsApp,2029,5512 +1724165699,Mozilla,1607,4671 +1724165699,SSL client,261100,775849 +1724165699,Box,1404,5023 +1724165699,Samsung,386,992 +1724165699,Yandex,9560,193726 +1724165699,Microsoft CryptoAPI,4948,11200 +1724165699,Google Play,8040,20390 +1724165699,ICMP,16644,780 +1724165699,Telegram,3518,9418 +1724165699,Google Sign in,5820,4404 +1724165699,DNS over HTTPS,19439,55683 +1724165699,__unknown,2329548,18662764 +1724165699,Google APIs,82043,51312 +1724165699,Google,40645,201845 +1724165699,Chrome,3390,2904 +1724165699,DNS,47863,45264 +1724165699,Gmail,35744,60219 +1724165699,HTTP,87562,88882 +1724165699,Internet Explorer,762,498 +1724165699,iTunes,3273,51789 +1724165699,Launchpad,2560,1984 +1724165699,Microsoft Update,1963,1637 +1724165699,NetBIOS-dgm,243,0 +1724165699,NTP,1080,1260 +1724165699,SSL,31914,52655 +1724165699,STUN,2240,3560 +1724165699,YouTube,1595,1740 +1724165699,VKontakte,3995,6756 +1724165699,Odnoklassniki,2048,6771 +1724165699,Advanced Packaging Tool,31023,28448 +1724165699,HTTPS,1182874,8128669 +1724165699,WhatsApp,3087,11827 +1724165699,Apple sites,13491,37551 +1724165699,iCloud,40161,68013 +1724165699,Avast,638,716 +1724165699,SSL client,464353,3487847 +1724165699,Box,1404,5023 +1724165699,Ubuntu Update Manager,22353,20984 +1724165699,Microsoft,3813,3321 +1724165699,VeriSign,566,2140 +1724165699,Mail.Ru,24183,46301 +1724165699,Yandex,117419,395919 +1724165699,Ubuntu,8041,7460 +1724165699,Microsoft CryptoAPI,6393,7253 +1724165699,Microsoft NCSI,1830,2014 +1724165699,Google Play,18856,31757 +1724165699,Rambler,1747,1417 +1724165699,Microsoft Windows Live Services Authentication,1188,21928 +1724165699,ICMP,2794,0 +1724165699,Gmail attachment,45193,2460200 +1724165699,Google Sign in,4516,8435 +1724165699,Edge Chromium,5103,16770 +1724165699,DNS over TLS,4448,19080 +1724165699,DNS over HTTPS,107992,346366 +1724165699,_err_4655,4892,3542 +1724165699,DeepL Translator,2184,7638 +1724165699,Notion,16936,7286 +1724166000,__unknown,1728,0 +1724166000,__unknown,1131064,808380 +1724166000,Google,23206,36000 +1724166000,HTTPS,615394,869310 +1724166000,SSL client,23206,36000 +1724166000,ICMP,2236,0 +1724166000,DNS over HTTPS,30233,65788 +1724166000,CoAP,4116,3024 +1724166000,__unknown,31649,73308 +1724166000,Google,10436,26829 +1724166000,HTTP,595,408 +1724166000,HTTPS,15636,33701 +1724166000,SSL client,10436,26829 +1724166000,ICMP,5166,0 +1724166000,Telegram,1790,10222 +1724166000,__unknown,10097,10306 +1724166000,HTTP,386,991 +1724166000,SSL,20965,5858 +1724166000,HTTPS,118215,418407 +1724166000,Apple sites,2521,8806 +1724166000,SSL client,2521,8806 +1724166000,Samsung,386,991 +1724166000,ICMP,1150,0 +1724166000,Telegram,1071,528 +1724166000,__unknown,6758129,24776011 +1724166000,BitTorrent,649,496 +1724166000,DHCPv6,978,0 +1724166000,Google APIs,72047,257390 +1724166000,Google,54551,236202 +1724166000,BitTorrent tracker,153,0 +1724166000,DNS,15781,344 +1724166000,Gmail,56255,208216 +1724166000,Google Analytics,3633,30388 +1724166000,HTTP,4054,8672 +1724166000,NetBIOS-dgm,243,0 +1724166000,NTP,990,990 +1724166000,SSL,261994,6011808 +1724166000,STUN,3604,4708 +1724166000,Odnoklassniki,3439,8812 +1724166000,IMAPS,18830,114123 +1724166000,HTTPS,809646,2852648 +1724166000,WhatsApp,3153,75807 +1724166000,Mozilla,6068,7532 +1724166000,SSL client,217958,796083 +1724166000,Box,1404,4963 +1724166000,Samsung,386,992 +1724166000,Microsoft,1352,4063 +1724166000,VeriSign,566,2141 +1724166000,Nvidia,7577,18215 +1724166000,Microsoft CryptoAPI,2316,3617 +1724166000,Google Play,12984,24365 +1724166000,ICMP,17579,3360 +1724166000,ICMP for IPv6,70,0 +1724166000,DNS over HTTPS,5588,17183 +1724166000,__unknown,1815909,18175872 +1724166000,BITS,1857,4646 +1724166000,DHCPv6,163,0 +1724166000,Google APIs,57398,34746 +1724166000,Google Drive,7456,10054 +1724166000,Google,54743,139272 +1724166000,Kaspersky,518,541 +1724166000,MSN,577,501 +1724166000,QQ,414,1584 +1724166000,Chrome,4021,3388 +1724166000,DNS,55266,51133 +1724166000,Firefox,2563,3178 +1724166000,Gmail,28836,79200 +1724166000,HTTP,780928,44069693 +1724166000,iTunes,3565,5134 +1724166000,Launchpad,3840,2976 +1724166000,Microsoft Update,3245,2643 +1724166000,NTP,270,270 +1724166000,SSL,27904,55044 +1724166000,STUN,190,118 +1724166000,VKontakte,11956,67777 +1724166000,Odnoklassniki,2102,6540 +1724166000,Advanced Packaging Tool,27339,24833 +1724166000,IMAPS,16648,37013 +1724166000,HTTPS,1230445,7952485 +1724166000,iCloud,46987,697964 +1724166000,Avast,1212,1239 +1724166000,SSL client,601165,2058973 +1724166000,Baidu,963,10348 +1724166000,Ubuntu Update Manager,21055,19665 +1724166000,Microsoft,701340,43994344 +1724166000,VeriSign,566,2141 +1724166000,NIH,3033,6845 +1724166000,Mail.Ru,16789,43969 +1724166000,Yandex,41635,750715 +1724166000,Ubuntu,5060,4938 +1724166000,Brightcove,2183,5833 +1724166000,Nvidia,28666,32773 +1724166000,Microsoft CryptoAPI,7495,8458 +1724166000,Sony,1934,8611 +1724166000,Microsoft NCSI,411,487 +1724166000,Microsoft WNS,1270,8463 +1724166000,Apple Maps,16499,510818 +1724166000,Google Play,269086,98004 +1724166000,ICMP,1572,0 +1724166000,Mendeley,1243,4166 +1724166000,Telegram,14929,40677 +1724166000,Edge Chromium,4743,12281 +1724166000,Grammarly,1941,7466 +1724166000,DNS over TLS,3579,14422 +1724166000,DNS over HTTPS,133080,409829 +1724166000,_err_4655,3230,2958 +1724166000,Notion,1071,4393 +1724166299,__unknown,1032,0 +1724166299,__unknown,213967,175098 +1724166299,__unknown,17108,11550 +1724166299,__unknown,18999,160540 +1724166299,Google,84836,65160 +1724166299,HTTPS,8344051,4167862 +1724166299,SSL client,88486,74462 +1724166299,DNS over HTTPS,3650,9302 +1724166299,__unknown,34515,68948 +1724166299,Google,29658,33435 +1724166299,SSL,12532,15948 +1724166299,HTTPS,174959,1141614 +1724166299,SSL client,33336,39363 +1724166299,Google Hangouts,3678,5928 +1724166299,ICMP,574,0 +1724166299,Telegram,1704,718 +1724166299,__unknown,3611127,78322423 +1724166299,BitTorrent,463,1033 +1724166299,Google Drive,3458,8788 +1724166299,Google,89387,216126 +1724166299,BitTorrent tracker,153,537 +1724166299,DNS,13264,0 +1724166299,Gmail,52927,158561 +1724166299,Google Analytics,6630,8485 +1724166299,HTTP,2563,3646 +1724166299,NetBIOS-dgm,250,0 +1724166299,NTP,1260,1260 +1724166299,SSL,110240,2098347 +1724166299,STUN,2124,1644 +1724166299,Odnoklassniki,3505,8902 +1724166299,HTTPS,615882,1455702 +1724166299,iCloud,5315,11199 +1724166299,Mozilla,1988,4611 +1724166299,SSL client,213652,666127 +1724166299,Doubleclick,2833,7132 +1724166299,Box,1404,5023 +1724166299,CloudFront,2427,8255 +1724166299,Siri,4902,8206 +1724166299,Yandex,13151,179240 +1724166299,Nvidia,8264,20096 +1724166299,Microsoft CryptoAPI,1734,1469 +1724166299,CloudFlare,2498,8036 +1724166299,ICMP,79134,0 +1724166299,Telegram,2789,7194 +1724166299,Google Sign in,12775,8518 +1724166299,DNS over HTTPS,7693,19815 +1724166299,__unknown,1498967,3090886 +1724166299,BITS,561,1190 +1724166299,DHCPv6,978,0 +1724166299,Eset,888,553 +1724166299,Google APIs,19366,90738 +1724166299,Google,63925,249152 +1724166299,Adobe Software,3927,5479 +1724166299,Android browser,1886,3011 +1724166299,DNS,49420,44726 +1724166299,HTTP,492349,18368516 +1724166299,Launchpad,3200,2480 +1724166299,Microsoft Update,5250,4365 +1724166299,NTP,2070,2070 +1724166299,SSL,33421,53622 +1724166299,STUN,1104,338 +1724166299,YouTube,15316,142598 +1724166299,VKontakte,3252,15287 +1724166299,RuTube,2700,3681 +1724166299,Advanced Packaging Tool,33556,31223 +1724166299,HTTPS,978763,10787053 +1724166299,WhatsApp,3420,7461 +1724166299,Apple sites,853,2484 +1724166299,iCloud,11152,23048 +1724166299,Avast,764,782 +1724166299,SSL client,294373,2764633 +1724166299,Box,2808,10046 +1724166299,Samsung,1886,3011 +1724166299,Amazon Web Services,16724,532367 +1724166299,Ubuntu Update Manager,25051,23769 +1724166299,Microsoft,394395,18276799 +1724166299,Mail.Ru,7042,16445 +1724166299,Yandex,71404,1528529 +1724166299,Ubuntu,7508,7267 +1724166299,Microsoft CryptoAPI,13451,20602 +1724166299,Google Play,45288,43238 +1724166299,CloudFlare,3924,9166 +1724166299,AdRoll,5118,25961 +1724166299,ICMP,2511,0 +1724166299,Demandbase,765,8520 +1724166299,Telegram,35777,110264 +1724166299,Zoom,40866,797341 +1724166299,Edge Chromium,3162,8189 +1724166299,DNS over TLS,7685,33388 +1724166299,DNS over HTTPS,121826,401824 +1724166299,_err_4655,5314,7235 +1724166600,__unknown,1032,0 +1724166600,__unknown,1677516,974649 +1724166600,HTTPS,51267,27864 +1724166600,SSL client,3687,11130 +1724166600,Yandex,3687,11130 +1724166600,__unknown,3272,37787 +1724166600,Gmail,34496,22578 +1724166600,SSL,1961,8902 +1724166600,HTTPS,34496,22578 +1724166600,SSL client,34496,22578 +1724166600,ICMP,6540,6540 +1724166600,__unknown,1500,1188 +1724166600,Windows Live,5101,9494 +1724166600,SSL,28900,50201 +1724166600,HTTPS,12768,46076 +1724166600,SSL client,5101,9494 +1724166600,__unknown,12835,225911 +1724166600,Gmail,10949,20549 +1724166600,SSL,8241,16766 +1724166600,IMAPS,10949,20549 +1724166600,HTTPS,66940,90628 +1724166600,SSL client,39459,45530 +1724166600,CloudFront,2751,11175 +1724166600,Google Play,25759,13806 +1724166600,ICMP,140,0 +1724166600,DNS over HTTPS,4341,12034 +1724166600,__unknown,3122166,49450622 +1724166600,BitTorrent,463,496 +1724166600,DHCPv6,163,0 +1724166600,Google APIs,48890,199521 +1724166600,Google,94286,320342 +1724166600,BitTorrent tracker,153,0 +1724166600,DNS,13327,90 +1724166600,Gmail,29663,29280 +1724166600,HTTP,12331,49730 +1724166600,Microsoft Update,946,887 +1724166600,NTP,13020,3270 +1724166600,SSL,19078,24797 +1724166600,STUN,3676,4566 +1724166600,YouTube,4249,26957 +1724166600,Steam,3667,38022 +1724166600,HTTPS,834231,3375680 +1724166600,WhatsApp,1823,2414 +1724166600,SSL client,218447,685383 +1724166600,Box,1404,5023 +1724166600,Weather.com,2481,9949 +1724166600,Microsoft,2102,5327 +1724166600,Mail.Ru,1488,5460 +1724166600,Yandex,2386,7258 +1724166600,Microsoft CryptoAPI,2122,4025 +1724166600,Google Play,22342,50332 +1724166600,CloudFlare,5528,15584 +1724166600,Samsung Push Notification,8405,11608 +1724166600,ICMP,13629,3600 +1724166600,Firebase Crashlytics,3907,13263 +1724166600,Telegram,969,16735 +1724166600,DNS over HTTPS,14742,48794 +1724166600,__unknown,1399138,14609944 +1724166600,DHCPv6,978,0 +1724166600,Google APIs,23770,52481 +1724166600,Google,620693,629977 +1724166600,Chrome,565,484 +1724166600,DNS,48144,44551 +1724166600,HTTP,93849,125918 +1724166600,Internet Explorer,1526,1320 +1724166600,iTunes,925,3452 +1724166600,Launchpad,3200,2480 +1724166600,Microsoft Update,6396,13604 +1724166600,NetBIOS-dgm,243,0 +1724166600,NTP,2700,2610 +1724166600,SSL,63175,224838 +1724166600,STUN,570,378 +1724166600,YouTube,96369,2371978 +1724166600,Odnoklassniki,3098,8205 +1724166600,Advanced Packaging Tool,25690,23436 +1724166600,HTTPS,1900435,7898878 +1724166600,Apple sites,13203,175791 +1724166600,iCloud,10475,25931 +1724166600,Avast,1528,1564 +1724166600,SSL client,891741,3773946 +1724166600,Doubleclick,2232,1389 +1724166600,Samsung,1214,8375 +1724166600,Ubuntu Update Manager,18381,17246 +1724166600,Microsoft,2892,17082 +1724166600,VeriSign,1132,4282 +1724166600,Mail.Ru,39692,226459 +1724166600,Yandex,30061,171465 +1724166600,Ubuntu,4534,4167 +1724166600,Nvidia,7232,9035 +1724166600,Microsoft CryptoAPI,13411,26863 +1724166600,Microsoft NCSI,471,487 +1724166600,Microsoft WNS,1266,15924 +1724166600,Apple Maps,1852,4416 +1724166600,Google Play,19054,36383 +1724166600,Google Hangouts,915,7033 +1724166600,ICMP,3290,0 +1724166600,Google Sign in,7614,10123 +1724166600,Google Inbox,5057,15240 +1724166600,Zoom,37819,171213 +1724166600,Edge Chromium,4696,16054 +1724166600,Grammarly,1922,7407 +1724166600,DNS over TLS,9158,21832 +1724166600,DNS over HTTPS,108427,331549 +1724166600,_err_4655,7749,6941 +1724166600,Notion,1071,4393 +1724166899,__unknown,1032,0 +1724166899,__unknown,2786784,1001069 +1724166899,Hamachi,2686,1200 +1724166899,Telegram,255871,488040 +1724166899,__unknown,215,225 +1724166899,Google,91448,74693 +1724166899,HTTPS,91448,74693 +1724166899,SSL client,91448,74693 +1724166899,__unknown,5158,1286 +1724166899,SSL,3483,5862 +1724166899,HTTPS,12817,28113 +1724166899,ICMP,55664,0 +1724166899,__unknown,5537,6951 +1724166899,SSL,10030,13168 +1724166899,HTTPS,3239,5399 +1724166899,ICMP,2214,0 +1724166899,CoAP,3332,2448 +1724166899,__unknown,181871,875443 +1724166899,Google,70724,108474 +1724166899,SSL,7104,7983 +1724166899,HTTPS,218459,1154061 +1724166899,WhatsApp,1870,7920 +1724166899,Avast,7595,2901 +1724166899,SSL client,90200,166634 +1724166899,Weather.com,10134,53782 +1724166899,Rambler,1747,1477 +1724166899,Telegram,1039,473 +1724166899,__unknown,3818163,23439445 +1724166899,BitTorrent,1213,694 +1724166899,DHCPv6,163,0 +1724166899,Google APIs,21201,110520 +1724166899,Google,33246,80056 +1724166899,BitTorrent tracker,717,198 +1724166899,DNS,14732,0 +1724166899,Gmail,47833,58276 +1724166899,NTP,1980,1980 +1724166899,SSL,3677,5926 +1724166899,STUN,1554,1266 +1724166899,YouTube,44539,440893 +1724166899,Odnoklassniki,3379,8803 +1724166899,HTTPS,381242,1551927 +1724166899,Apple sites,1620,5677 +1724166899,SSL client,195390,877393 +1724166899,Box,1404,5023 +1724166899,Yandex,11621,136994 +1724166899,Nvidia,6261,10548 +1724166899,Google Play,9988,7141 +1724166899,ICMP,5160,1020 +1724166899,ICMP for IPv6,70,0 +1724166899,Telegram,1242,17920 +1724166899,Google Sign in,12170,8511 +1724166899,DNS over TLS,3297,5735 +1724166899,DNS over HTTPS,64880,165852 +1724166899,__unknown,2448547,59179516 +1724166899,Apple Update,4069,9031 +1724166899,Google APIs,29951,117711 +1724166899,Google,46133,159678 +1724166899,Windows Live,1221,6589 +1724166899,Adobe Software,13296,6399 +1724166899,Android browser,1647,1526 +1724166899,Apple Store,13580,40300 +1724166899,Chrome,566,543 +1724166899,DNS,63102,58922 +1724166899,Gmail,13625,36982 +1724166899,Google Analytics,9253,7334 +1724166899,HTTP,101467,100567 +1724166899,iTunes,2172,6817 +1724166899,Launchpad,3200,2480 +1724166899,Microsoft Update,642,502 +1724166899,NetBIOS-dgm,250,0 +1724166899,NTP,1800,1800 +1724166899,SSL,56753,83256 +1724166899,STUN,3470,4670 +1724166899,YouTube,14070,5045 +1724166899,VKontakte,849,3524 +1724166899,Odnoklassniki,3699,2392 +1724166899,Steam,2410,1907 +1724166899,Advanced Packaging Tool,30388,27609 +1724166899,HTTPS,4225841,24879526 +1724166899,Apple sites,7947,77405 +1724166899,iCloud,50322,140939 +1724166899,Mozilla,12431,10603 +1724166899,Avast,764,782 +1724166899,Opera,9723,2643 +1724166899,SSL client,305100,948158 +1724166899,Ubuntu Update Manager,23570,21877 +1724166899,Microsoft,6657,8838 +1724166899,Mail.Ru,9258,16285 +1724166899,Yandex,28319,187271 +1724166899,Ubuntu,4468,4170 +1724166899,Nvidia,29689,66194 +1724166899,Microsoft CryptoAPI,8342,9275 +1724166899,Microsoft NCSI,1559,1521 +1724166899,Apple Maps,2970,14057 +1724166899,Google Play,3404,8254 +1724166899,WeChat,1176,3857 +1724166899,ICMP,4576,0 +1724166899,Mendeley,1177,4081 +1724166899,Synology DSM,2105,8050 +1724166899,Telegram,15945,16546 +1724166899,Edge Chromium,5690,18151 +1724166899,DNS over TLS,12420,44769 +1724166899,DNS over HTTPS,130853,400898 +1724167200,__unknown,83480,87840 +1724167200,Google,157945,115867 +1724167200,HTTPS,157945,115867 +1724167200,SSL client,157945,115867 +1724167200,ICMP,4838,0 +1724167200,SSL client,911,4704 +1724167200,DNS over TLS,911,4704 +1724167200,DNS over HTTPS,911,4704 +1724167200,__unknown,571832,431245 +1724167200,HTTPS,7500,12318 +1724167200,__unknown,531743,657962 +1724167200,SSL,10323,15168 +1724167200,SSL,2402,3928 +1724167200,ICMP,2494,0 +1724167200,__unknown,3015,9612 +1724167200,Google,35374,28566 +1724167200,SSL,2402,5442 +1724167200,HTTPS,43508,37922 +1724167200,SSL client,35374,28566 +1724167200,__unknown,1004455,19142135 +1724167200,Google,5034,10363 +1724167200,SSL,22943,26926 +1724167200,HTTPS,202458,444624 +1724167200,iCloud,21546,18654 +1724167200,SSL client,86132,57396 +1724167200,Yandex,3343,8566 +1724167200,Google Play,56209,19813 +1724167200,ICMP,6214,5520 +1724167200,__unknown,4011791,14162057 +1724167200,BITS,1917,4625 +1724167200,BitTorrent,1827,434 +1724167200,Google APIs,18790,59826 +1724167200,Google Drive,5973,9834 +1724167200,Google,151902,292105 +1724167200,Android browser,458,333 +1724167200,BitTorrent tracker,153,0 +1724167200,Chrome,819,2282 +1724167200,DNS,21211,0 +1724167200,Gmail,3145,7338 +1724167200,Google Analytics,2567,29100 +1724167200,HTTP,9198,28493 +1724167200,Microsoft Update,981,817 +1724167200,NTP,1170,1170 +1724167200,SSL,7374,7910 +1724167200,STUN,1472,1192 +1724167200,YouTube,3613,23212 +1724167200,VKontakte,1449,4992 +1724167200,HTTPS,707299,6800193 +1724167200,Mozilla,5373,3451 +1724167200,SSL client,323089,5180578 +1724167200,Box,1404,5023 +1724167200,Microsoft,1954,9481 +1724167200,Yandex,54749,4216885 +1724167200,Nvidia,34891,244290 +1724167200,Microsoft CryptoAPI,4050,11772 +1724167200,Google Play,36172,273385 +1724167200,ICMP,6056,120 +1724167200,ICMP for IPv6,70,0 +1724167200,Firebase Crashlytics,2053,6554 +1724167200,Telegram,6423,10072 +1724167200,Zoom,5758,7361 +1724167200,DNS over TLS,1865,2411 +1724167200,DNS over HTTPS,9309,29294 +1724167200,__unknown,2084854,45748860 +1724167200,BitTorrent,372,0 +1724167200,DHCPv6,1141,0 +1724167200,Google APIs,14896,16186 +1724167200,Google,39377,101562 +1724167200,MSN,578,502 +1724167200,Android browser,1581,1452 +1724167200,Chrome,2264,2172 +1724167200,DNS,32229,33590 +1724167200,Firefox,3102,3941 +1724167200,HTTP,121903,121710 +1724167200,Internet Explorer,1764,1533 +1724167200,iTunes,4010,8805 +1724167200,Launchpad,3200,2480 +1724167200,LiveJournal,568190,2236304 +1724167200,Microsoft Update,1947,1775 +1724167200,NTP,10145,7115 +1724167200,SSL,9940,18347 +1724167200,STUN,760,638 +1724167200,VKontakte,124665,1310105 +1724167200,Odnoklassniki,3670,7453 +1724167200,Steam,4214,3388 +1724167200,Advanced Packaging Tool,28310,26011 +1724167200,HTTPS,2179152,9911938 +1724167200,Apple sites,3331,12016 +1724167200,iCloud,32829,74915 +1724167200,Mozilla,1997,4656 +1724167200,Avast,764,782 +1724167200,Opera,1787,4473 +1724167200,SSL client,1003816,4666450 +1724167200,Box,2808,10046 +1724167200,Baidu,1764,1533 +1724167200,Ubuntu Update Manager,20953,19785 +1724167200,Microsoft,1296,8932 +1724167200,Google Adsense,2939,2379 +1724167200,Mail.Ru,8899,22782 +1724167200,Yandex,43737,649903 +1724167200,Ubuntu,5498,5121 +1724167200,Nvidia,16616,43833 +1724167200,Microsoft CryptoAPI,10741,15677 +1724167200,Microsoft NCSI,477,553 +1724167200,Microsoft WNS,1151,8464 +1724167200,Apple Maps,4701,15846 +1724167200,Google ads,3493,8052 +1724167200,Google Play,44006,24867 +1724167200,Rambler,34121,28171 +1724167200,ICMP,5089,120 +1724167200,Telegram,26978,40476 +1724167200,Sberbank of Russia,2098,9323 +1724167200,Edge Chromium,7798,23601 +1724167200,DNS over TLS,5063,16366 +1724167200,DNS over HTTPS,104292,274070 +1724167500,__unknown,3379430,1436758 +1724167500,__unknown,9830,7211 +1724167500,VKontakte,2146,4868 +1724167500,HTTPS,55803,75360 +1724167500,SSL client,55803,75360 +1724167500,Telegram,53657,70492 +1724167500,__unknown,344951,1635847 +1724167500,SSL,2402,3868 +1724167500,__unknown,0,786 +1724167500,SSL,5066,7994 +1724167500,__unknown,12583,17506 +1724167500,Google,17391,20400 +1724167500,HTTPS,22981,30405 +1724167500,SSL client,17391,20400 +1724167500,__unknown,1974,4366 +1724167500,HTTP,2508,2211 +1724167500,SSL,6002,9299 +1724167500,HTTPS,113887,37870 +1724167500,__unknown,465433,788484 +1724167500,Gmail,13081,58234 +1724167500,SSL,7087,7957 +1724167500,HTTPS,96922,200192 +1724167500,WhatsApp,3848,15983 +1724167500,SSL client,14226,62629 +1724167500,ICMP,7636,7260 +1724167500,DNS over HTTPS,1145,4395 +1724167500,__unknown,4123153,12877086 +1724167500,BitTorrent,835,1033 +1724167500,Google APIs,14203,24328 +1724167500,Google Drive,54603,21778 +1724167500,Google,48274,145921 +1724167500,Android browser,590,399 +1724167500,BitTorrent tracker,153,537 +1724167500,DNS,9232,0 +1724167500,Gmail,50336,80886 +1724167500,HTTP,2537,4606 +1724167500,LiveJournal,214021,126359 +1724167500,NetBIOS-dgm,243,0 +1724167500,NTP,1080,1080 +1724167500,SSL,1021,1934 +1724167500,STUN,1446,1198 +1724167500,VKontakte,7314,14926 +1724167500,HTTPS,951033,4101898 +1724167500,Mozilla,2504,1650 +1724167500,Opera,4233,9220 +1724167500,SSL client,457126,1188007 +1724167500,Box,1404,5023 +1724167500,CloudFront,3310,43008 +1724167500,Yandex,18892,659683 +1724167500,Nvidia,8937,15324 +1724167500,Microsoft CryptoAPI,1198,3198 +1724167500,Google Play,12857,27574 +1724167500,ICMP,36199,240 +1724167500,Google Sign in,18873,16938 +1724167500,Zoom,7786,9419 +1724167500,DNS over HTTPS,7168,21354 +1724167500,__unknown,1883796,11714516 +1724167500,DHCPv6,978,0 +1724167500,Google APIs,132285178,3537866 +1724167500,Google,31859,181938 +1724167500,Adobe Software,3926,5616 +1724167500,Android browser,782,526 +1724167500,Chrome,4455,3931 +1724167500,DNS,41457,40282 +1724167500,HTTP,128496,1993327 +1724167500,Internet Explorer,762,660 +1724167500,iTunes,1123,6223 +1724167500,Launchpad,2560,1984 +1724167500,LiveJournal,84022,84193 +1724167500,Microsoft Update,646,506 +1724167500,NTP,2250,2160 +1724167500,SSL,8994,13999 +1724167500,STUN,190,118 +1724167500,YouTube,15338,12789 +1724167500,VKontakte,2920,8483 +1724167500,Steam,8602,460762 +1724167500,Advanced Packaging Tool,28647,26324 +1724167500,HTTPS,133383443,6530811 +1724167500,WhatsApp,3420,7308 +1724167500,Apple sites,10146,26600 +1724167500,iCloud,21968,60617 +1724167500,Mozilla,2547,4871 +1724167500,Avast,382,391 +1724167500,SSL client,132601094,4146423 +1724167500,Box,1404,5023 +1724167500,Ubuntu Update Manager,21930,20594 +1724167500,Microsoft,28297,1121817 +1724167500,Google Adsense,2137,2064 +1724167500,VeriSign,1132,4282 +1724167500,Mail.Ru,6763,11985 +1724167500,Siri,7914,13495 +1724167500,Yandex,20420,63563 +1724167500,Ubuntu,4582,4207 +1724167500,Nvidia,7259,17690 +1724167500,Microsoft CryptoAPI,7282,12640 +1724167500,Pocket,1997,4522 +1724167500,Google Play,69251,31392 +1724167500,CloudFlare,1175,5229 +1724167500,Rambler,9605,7566 +1724167500,ICMP,3752,0 +1724167500,Synology DSM,1534,8314 +1724167500,Edge Chromium,8325,24965 +1724167500,DNS over TLS,10731,43079 +1724167500,DNS over HTTPS,42071,136428 +1724167500,DeepL Translator,2191,7638 +1724167800,__unknown,6549606,1978177 +1724167800,ICMP,15472,0 +1724167800,__unknown,222,312 +1724167800,SSL,2536,3992 +1724167800,__unknown,217,227 +1724167800,SSL,1201,1934 +1724167800,HTTPS,1909,8174 +1724167800,DNS over HTTPS,18880,44772 +1724167800,__unknown,3352,929 +1724167800,Google,20731,46020 +1724167800,HTTPS,58678,63079 +1724167800,SSL client,20731,46020 +1724167800,__unknown,212744,929449 +1724167800,Google,8657,12560 +1724167800,SSL,2402,3868 +1724167800,HTTPS,8657,12560 +1724167800,SSL client,8657,12560 +1724167800,ICMP,2726,0 +1724167800,Telegram,509,229 +1724167800,CoAP,2548,1800 +1724167800,__unknown,2394662,18422597 +1724167800,Google,258178,161771 +1724167800,Google Analytics,6792,9508 +1724167800,SSL,11464,4886 +1724167800,VKontakte,6382,8463 +1724167800,HTTPS,385415,577313 +1724167800,APNS,11464,4886 +1724167800,Apple sites,3606,12938 +1724167800,SSL client,286422,197566 +1724167800,ICMP,902,0 +1724167800,Telegram,951,500 +1724167800,__unknown,1831458,15830552 +1724167800,BITS,41269,2810325 +1724167800,BitTorrent,463,496 +1724167800,DHCPv6,163,0 +1724167800,Google APIs,31090,67606 +1724167800,Google,176810,734784 +1724167800,BitTorrent tracker,153,0 +1724167800,DNS,12149,0 +1724167800,Gmail,12929,42548 +1724167800,HTTP,41269,2810325 +1724167800,NetBIOS-dgm,250,0 +1724167800,NTP,1440,1440 +1724167800,SSL,17456,22553 +1724167800,STUN,1934,1526 +1724167800,VKontakte,5223,4943 +1724167800,HTTPS,777411,3668295 +1724167800,SSL client,484679,1081604 +1724167800,Box,1404,5023 +1724167800,Microsoft,41269,2810325 +1724167800,Yandex,3564,7988 +1724167800,Atlassian,118897,10445 +1724167800,Google Play,102721,62018 +1724167800,Rambler,28458,137035 +1724167800,Google Hangouts,1500,1392 +1724167800,ICMP,31956,1020 +1724167800,Grammarly,2083,7822 +1724167800,DNS over HTTPS,16859,43387 +1724167800,__unknown,1595573,15892627 +1724167800,Apple Update,1667,4925 +1724167800,Google APIs,9706,33298 +1724167800,Google,37510,573700 +1724167800,MSN,577,501 +1724167800,Adobe Software,8486,18596 +1724167800,Android browser,2111,5810 +1724167800,Chrome,2580,2280 +1724167800,DNS,40439,38911 +1724167800,Firefox,822,1129 +1724167800,Google Analytics,5184,35814 +1724167800,HTTP,136399,2107416 +1724167800,iTunes,4135,5270 +1724167800,Launchpad,3200,2480 +1724167800,LiveJournal,16977,113898 +1724167800,Microsoft Update,2909,2402 +1724167800,NTP,37620,8370 +1724167800,SSL,25016,28069 +1724167800,STUN,570,378 +1724167800,YouTube,5280,12559 +1724167800,VKontakte,28374,154058 +1724167800,Odnoklassniki,2102,6772 +1724167800,Advanced Packaging Tool,69161,2011390 +1724167800,HTTPS,1910500,14901988 +1724167800,APNS,11981,6117 +1724167800,Apple sites,8610,44224 +1724167800,iCloud,44120,57291 +1724167800,Dictionary.com,3370,8651 +1724167800,Mozilla,7139,7814 +1724167800,Avast,764,782 +1724167800,SSL client,506803,11271241 +1724167800,Doubleclick,1121,5648 +1724167800,Ad Nexus,1204,3587 +1724167800,Pubmatic,1433,5143 +1724167800,Box,1464,5023 +1724167800,Outbrain,3655,20192 +1724167800,GoDaddy,2380,11968 +1724167800,Ubuntu Update Manager,59168,2002828 +1724167800,Microsoft,2162,3664 +1724167800,AddThis,2782,7472 +1724167800,Mail.Ru,6234,11157 +1724167800,Yandex,223288,9966148 +1724167800,Amazon Ads System,1115,7004 +1724167800,Ubuntu,8984,8379 +1724167800,Nvidia,8393,19832 +1724167800,Microsoft CryptoAPI,19317,41588 +1724167800,Microsoft NCSI,808,966 +1724167800,Microsoft WNS,577,501 +1724167800,Rubicon Project,5712,16970 +1724167800,33Across,2426,8134 +1724167800,Improve Digital,2370,7062 +1724167800,Google Play,7047,10941 +1724167800,Criteo,4774,5474 +1724167800,Smart AdServer,22436,37792 +1724167800,Rambler,1311,5702 +1724167800,ICMP,3796,0 +1724167800,Weborama,2874,7005 +1724167800,Telegram,9908,18097 +1724167800,Zoom,26085,9059 +1724167800,Edge Chromium,2635,6822 +1724167800,DNS over TLS,12161,44501 +1724167800,DNS over HTTPS,55744,198379 +1724168100,__unknown,100405,102508 +1724168100,SSL,7081,11001 +1724168100,__unknown,1155,542 +1724168100,SSL,39990,989711 +1724168100,SSL,1141,1934 +1724168100,HTTPS,22686,28280 +1724168100,DNS over HTTPS,1133,5393 +1724168100,__unknown,125556,2907768 +1724168100,SSL,5885,9790 +1724168100,SSL,16991,108385 +1724168100,HTTPS,11188,9633 +1724168100,ICMP,4920,5040 +1724168100,DNS over HTTPS,122726,292770 +1724168100,__unknown,3008,62770 +1724168100,SSL,1201,1934 +1724168100,HTTPS,51306,21252 +1724168100,ICMP,1558,0 +1724168100,__unknown,92878,2418122 +1724168100,Google,47645,53009 +1724168100,Gmail,67999,31280 +1724168100,HTTP,2574,19504 +1724168100,LiveJournal,26624,23460 +1724168100,SSL,8214,9904 +1724168100,HTTPS,153723,125063 +1724168100,SSL client,144051,110191 +1724168100,Rambler,1783,2442 +1724168100,ICMP,1066,0 +1724168100,DNS over HTTPS,5628,13965 +1724168100,__unknown,1973608,9046701 +1724168100,BitTorrent,463,694 +1724168100,DHCPv6,978,0 +1724168100,Google APIs,60158,48026 +1724168100,Google Drive,7457,10301 +1724168100,Google,111697,291089 +1724168100,BitTorrent tracker,153,198 +1724168100,DNS,9086,0 +1724168100,Firefox,35410,46483 +1724168100,Gmail,13333,37834 +1724168100,HTTP,40456,51954 +1724168100,LiveJournal,58024,28123 +1724168100,Microsoft Update,981,887 +1724168100,NTP,810,810 +1724168100,SSL,49305,592905 +1724168100,STUN,5166,7822 +1724168100,VKontakte,12594,26086 +1724168100,HTTPS,871287,2070317 +1724168100,Mozilla,6478,7248 +1724168100,SSL client,456251,1172911 +1724168100,Doubleclick,10953,24606 +1724168100,Pubmatic,97392,44403 +1724168100,Box,1464,5023 +1724168100,Outbrain,2188,6297 +1724168100,Yandex,26260,548360 +1724168100,Amazon Ads System,6653,11484 +1724168100,Nvidia,4916,13523 +1724168100,Microsoft CryptoAPI,5046,5471 +1724168100,Google Play,3417,2368 +1724168100,Casale,2107,5634 +1724168100,Lijit,15868,44215 +1724168100,Google Hangouts,1690,1484 +1724168100,ICMP,19184,0 +1724168100,Telegram,4386,8334 +1724168100,Google Sign in,5887,4210 +1724168100,Google Inbox,5527,7647 +1724168100,DNS over HTTPS,14923,44125 +1724168100,__unknown,1417599,13113592 +1724168100,Apple Update,16467,546691 +1724168100,DHCPv6,163,0 +1724168100,Google APIs,11998,27311 +1724168100,Google Drive,25528,17930 +1724168100,Google,49001,112981 +1724168100,Adobe Software,3749,5643 +1724168100,DNS,40404,40021 +1724168100,HTTP,109825,219278 +1724168100,Internet Explorer,2402,1536 +1724168100,iTunes,1189,6099 +1724168100,Launchpad,3200,2480 +1724168100,LiveJournal,115086,330423 +1724168100,Microsoft Update,3194,3355 +1724168100,NetBIOS-dgm,486,0 +1724168100,NTP,1440,1440 +1724168100,SSL,29232,43915 +1724168100,STUN,652,452 +1724168100,YouTube,5477,8147 +1724168100,VKontakte,4564,8391 +1724168100,Odnoklassniki,5718,14166 +1724168100,Advanced Packaging Tool,33448,30962 +1724168100,HTTPS,2303865,9951274 +1724168100,iCloud,997,6561 +1724168100,Mozilla,10774,17655 +1724168100,Avast,448,457 +1724168100,SSL client,939585,3677953 +1724168100,Doubleclick,2505,7280 +1724168100,Box,1404,5023 +1724168100,Outbrain,5817,14634 +1724168100,Ubuntu Update Manager,23565,22304 +1724168100,Microsoft,1326,15926 +1724168100,Google Adsense,1115,5484 +1724168100,Mail.Ru,3938,6533 +1724168100,Yandex,88932,2343059 +1724168100,Ubuntu,7958,7561 +1724168100,Zendesk,2402,1536 +1724168100,Nvidia,14716,36679 +1724168100,Microsoft CryptoAPI,13289,120697 +1724168100,Microsoft WNS,1326,15926 +1724168100,Apple Maps,2444,6332 +1724168100,Google Play,536265,80168 +1724168100,Smart AdServer,15251,21311 +1724168100,Lijit,7484,16345 +1724168100,Office 365,940,2337 +1724168100,ICMP,4860,0 +1724168100,Telegram,8934,17846 +1724168100,Edge Chromium,4803,12921 +1724168100,DNS over TLS,23110,59042 +1724168100,DNS over HTTPS,68418,212391 +1724168100,_err_4655,1970,1472 +1724168100,Notion,1367,6404 +1724168400,__unknown,883505,2060282 +1724168400,Bing,3861,15817 +1724168400,Dropbox,9052,223412 +1724168400,Google APIs,7709,15510 +1724168400,Google,25948,572491 +1724168400,MSN,1051,6930 +1724168400,QQ,2226,6618 +1724168400,Gmail,287510,1875381 +1724168400,HTTP,1740,1352 +1724168400,iTunes,1105,6163 +1724168400,OpenSSH,8149,119439 +1724168400,SSH,8149,119439 +1724168400,SSL,3853,18455 +1724168400,YouTube,1613,1630 +1724168400,VKontakte,154432,21473 +1724168400,Odnoklassniki,5520,10173 +1724168400,Advanced Packaging Tool,1274,1166 +1724168400,IMAPS,6784,27622 +1724168400,HTTPS,3100965,25300950 +1724168400,Apple sites,9748,29616 +1724168400,iCloud,76768,55673 +1724168400,Mozilla,6753,13437 +1724168400,SSL client,1585468,4823729 +1724168400,Baidu,3271,21933 +1724168400,Ubuntu Update Manager,1274,1166 +1724168400,Microsoft,168652,267876 +1724168400,Mail.Ru,432804,638583 +1724168400,Yandex,62375,103854 +1724168400,Nvidia,279968,647464 +1724168400,Exchange Online,1321,6459 +1724168400,Office 365,16965,245540 +1724168400,Sharepoint Online,1448,11257 +1724168400,BlueStacks,1599,5046 +1724168400,Telegram,633,532 +1724168400,Stripe,23769,21393 +1724168400,DNS over TLS,3846,11678 +1724168400,DNS over HTTPS,2653,11115 +1724168400,__unknown,144,222 +1724168400,Google,78096,62728 +1724168400,SSL,2402,3928 +1724168400,HTTPS,1729582,1155436 +1724168400,SSL client,174418,183586 +1724168400,Yandex,43516,54842 +1724168400,Telegram,52806,66016 +1724168400,__unknown,1479,2218 +1724168400,SSL,349061,9785151 +1724168400,SSL client,3183,23557 +1724168400,Google Hangouts,3183,23557 +1724168400,SSL,2402,3928 +1724168400,YouTube,58729,531009 +1724168400,HTTPS,113078,592626 +1724168400,SSL client,113078,592626 +1724168400,Telegram,54349,61617 +1724168400,__unknown,13406,482087 +1724168400,HTTPS,155545,194660 +1724168400,SSL client,86612,38900 +1724168400,Google Play,86612,38900 +1724168400,ICMP,27282,0 +1724168400,__unknown,439973,1810818 +1724168400,Google,58389,142674 +1724168400,Google Analytics,12637,11758 +1724168400,SSL,3543,5802 +1724168400,HTTPS,220090,3970991 +1724168400,SSL client,71026,154432 +1724168400,ICMP,4560,4560 +1724168400,DNS over HTTPS,4869,11913 +1724168400,__unknown,2511715,8762293 +1724168400,BitTorrent,463,496 +1724168400,Google APIs,74899,25120 +1724168400,Google Drive,46749,124550 +1724168400,Google,255579,236960 +1724168400,BitTorrent tracker,153,0 +1724168400,DNS,15746,0 +1724168400,HTTP,1540,3497 +1724168400,NetBIOS-dgm,493,0 +1724168400,NTP,13470,3720 +1724168400,SSL,9890,14157 +1724168400,STUN,1934,1526 +1724168400,YouTube,3734,12448 +1724168400,VKontakte,9141,13176 +1724168400,HTTPS,2110091,1439841 +1724168400,WhatsApp,7507,27747 +1724168400,iCloud,5200,10565 +1724168400,Mozilla,4499,10174 +1724168400,SSL client,1831642,931498 +1724168400,Doubleclick,2355,6255 +1724168400,Box,1404,5023 +1724168400,Samsung,1158,2975 +1724168400,CloudFront,2205,10208 +1724168400,Microsoft,982,7532 +1724168400,NPR,382,522 +1724168400,Yandex,2371,7254 +1724168400,Simpli.fi,1269,5053 +1724168400,Nvidia,6572,12739 +1724168400,Google Play,1375826,148419 +1724168400,Lijit,9029,27172 +1724168400,ICMP,43025,0 +1724168400,Telegram,1271,892 +1724168400,Google Inbox,24687,260236 +1724168400,DNS over HTTPS,54646,145188 +1724168400,_err_4655,3013,3667 +1724168400,__unknown,1475163,15076358 +1724168400,BitTorrent,310,372 +1724168400,DHCPv6,978,0 +1724168400,Google APIs,131509,145601 +1724168400,Google,41222,116781 +1724168400,Kaspersky,518,541 +1724168400,Chrome,1216,1326 +1724168400,DNS,52620,46176 +1724168400,Firefox,7911,9344 +1724168400,HTTP,177440,6580642 +1724168400,Internet Explorer,822,660 +1724168400,Launchpad,3200,2480 +1724168400,Microsoft Update,981,850 +1724168400,NTP,14550,4800 +1724168400,SSL,12849,23470 +1724168400,STUN,190,118 +1724168400,Odnoklassniki,3790,7513 +1724168400,Steam,5085,47660 +1724168400,Advanced Packaging Tool,118838,6460649 +1724168400,HTTPS,1691728,7826456 +1724168400,iCloud,7344,32944 +1724168400,Avast,1212,1239 +1724168400,SSL client,353123,642633 +1724168400,Box,1404,5023 +1724168400,Ubuntu Update Manager,87442,5086253 +1724168400,Microsoft,1266,15924 +1724168400,AccuWeather,2656,17334 +1724168400,Mail.Ru,15074,44889 +1724168400,Yandex,22523,115061 +1724168400,Ubuntu,29962,1373748 +1724168400,Nvidia,39811,56297 +1724168400,Microsoft CryptoAPI,3467,3069 +1724168400,Microsoft NCSI,514,547 +1724168400,Microsoft WNS,1266,15924 +1724168400,33Across,2426,8118 +1724168400,Pocket,2458,6047 +1724168400,Google Play,60137,19795 +1724168400,CloudFlare,3547,5324 +1724168400,Lijit,12309,36233 +1724168400,ICMP,2683,0 +1724168400,Telegram,7230,6775 +1724168400,Edge Chromium,4109,14100 +1724168400,DNS over TLS,6606,28620 +1724168400,DNS over HTTPS,34074,108598 +1724168400,Notion,4119,10891 +1724168700,__unknown,1197216,4234612 +1724168700,Bing,3505,6483 +1724168700,Google APIs,15534,36375 +1724168700,Google,5547,35418 +1724168700,STUN,12956,11692 +1724168700,HTTPS,1018064,26077305 +1724168700,Apple sites,2055,10899 +1724168700,Avast,2528,25176 +1724168700,SSL client,425419,1047278 +1724168700,Microsoft,55598,178225 +1724168700,Mail.Ru,195847,216349 +1724168700,Yandex,57712,281673 +1724168700,Nvidia,78145,200469 +1724168700,New Relic,3734,40740 +1724168700,Office 365,1787,7187 +1724168700,Microsoft Visual Studio,1608,5308 +1724168700,Telegram,3580,7834 +1724168700,GISMETEO,1819,2976 +1724168700,DNS over HTTPS,24226,66122 +1724168700,__unknown,431066,1487456 +1724168700,Apple Update,1731,5147 +1724168700,Bing,3274,19754 +1724168700,Google APIs,28063,87915 +1724168700,Google,18329,45002 +1724168700,MSN,12636,28069 +1724168700,Apple Store,26030,106538 +1724168700,Firefox,1375,6965 +1724168700,Gmail,5666,12952 +1724168700,HTTP,6593,15373 +1724168700,iTunes,1099,6163 +1724168700,Launchpad,640,496 +1724168700,Microsoft Update,4126,19718 +1724168700,Reddit,234062,271911 +1724168700,SSL,5040,16611 +1724168700,YouTube,30315,1063194 +1724168700,VKontakte,68448,37326 +1724168700,Odnoklassniki,11040,20346 +1724168700,Steam,8680,22778 +1724168700,Advanced Packaging Tool,640,496 +1724168700,IMAPS,4111,11280 +1724168700,HTTPS,4215966,11847820 +1724168700,WhatsApp,3360,7341 +1724168700,Apple sites,4710,24247 +1724168700,iCloud,45522,67918 +1724168700,Mozilla,2117,5496 +1724168700,Avast,1122,12983 +1724168700,Opera,2490,4986 +1724168700,SSL client,3254821,6706962 +1724168700,Amazon Web Services,3319,15374 +1724168700,Microsoft,533256,272975 +1724168700,VeriSign,505,2080 +1724168700,Mail.Ru,788442,1080000 +1724168700,Yandex,151791,1140776 +1724168700,Ubuntu,491,461 +1724168700,Nvidia,479463,1756182 +1724168700,Microsoft CryptoAPI,938,2422 +1724168700,Microsoft WNS,922,1076 +1724168700,Google Play,636946,62718 +1724168700,Apple Music,5103,10949 +1724168700,Office 365,56709,295935 +1724168700,Sharepoint Online,2176,13353 +1724168700,Microsoft Windows Live Services Authentication,1607,6261 +1724168700,Sway,6207,14021 +1724168700,Office Mobile,56704,38282 +1724168700,Telegram,9480,88018 +1724168700,GISMETEO,6130,69368 +1724168700,Google Inbox,5630,30970 +1724168700,Zoom,7148,11614 +1724168700,Azure cloud portal,2747,7799 +1724168700,Edge Chromium,527,1945 +1724168700,Stripe,6880,6495 +1724168700,DNS over TLS,9502,15504 +1724168700,DNS over HTTPS,33556,110428 +1724168700,__unknown,492,360 +1724168700,SSL,38788,430101 +1724168700,SSL,1697,3928 +1724168700,Google,55790,49829 +1724168700,HTTPS,101426,76161 +1724168700,SSL client,55790,49829 +1724168700,__unknown,215,225 +1724168700,__unknown,63435,74563 +1724168700,SSL,303794,11080111 +1724168700,HTTPS,56051,26996 +1724168700,SSL client,56051,26996 +1724168700,Google Play,56051,26996 +1724168700,__unknown,712,476 +1724168700,SSL,85936,998806 +1724168700,HTTPS,17147,26448 +1724168700,SSL client,3989,8135 +1724168700,Outbrain,3989,8135 +1724168700,CoAP,2646,2016 +1724168700,__unknown,1272607,315168 +1724168700,Google,22480,21856 +1724168700,Gmail,71016,358231 +1724168700,SSL,10150,13653 +1724168700,VKontakte,87044,274658 +1724168700,HTTPS,316135,1801040 +1724168700,Mozilla,1988,4556 +1724168700,SSL client,182528,659301 +1724168700,ICMP,902,0 +1724168700,DNS over HTTPS,16794,38433 +1724168700,__unknown,1721262,21292334 +1724168700,BitTorrent,153,537 +1724168700,DHCPv6,163,0 +1724168700,Google APIs,10138,27524 +1724168700,Google,186812,3160014 +1724168700,BitTorrent tracker,153,537 +1724168700,DNS,12991,0 +1724168700,Firefox,3135,3867 +1724168700,Gmail,22804,27399 +1724168700,HTTP,36636,1224003 +1724168700,iTunes,657,3498 +1724168700,NTP,630,630 +1724168700,STUN,6180,9056 +1724168700,HTTPS,831528,4431092 +1724168700,Mozilla,6846,4396 +1724168700,SSL client,314305,3754969 +1724168700,Doubleclick,7327,14335 +1724168700,Box,1404,5023 +1724168700,Microsoft,31110,1215169 +1724168700,Yandex,23714,412953 +1724168700,Nvidia,8874,21683 +1724168700,Microsoft CryptoAPI,1734,1469 +1724168700,Google Play,29604,44555 +1724168700,ICMP,27488,120 +1724168700,Firebase Crashlytics,4370,13143 +1724168700,Google Sign in,10144,16093 +1724168700,Grammarly,2268,7851 +1724168700,DNS over HTTPS,18493,45918 +1724168700,__unknown,1855366,39326472 +1724168700,Apple Update,3778,9962 +1724168700,Eset,888,553 +1724168700,Google APIs,24900,52990 +1724168700,Google,133566,302140 +1724168700,Chrome,3312,9984 +1724168700,DNS,41798,42484 +1724168700,Gmail,6554,8005 +1724168700,HTTP,84781,200796 +1724168700,Launchpad,3200,2480 +1724168700,Microsoft Update,1963,1677 +1724168700,NTP,1440,1440 +1724168700,SSL,165061,4296832 +1724168700,STUN,380,260 +1724168700,VKontakte,7981,15593 +1724168700,Advanced Packaging Tool,29164,26180 +1724168700,HTTPS,2447198,9350236 +1724168700,WhatsApp,3974,119418 +1724168700,Apple sites,75572,78693 +1724168700,iCloud,13623,28818 +1724168700,Avast,382,391 +1724168700,SSL client,415961,2726177 +1724168700,Box,1404,5023 +1724168700,Ubuntu Update Manager,22296,20531 +1724168700,NIH,1852,6803 +1724168700,Mail.Ru,12396,34566 +1724168700,Yandex,76745,2061390 +1724168700,Aliexpress,2509,5974 +1724168700,Ubuntu,4520,4319 +1724168700,Nvidia,20347,43323 +1724168700,Microsoft CryptoAPI,7492,109495 +1724168700,Sony,2129,8809 +1724168700,Microsoft NCSI,471,487 +1724168700,Apple Maps,3188,6071 +1724168700,Alibaba,2966,14072 +1724168700,Google Play,2287,8878 +1724168700,Smart AdServer,15070,22424 +1724168700,WeChat,1238,1195 +1724168700,ICMP,11668,0 +1724168700,Telegram,6854,7668 +1724168700,Google Sign in,9101,10501 +1724168700,Edge Chromium,6804,21452 +1724168700,DNS over TLS,4779,18834 +1724168700,DNS over HTTPS,44104,139937 +1724169000,__unknown,415934,471605 +1724169000,Google,107236,137270 +1724169000,HTTPS,923865,972244 +1724169000,SSL client,107236,137270 +1724169000,__unknown,259924,249519 +1724169000,Dropbox,1638,1266 +1724169000,Google APIs,23097,18058 +1724169000,Google,79921,199302 +1724169000,MSN,10713,71225 +1724169000,HTTP,943,974 +1724169000,iTunes,2822,5558 +1724169000,YouTube,1799,2080 +1724169000,TeamViewer,1233,6631 +1724169000,HTTPS,2465994,1181508 +1724169000,Mozilla,8358,18134 +1724169000,SSL client,662622,788258 +1724169000,Microsoft,12029,28941 +1724169000,VeriSign,943,974 +1724169000,Mail.Ru,252938,149811 +1724169000,Yandex,79910,50624 +1724169000,Nvidia,3952,8776 +1724169000,Microsoft CryptoAPI,943,974 +1724169000,Exchange Online,19520,30545 +1724169000,Office 365,32327,52268 +1724169000,Sharepoint Online,4068,101636 +1724169000,Yandex Market,120208,13821 +1724169000,Telegram,3582,7894 +1724169000,GISMETEO,2190,9404 +1724169000,Google Inbox,5899,20178 +1724169000,__unknown,480550,1589645 +1724169000,Bing,3450,6548 +1724169000,Dropbox,21525,241442 +1724169000,Google APIs,7155,20519 +1724169000,Google,353848,349093 +1724169000,MSN,14006,44594 +1724169000,Wikipedia,20512,341069 +1724169000,Gmail,2996,6867 +1724169000,HTTP,31875,855431 +1724169000,iTunes,10665,59347 +1724169000,Microsoft Update,748,252 +1724169000,Skype,13107,18306 +1724169000,SSL,55312,12231 +1724169000,YouTube,9407,34392 +1724169000,VKontakte,5498,11566 +1724169000,Advanced Packaging Tool,1214,1193 +1724169000,HTTPS,6658761,34599103 +1724169000,WhatsApp,4736,11375 +1724169000,Apple sites,91890,1364164 +1724169000,iCloud,143655,189338 +1724169000,Mozilla,3297,6330 +1724169000,Avast,2338,8896 +1724169000,SSL client,2896180,8565307 +1724169000,Amazon Web Services,49106,1503225 +1724169000,Ubuntu Update Manager,1214,1193 +1724169000,Microsoft,511851,1297759 +1724169000,NIH,13269,24772 +1724169000,Mail.Ru,1057902,1734742 +1724169000,Yandex,279302,709356 +1724169000,Intel,1140,4625 +1724169000,Nvidia,8093,12743 +1724169000,Microsoft CryptoAPI,748,252 +1724169000,Apple Maps,32170,138230 +1724169000,Exchange Online,21750,48316 +1724169000,Office 365,105236,1060578 +1724169000,Dropbox Download,16691,887 +1724169000,Microsoft Windows Live Services Authentication,67935,179096 +1724169000,Mendeley,5060,8798 +1724169000,Gmail attachment,1529,11051 +1724169000,Office Mobile,48296,30352 +1724169000,Telegram,2312927,61820 +1724169000,Google Sign in,7372,10330 +1724169000,Google Inbox,5988,8110 +1724169000,Grammarly,2602,6750 +1724169000,DNS over TLS,8484,21874 +1724169000,Microsoft Teams,7799,49559 +1724169000,DNS over HTTPS,9421,31436 +1724169000,_err_4655,6918,3900 +1724169000,SSL,9724,14879 +1724169000,__unknown,234,132 +1724169000,SSL,1201,1994 +1724169000,__unknown,95855,119925 +1724169000,SSL,5612,5491 +1724169000,DNS over HTTPS,203721,469246 +1724169000,__unknown,187,228 +1724169000,SSL,1201,1934 +1724169000,__unknown,160,158 +1724169000,SSL,5495,9396 +1724169000,HTTPS,5605,10223 +1724169000,SSL client,5605,10223 +1724169000,SiteScout,5605,10223 +1724169000,ICMP,4980,4980 +1724169000,__unknown,172809,311473 +1724169000,HTTP,1160,749 +1724169000,SSL,14000,28301 +1724169000,HTTPS,1999622,316978 +1724169000,SSL client,57401,19120 +1724169000,Google Play,57401,19120 +1724169000,__unknown,47699,111264 +1724169000,Google,6279,12168 +1724169000,SSL,36150,17249 +1724169000,STUN,1148,1036 +1724169000,VKontakte,9282,14890 +1724169000,HTTPS,646700,433211 +1724169000,APNS,33868,13321 +1724169000,SSL client,628848,165297 +1724169000,Google Play,577271,122325 +1724169000,ICMP,7920,7860 +1724169000,DNS over HTTPS,2148,2593 +1724169000,__unknown,1677071,7997874 +1724169000,BitTorrent,463,496 +1724169000,DHCPv6,978,0 +1724169000,Google APIs,40545,23258 +1724169000,Google Drive,6042,10019 +1724169000,Google,54658,132991 +1724169000,BitTorrent tracker,153,0 +1724169000,DNS,15026,0 +1724169000,Gmail,8612,15719 +1724169000,Google Analytics,1996,6235 +1724169000,HTTP,3156,6200 +1724169000,NTP,26490,6990 +1724169000,SSL,6667,14704 +1724169000,STUN,7592,10238 +1724169000,YouTube,20374,174894 +1724169000,HTTPS,463316,1700033 +1724169000,SSL client,303597,616662 +1724169000,Doubleclick,7565,15330 +1724169000,Box,1404,5023 +1724169000,Microsoft,731,661 +1724169000,Mail.Ru,2403,4865 +1724169000,Yandex,27421,49278 +1724169000,Nvidia,122843,163566 +1724169000,Smart AdServer,3798,5146 +1724169000,Google Hangouts,3688,5391 +1724169000,ICMP,28404,0 +1724169000,DNS over HTTPS,23970,60881 +1724169000,CoAP,980,720 +1724169000,__unknown,1086198,6697466 +1724169000,DHCPv6,163,0 +1724169000,Google APIs,5570,19943 +1724169000,Google,98828,160375 +1724169000,MSN,578,502 +1724169000,DNS,37250,35846 +1724169000,Google Analytics,1332,6642 +1724169000,HTTP,134958,2070685 +1724169000,iTunes,2893,12691 +1724169000,Launchpad,3200,2480 +1724169000,Microsoft Update,1288,1014 +1724169000,NetBIOS-dgm,493,0 +1724169000,NTP,16260,6510 +1724169000,SSL,8467,19245 +1724169000,STUN,8610,2150 +1724169000,YouTube,13002,17228 +1724169000,VKontakte,6902,17072 +1724169000,Odnoklassniki,2042,6696 +1724169000,Advanced Packaging Tool,30236,27939 +1724169000,HTTPS,1646250,17780684 +1724169000,WhatsApp,1634,5753 +1724169000,Apple sites,3819,11810 +1724169000,Mozilla,2553,5099 +1724169000,Avast,2968,7418 +1724169000,Opera,2842,4343 +1724169000,SSL client,319594,5100007 +1724169000,Box,1404,5023 +1724169000,Ubuntu Update Manager,20435,19521 +1724169000,Microsoft,39190,1959658 +1724169000,VeriSign,566,2141 +1724169000,Mail.Ru,6081,7909 +1724169000,Yandex,114313,4535573 +1724169000,Ubuntu,7673,7152 +1724169000,Nvidia,24968,54780 +1724169000,Microsoft CryptoAPI,9395,14730 +1724169000,Microsoft NCSI,520,553 +1724169000,Microsoft WNS,2543,24602 +1724169000,Apple Maps,3629,8517 +1724169000,33Across,1071,7019 +1724169000,Optimizely,3206,136985 +1724169000,Smart AdServer,7662,11542 +1724169000,Lijit,6927,19138 +1724169000,Google Hangouts,855,7032 +1724169000,ICMP,3519,0 +1724169000,ICMP for IPv6,70,0 +1724169000,QUIC,2879,1534 +1724169000,Telegram,8655,9664 +1724169000,Edge Chromium,4636,15406 +1724169000,DNS over TLS,15099,57396 +1724169000,DNS over HTTPS,58680,185990 +1724169000,Notion,2206,8786 +1724169300,__unknown,125049,151791 +1724169300,HTTPS,65406,53604 +1724169300,SSL client,65406,53604 +1724169300,Yandex,35391,38818 +1724169300,Google Play,30015,14786 +1724169300,DNS over HTTPS,46730,103643 +1724169300,__unknown,1013,6541 +1724169300,VKontakte,77005,109894 +1724169300,HTTPS,301178,324535 +1724169300,Mozilla,1789,3395 +1724169300,SSL client,278715,290093 +1724169300,Mail.Ru,196797,171686 +1724169300,Yandex,3124,5118 +1724169300,__unknown,227720,232598 +1724169300,Bing,7899,10563 +1724169300,Google APIs,11193,13275 +1724169300,Google,4382,13580 +1724169300,HTTP,942,4476 +1724169300,HTTPS,669410,5256004 +1724169300,Apple sites,7318,28725 +1724169300,iCloud,2324,19775 +1724169300,Mozilla,6873,16650 +1724169300,SSL client,247579,630928 +1724169300,Microsoft,47147,278511 +1724169300,Mail.Ru,79723,88653 +1724169300,Yandex,8587,13029 +1724169300,Microsoft CryptoAPI,942,4476 +1724169300,Google Play,21458,3113 +1724169300,Rambler,1888,6187 +1724169300,New Relic,1993,6325 +1724169300,Office 365,7917,56013 +1724169300,Mendeley,20302,27427 +1724169300,Telegram,11701,29687 +1724169300,GISMETEO,1635,11148 +1724169300,Google Sign in,5022,4059 +1724169300,Google Inbox,10596,29062 +1724169300,Grammarly,1322,4833 +1724169300,DNS over HTTPS,27255,71465 +1724169300,__unknown,289288,1435126 +1724169300,Bing,22236,22675 +1724169300,Dropbox,2752,1348 +1724169300,Google APIs,23912,128884 +1724169300,Google,518088,506712 +1724169300,MSN,7717,33076 +1724169300,Yahoo!,7731,6497 +1724169300,Adobe Software,4768,72480 +1724169300,HTTP,2548,4095 +1724169300,iTunes,4907,37585 +1724169300,Launchpad,574,430 +1724169300,SSL,675504,12256237 +1724169300,YouTube,54789,481652 +1724169300,VKontakte,16608,28488 +1724169300,Odnoklassniki,2864,5789 +1724169300,Advanced Packaging Tool,1788,1623 +1724169300,IMAPS,7048,27556 +1724169300,HTTPS,25223864,6376714 +1724169300,Apple sites,11580,44379 +1724169300,iCloud,39418,58347 +1724169300,Mozilla,3566,6048 +1724169300,Avast,1484,6019 +1724169300,Opera,4035,5317 +1724169300,SSL client,24298627,4260756 +1724169300,Amazon Web Services,1369,8558 +1724169300,CloudFront,3772,1093 +1724169300,Ubuntu Update Manager,1214,1193 +1724169300,Microsoft,96527,191260 +1724169300,NIH,5610,46102 +1724169300,Mail.Ru,22918950,1593533 +1724169300,Yandex,283872,559236 +1724169300,Ubuntu,293,527 +1724169300,Microsoft Azure,2568,12200 +1724169300,Nvidia,20860,50609 +1724169300,uTorrent,19459,39024 +1724169300,Apple Maps,5254,30003 +1724169300,Google Play,112231,63165 +1724169300,Exchange Online,2613,14472 +1724169300,Office 365,14425,55733 +1724169300,Microsoft Windows Live Services Authentication,50641,120018 +1724169300,Weborama,4306,7126 +1724169300,Office Mobile,36563,53520 +1724169300,Telegram,23380,515608 +1724169300,Edge Chromium,467,1945 +1724169300,DNS over TLS,20591,45238 +1724169300,Microsoft Teams,2908,7073 +1724169300,DNS over HTTPS,221683,516454 +1724169300,SSL,2342,3868 +1724169300,__unknown,2342,3868 +1724169300,SSL,76102,31934 +1724169300,Google,683921,301870 +1724169300,HTTPS,683921,301870 +1724169300,SSL client,683921,301870 +1724169300,SSL,2342,3868 +1724169300,HTTPS,282279,99777 +1724169300,SSL,23689,33613 +1724169300,ICMP,3854,0 +1724169300,__unknown,217,227 +1724169300,SSL,1201,1934 +1724169300,VKontakte,13712,21448 +1724169300,HTTPS,13712,21448 +1724169300,SSL client,13712,21448 +1724169300,ICMP,1558,0 +1724169300,__unknown,521734,1427564 +1724169300,SSL,2416,3868 +1724169300,HTTPS,662269,465748 +1724169300,SSL client,312973,65451 +1724169300,Google Play,312973,65451 +1724169300,ICMP,3444,0 +1724169300,__unknown,22284,132788 +1724169300,SSL,8268,9568 +1724169300,HTTPS,75665,65761 +1724169300,ICMP,6038,1680 +1724169300,DNS over HTTPS,2495,5069 +1724169300,__unknown,5457024,12529543 +1724169300,BITS,3079,6070 +1724169300,BitTorrent,463,694 +1724169300,Google APIs,16688,49942 +1724169300,Google Drive,27338,226220 +1724169300,Google,279585,2844797 +1724169300,BitTorrent tracker,153,198 +1724169300,Chrome,1335,929 +1724169300,DNS,11420,0 +1724169300,HTTP,13848,32971 +1724169300,NTP,630,630 +1724169300,SSL,4684,7796 +1724169300,STUN,11244,8714 +1724169300,VKontakte,17681,18678 +1724169300,Odnoklassniki,3439,9007 +1724169300,HTTPS,731472,5527244 +1724169300,WhatsApp,2520,14512 +1724169300,Apple sites,4143,14451 +1724169300,Mozilla,9407,16206 +1724169300,SSL client,440578,3731756 +1724169300,Box,1404,5023 +1724169300,Yandex,12505,208082 +1724169300,Microsoft CryptoAPI,6484,20137 +1724169300,Google Play,27146,26293 +1724169300,Smart AdServer,3797,5145 +1724169300,ICMP,107871,2308 +1724169300,ICMP for IPv6,70,0 +1724169300,Telegram,4668,11269 +1724169300,Sberbank of Russia,35132,300060 +1724169300,Grammarly,2313,7852 +1724169300,DNS over HTTPS,30367,77255 +1724169300,CoAP,1568,1152 +1724169300,__unknown,2467834,36099711 +1724169300,DHCPv6,978,0 +1724169300,Google APIs,21167,34576 +1724169300,Google,72284,105329 +1724169300,Adobe Software,4561,6380 +1724169300,Chrome,1761,1452 +1724169300,DNS,46961,40810 +1724169300,HTTP,105010,233015 +1724169300,Internet Explorer,822,660 +1724169300,Launchpad,3200,2480 +1724169300,Microsoft Update,2605,2163 +1724169300,_err_742,782,7491 +1724169300,NTP,1440,1440 +1724169300,SSL,21313,48672 +1724169300,STUN,570,378 +1724169300,VKontakte,18067,40803 +1724169300,Odnoklassniki,5838,14180 +1724169300,Steam,1815,42208 +1724169300,Advanced Packaging Tool,28416,26137 +1724169300,HTTPS,1365038,20961952 +1724169300,Apple sites,2563,27135 +1724169300,iCloud,28214,173894 +1724169300,Avast,382,391 +1724169300,SSL client,592670,12366922 +1724169300,Ad Nexus,1234,764 +1724169300,Box,1404,5023 +1724169300,Ubuntu Update Manager,19730,18437 +1724169300,Mail.Ru,3998,6517 +1724169300,Yandex,368670,11836273 +1724169300,Ubuntu,6217,6112 +1724169300,Microsoft CryptoAPI,6340,5448 +1724169300,Microsoft NCSI,454,487 +1724169300,Apple Maps,5482,18734 +1724169300,Google Play,30432,21082 +1724169300,Smart AdServer,7596,10292 +1724169300,Google Hangouts,3304,23857 +1724169300,ICMP,1704,0 +1724169300,Telegram,12311,14794 +1724169300,Sberbank of Russia,3199,13636 +1724169300,Google Sign in,5363,5235 +1724169300,Google Inbox,5137,5093 +1724169300,Edge Chromium,4109,14164 +1724169300,DNS over TLS,7685,33386 +1724169300,DNS over HTTPS,93174,275368 +1724169300,DeepL Translator,2191,7698 +1724169600,__unknown,155884,110131 +1724169600,HTTP,9140,12240 +1724169600,__unknown,755,10860 +1724169600,Dropbox,122962,16115 +1724169600,HTTPS,141785,34964 +1724169600,SSL client,122962,16115 +1724169600,__unknown,20909,33046 +1724169600,Skype,8371,12229 +1724169600,HTTPS,437362,348045 +1724169600,SSL client,46460,48969 +1724169600,Microsoft,2695,15983 +1724169600,Yandex,35394,20757 +1724169600,__unknown,145903,2483432 +1724169600,Google APIs,17899,78700 +1724169600,Google,69494,1415775 +1724169600,MSN,2857,8503 +1724169600,Google Analytics,5051,7139 +1724169600,iTunes,3915,80548 +1724169600,SSL,493046,11203177 +1724169600,VKontakte,27805,25654 +1724169600,HTTPS,735862,6798717 +1724169600,Apple sites,2091,8421 +1724169600,Mozilla,2314,1698 +1724169600,Avast,1182,13210 +1724169600,SSL client,420205,2016895 +1724169600,Microsoft,37430,64694 +1724169600,Mail.Ru,176021,164059 +1724169600,Yandex,27477,83836 +1724169600,Nvidia,33105,30397 +1724169600,Rambler,1945,1658 +1724169600,Office 365,4323,21797 +1724169600,Microsoft Visual Studio,1609,5306 +1724169600,Telegram,18917,104253 +1724169600,Stripe,5687,5500 +1724169600,__unknown,670387,6830453 +1724169600,Google APIs,12918,45963 +1724169600,Google,21781,59094 +1724169600,MSN,8252,24661 +1724169600,Dell,1111,3917 +1724169600,Gmail,2664,6977 +1724169600,HTTP,5194,5357 +1724169600,Microsoft Update,651,636 +1724169600,SSL,585312,8329598 +1724169600,VKontakte,102841,419093 +1724169600,Advanced Packaging Tool,1879,1742 +1724169600,IMAPS,6640,23317 +1724169600,HTTPS,4273897,27867436 +1724169600,WhatsApp,3300,7477 +1724169600,Apple sites,18439,68219 +1724169600,iCloud,80659,141695 +1724169600,Avast,1346,13246 +1724169600,SSL client,3025596,10425164 +1724169600,Baidu,1822,11067 +1724169600,CloudFront,1247,6828 +1724169600,Ubuntu Update Manager,1292,1212 +1724169600,Microsoft,218650,390077 +1724169600,NIH,1925,8385 +1724169600,Mail.Ru,1156575,2483788 +1724169600,Yandex,1025910,5659457 +1724169600,Ubuntu,587,530 +1724169600,Nvidia,265513,877282 +1724169600,Microsoft CryptoAPI,1703,1522 +1724169600,Apple Maps,6106,23806 +1724169600,Rambler,1945,1657 +1724169600,Exchange Online,1358,7968 +1724169600,Office 365,4281,22045 +1724169600,Microsoft Windows Live Services Authentication,70811,130545 +1724169600,OneDrive,1102,8226 +1724169600,Office Mobile,8005,16334 +1724169600,Telegram,120,120 +1724169600,Azure cloud portal,1519,7227 +1724169600,Edge Chromium,527,1365 +1724169600,Grammarly,12630,10008 +1724169600,DNS over HTTPS,61709,184552 +1724169600,_err_4655,2292,1405 +1724169600,__unknown,56491133,341016741 +1724169600,SSL,17745,33799 +1724169600,SSL,2342,3868 +1724169600,SSL,12714,21748 +1724169600,ICMP,3444,0 +1724169600,__unknown,289121,232486 +1724169600,ICMP,3698,0 +1724169600,__unknown,173148,180097 +1724169600,SSL,7026,11844 +1724169600,HTTPS,2690,6186 +1724169600,Apple Maps,2690,6186 +1724169600,__unknown,0,1251 +1724169600,__unknown,6557,74 +1724169600,Google,12243,15128 +1724169600,SSL,1141,1994 +1724169600,HTTPS,57391,46791 +1724169600,SSL client,12243,15128 +1724169600,__unknown,34137,8911 +1724169600,SSL,2342,3868 +1724169600,__unknown,220162,722527 +1724169600,SSL,49245,47581 +1724169600,HTTPS,50328,131914 +1724169600,APNS,21461,5850 +1724169600,Apple sites,5675,9235 +1724169600,SSL client,33275,39178 +1724169600,Yandex,3654,10622 +1724169600,Google Hangouts,2485,13471 +1724169600,ICMP,18282,1680 +1724169600,DNS over HTTPS,16990,40498 +1724169600,__unknown,2432715,24259323 +1724169600,BitTorrent,463,496 +1724169600,DHCPv6,163,0 +1724169600,Google APIs,181262,180292 +1724169600,Google,145341,645483 +1724169600,Android browser,457,407 +1724169600,BitTorrent tracker,153,0 +1724169600,DNS,20008,0 +1724169600,Gmail,26963,48456 +1724169600,HTTP,1684,9409 +1724169600,NTP,13380,3720 +1724169600,SSL,6251,5349 +1724169600,STUN,1926,1710 +1724169600,YouTube,16400,84662 +1724169600,VKontakte,38558,66838 +1724169600,Odnoklassniki,3499,8871 +1724169600,HTTPS,749071,5967116 +1724169600,SSL client,477129,1134638 +1724169600,Box,1404,5023 +1724169600,Microsoft,633,8025 +1724169600,Mail.Ru,1042,638 +1724169600,Microsoft CryptoAPI,594,977 +1724169600,Microsoft WNS,633,8025 +1724169600,Apple Maps,1451,4966 +1724169600,Google Play,56998,76600 +1724169600,ICMP,54294,0 +1724169600,Firebase Crashlytics,3931,13247 +1724169600,DNS over HTTPS,26531,71980 +1724169600,__unknown,2249848,24767764 +1724169600,DHCPv6,978,0 +1724169600,Google APIs,2477,6685 +1724169600,Google,65509,413377 +1724169600,MSN,577,501 +1724169600,QQ,414,1584 +1724169600,Chrome,1130,968 +1724169600,DNS,36317,39274 +1724169600,Gmail,8670,15292 +1724169600,HTTP,96924,106654 +1724169600,Launchpad,3134,2190 +1724169600,Microsoft Update,4586,3847 +1724169600,NTP,14190,4440 +1724169600,SSL,15836,40896 +1724169600,STUN,190,118 +1724169600,VKontakte,4589,9865 +1724169600,Advanced Packaging Tool,29080,25972 +1724169600,HTTPS,835619,5662660 +1724169600,WhatsApp,2117,5981 +1724169600,Apple sites,1693,6115 +1724169600,iCloud,29457,56676 +1724169600,Avast,1146,1173 +1724169600,SSL client,205314,2022662 +1724169600,Pubmatic,2444,4911 +1724169600,Box,1404,5023 +1724169600,Ubuntu Update Manager,21154,19470 +1724169600,Microsoft,2169,2964 +1724169600,Mail.Ru,3999,6517 +1724169600,Yandex,62529,1422267 +1724169600,Ubuntu,7342,7070 +1724169600,Microsoft CryptoAPI,10912,9148 +1724169600,Microsoft WNS,577,501 +1724169600,Apple Maps,2070,4417 +1724169600,Scorecard Research,3036,7881 +1724169600,Google Play,1055,7649 +1724169600,Smart AdServer,7782,11896 +1724169600,Lijit,2262,12422 +1724169600,Google Hangouts,797,7092 +1724169600,ICMP,10835,0 +1724169600,Telegram,22601,155423 +1724169600,Edge Chromium,7798,22478 +1724169600,DNS over TLS,9748,35244 +1724169600,DNS over HTTPS,80918,225705 +1724169900,__unknown,2462729,683791 +1724169900,HTTP,15456052,456826428 +1724169900,_err_742,15456052,456826428 +1724169900,DNS over HTTPS,53979,126495 +1724169900,__unknown,54607,63270 +1724169900,HTTPS,42433,5589 +1724169900,SSL client,42433,5589 +1724169900,Dropbox Download,42433,5589 +1724169900,__unknown,9110,508 +1724169900,HTTPS,37475,55218 +1724169900,Google Analytics,3174,6491 +1724169900,SSL,34791,26312 +1724169900,HTTPS,2158453,16789408 +1724169900,SSL client,1740047,2525809 +1724169900,Mail.Ru,1451644,2341630 +1724169900,Google Play,36877,12420 +1724169900,Mendeley,128981,140758 +1724169900,Yandex Market,119371,24510 +1724169900,__unknown,352456,736103 +1724169900,Google,66873,852838 +1724169900,Yahoo!,12429,5364 +1724169900,SSL,555321,12131900 +1724169900,VKontakte,13844,29751 +1724169900,HTTPS,1368400,5951519 +1724169900,Apple sites,1882,6737 +1724169900,iCloud,4594,9580 +1724169900,SSL client,751702,1203767 +1724169900,Microsoft,21633,31560 +1724169900,Mail.Ru,49319,51982 +1724169900,Yandex,252728,112036 +1724169900,Nvidia,45404,13065 +1724169900,Apple Maps,2973,6427 +1724169900,Google Play,268123,28184 +1724169900,Rambler,1954,6807 +1724169900,New Relic,2376,1556 +1724169900,Office 365,1498,7344 +1724169900,Telegram,1583,1888 +1724169900,GISMETEO,1999,2977 +1724169900,Google Sign in,4310,8153 +1724169900,Microsoft Teams,2736,35833 +1724169900,__unknown,173086,106696 +1724169900,Bing,2127,9795 +1724169900,Dropbox,8942,6976 +1724169900,Google APIs,41845,55036 +1724169900,Google,1769758,3214154 +1724169900,MSN,6433,37432 +1724169900,Dell,1051,4369 +1724169900,HTTP,3652,21462 +1724169900,Skype,4306,87858 +1724169900,SSL,634077,9799918 +1724169900,YouTube,1847,4750 +1724169900,VKontakte,81700,143736 +1724169900,Odnoklassniki,7372,14328 +1724169900,IMAPS,6916,27622 +1724169900,HTTPS,5100185,10480792 +1724169900,WhatsApp,9127,23602 +1724169900,Apple sites,9523,24311 +1724169900,iCloud,3543,10248 +1724169900,Mozilla,5033,11089 +1724169900,Avast,3331,10024 +1724169900,SSL client,4151392,7544881 +1724169900,Ad Nexus,18667,12206 +1724169900,Baidu,6700,24380 +1724169900,Samsung,3960,31069 +1724169900,Amazon Web Services,1155,7160 +1724169900,Microsoft,369823,533159 +1724169900,Stack Overflow,1145,4692 +1724169900,NIH,5286,15466 +1724169900,Mail.Ru,731815,1259782 +1724169900,Yandex,648296,1433755 +1724169900,Nvidia,145247,145599 +1724169900,Microsoft CryptoAPI,534,916 +1724169900,Apple Maps,2008,7627 +1724169900,Google Play,89526,16744 +1724169900,Rambler,631,4620 +1724169900,New Relic,2053,6325 +1724169900,Exchange Online,3749,8064 +1724169900,Office 365,23210,47626 +1724169900,AdRoll,14958,42377 +1724169900,Microsoft Windows Live Services Authentication,39565,112914 +1724169900,Weborama,4626,6879 +1724169900,OneDrive,3375,10542 +1724169900,Demandbase,2442,9925 +1724169900,Yandex Market,33477,76725 +1724169900,Sway,3690,8112 +1724169900,Office Mobile,34409,20888 +1724169900,Telegram,9606,71902 +1724169900,Google Sign in,7431,10332 +1724169900,Google Inbox,4907,4990 +1724169900,Zoom,111502,43282 +1724169900,DNS over HTTPS,17627,61084 +1724169900,Adobe Update,3851,72792 +1724169900,_err_4655,3705,4198 +1724169900,SSL,1141,1994 +1724169900,__unknown,43157,1384014 +1724169900,SSL,4624,7736 +1724169900,SSL,3483,5922 +1724169900,HTTPS,22642,28842 +1724169900,SSL,1081,1934 +1724169900,__unknown,5371,59859 +1724169900,SSL,21076,37711 +1724169900,HTTPS,3542,5683 +1724169900,__unknown,33740,227767 +1724169900,Google,26829,152167 +1724169900,iTunes,5214,38112 +1724169900,SSL,12349,12966 +1724169900,HTTPS,205616,585296 +1724169900,SSL client,33427,195263 +1724169900,Apple Maps,3034,11274 +1724169900,ICMP,18438,9600 +1724169900,DNS over HTTPS,7015,19390 +1724169900,CoAP,1568,1152 +1724169900,__unknown,2635460,51267537 +1724169900,BITS,1857,4585 +1724169900,BitTorrent,310,496 +1724169900,DHCPv6,163,0 +1724169900,Google APIs,13531,52209 +1724169900,Google,77959,450288 +1724169900,DNS,15827,0 +1724169900,Gmail,29823,25070 +1724169900,HTTP,4459,12249 +1724169900,NetBIOS-dgm,493,0 +1724169900,NTP,990,990 +1724169900,SSL,1201,1934 +1724169900,STUN,570,378 +1724169900,YouTube,6819,40566 +1724169900,VKontakte,29165,128953 +1724169900,Odnoklassniki,3499,8945 +1724169900,HTTPS,545242,3290394 +1724169900,WhatsApp,2672,19075 +1724169900,Apple sites,51107,71662 +1724169900,SSL client,276570,913233 +1724169900,Doubleclick,2712,6888 +1724169900,Box,1404,5023 +1724169900,Google Play,37724,77573 +1724169900,ICMP,5820,60 +1724169900,Telegram,19830,105617 +1724169900,Google Sign in,11224,11994 +1724169900,Google Inbox,5639,18980 +1724169900,Grammarly,2291,7912 +1724169900,DNS over HTTPS,9151,27779 +1724169900,Notion,3673,7170 +1724169900,__unknown,1036433,5574939 +1724169900,Apple Update,1921,5073 +1724169900,BitTorrent,153,537 +1724169900,Eset,888,553 +1724169900,Google APIs,3804,6734 +1724169900,Google,163543,828621 +1724169900,Adobe Software,8847,12182 +1724169900,BitTorrent tracker,153,537 +1724169900,Chrome,10537,17409 +1724169900,DNS,40995,39798 +1724169900,HTTP,111482,147025 +1724169900,Internet Explorer,506,929 +1724169900,Launchpad,3200,2480 +1724169900,Microsoft Update,1925,1523 +1724169900,NTP,1710,1710 +1724169900,SSL,13722,18523 +1724169900,STUN,1744,1310 +1724169900,VKontakte,121575,646867 +1724169900,Advanced Packaging Tool,31764,29233 +1724169900,HTTPS,1034764,5792621 +1724169900,Apple sites,5040,14409 +1724169900,iCloud,1583,5420 +1724169900,Mozilla,9892,9737 +1724169900,Avast,888,1320 +1724169900,SSL client,412514,2894706 +1724169900,Box,1404,5023 +1724169900,Amazon Web Services,1369,7046 +1724169900,Ubuntu Update Manager,20741,19587 +1724169900,Microsoft,3544,8066 +1724169900,Mail.Ru,5741,21359 +1724169900,Yandex,66960,1292277 +1724169900,Ubuntu,8673,8088 +1724169900,Microsoft CryptoAPI,3491,4974 +1724169900,Google Play,7831,4475 +1724169900,Smart AdServer,3858,5147 +1724169900,ICMP,7906,0 +1724169900,Telegram,11678,46186 +1724169900,Edge Chromium,8792,25685 +1724169900,Grammarly,1960,7405 +1724169900,DNS over TLS,5857,23847 +1724169900,DNS over HTTPS,49599,165856 +1724169900,Notion,1367,6405 +1724170200,__unknown,844508,1505672 +1724170200,Google Analytics,4302,9999 +1724170200,HTTPS,446362,6426088 +1724170200,SSL client,4302,9999 +1724170200,HTTPS,245802,13771 +1724170200,SSL client,240986,9815 +1724170200,Dropbox Download,240986,9815 +1724170200,__unknown,0,41916 +1724170200,SSL,305742,7325502 +1724170200,HTTPS,105879,44451 +1724170200,SSL client,12443,2165 +1724170200,Google Play,12443,2165 +1724170200,Dropbox,1844,1735 +1724170200,Google APIs,7845,13198 +1724170200,Google,23404,46582 +1724170200,HTTPS,1178532,23068416 +1724170200,SSL client,979816,22946476 +1724170200,Yandex,940268,22843584 +1724170200,Brightcove,6455,41377 +1724170200,__unknown,88702,123094 +1724170200,Dropbox,1653,1165 +1724170200,Eset,1893,1252 +1724170200,Google APIs,12293,84140 +1724170200,Google,14923,58409 +1724170200,MSN,1049,7215 +1724170200,HTTP,5054,11948 +1724170200,Reddit,11534,9237 +1724170200,Safari,3161,10696 +1724170200,SSL,1328851,32819925 +1724170200,YouTube,19190,1280683 +1724170200,HTTPS,4601124,24676854 +1724170200,Apple sites,1922,9542 +1724170200,Mozilla,19269,59782 +1724170200,Avast,1346,13166 +1724170200,SSL client,3124839,6599956 +1724170200,Baidu,5738,25978 +1724170200,Samsung,60305,2115077 +1724170200,Microsoft,18089,71059 +1724170200,Mail.Ru,595516,2434692 +1724170200,Yandex,1104199,295553 +1724170200,Nvidia,31943,25634 +1724170200,Google Play,1215869,78247 +1724170200,Telegram,3678,7810 +1724170200,GISMETEO,2194,9409 +1724170200,Google Inbox,10968,31664 +1724170200,DNS over HTTPS,28633,68137 +1724170200,__unknown,29027107,11531977 +1724170200,Bing,9767,22921 +1724170200,BITS,5737,80719 +1724170200,Google APIs,8842,22686 +1724170200,Google,1075344,1294740 +1724170200,MSN,9885,23608 +1724170200,HTTP,15550,88086 +1724170200,Internet Explorer,4643,786 +1724170200,iTunes,12019,10853 +1724170200,Microsoft Update,124939,238271 +1724170200,Reddit,30341,34924 +1724170200,SSL,843331,11943057 +1724170200,VKontakte,14503,78780 +1724170200,Odnoklassniki,9200,16895 +1724170200,Advanced Packaging Tool,1274,1193 +1724170200,IMAPS,6784,27622 +1724170200,HTTPS,12944947,37910967 +1724170200,APNS,11383,5430 +1724170200,Apple sites,2312,11779 +1724170200,iCloud,66431,141891 +1724170200,Mozilla,8008,27821 +1724170200,Avast,6061,4793 +1724170200,SSL client,5660683,33735510 +1724170200,Box,1344,3961 +1724170200,Samsung,13991,18796 +1724170200,Ubuntu Update Manager,1274,1193 +1724170200,Microsoft,454078,548308 +1724170200,NIH,10343,41458 +1724170200,Mail.Ru,2317581,8479300 +1724170200,Yandex,1084741,21919659 +1724170200,Nvidia,125271,143219 +1724170200,Microsoft CryptoAPI,2104,2917 +1724170200,Apple Maps,2065,7494 +1724170200,Google Play,38813,23238 +1724170200,Apple Music,4489,10446 +1724170200,Exchange Online,2242,6749 +1724170200,Office 365,12540,232988 +1724170200,Sharepoint Online,10456,38925 +1724170200,Microsoft Windows Live Services Authentication,108409,278301 +1724170200,Hola,8898,13516 +1724170200,Yandex Market,15720,8566 +1724170200,Office Mobile,39087,27278 +1724170200,Telegram,24707,184931 +1724170200,Google Inbox,15369,60069 +1724170200,Zoom,24738,172994 +1724170200,Grammarly,12541,9796 +1724170200,DNS over HTTPS,11553,44540 +1724170200,_err_4655,1235,1399 +1724170200,Lenovo,3197,11898 +1724170200,__unknown,1844,720 +1724170200,SSL,5101,8268 +1724170200,HTTPS,17972,400650 +1724170200,__unknown,84,60 +1724170200,Google,16543,24778 +1724170200,HTTPS,16543,24778 +1724170200,SSL client,16543,24778 +1724170200,__unknown,46601,105723 +1724170200,__unknown,4610,15251 +1724170200,HTTPS,31830,29095 +1724170200,ICMP,42886,0 +1724170200,__unknown,42247,77037 +1724170200,Google,8388,15010 +1724170200,SSL,2711,9256 +1724170200,HTTPS,41019,213220 +1724170200,SSL client,11708,25842 +1724170200,Yandex,3320,10832 +1724170200,ICMP,2050,0 +1724170200,Telegram,27680,157937 +1724170200,__unknown,117075,39677 +1724170200,HTTPS,60154,357594 +1724170200,SSL client,3602,10818 +1724170200,Google Play,3602,10818 +1724170200,ICMP,574,0 +1724170200,__unknown,1349620,12137978 +1724170200,BitTorrent,463,496 +1724170200,Google APIs,11944,20671 +1724170200,Google,148484,562414 +1724170200,BitTorrent tracker,153,0 +1724170200,DNS,12645,0 +1724170200,Gmail,13736,15055 +1724170200,HTTP,5149,53890 +1724170200,Microsoft Update,646,506 +1724170200,NTP,990,990 +1724170200,SSL,56829,1050236 +1724170200,STUN,946,742 +1724170200,YouTube,13790,14928 +1724170200,VKontakte,47656,1873753 +1724170200,Steam,3906,52419 +1724170200,HTTPS,858399,5110743 +1724170200,WhatsApp,7410,341578 +1724170200,Apple sites,1638,8480 +1724170200,iCloud,5613,10938 +1724170200,SSL client,285748,2718490 +1724170200,Box,1404,5023 +1724170200,Yandex,9115,119953 +1724170200,Microsoft CryptoAPI,1243,1471 +1724170200,Google Play,7385,10772 +1724170200,Smart AdServer,3924,5937 +1724170200,Lijit,18730,62730 +1724170200,ICMP,54095,0 +1724170200,Telegram,1263,964 +1724170200,Grammarly,2329,7836 +1724170200,DNS over HTTPS,22876,64338 +1724170200,__unknown,1571817,30849109 +1724170200,Apple Update,3461,9799 +1724170200,DHCPv6,1141,0 +1724170200,Google APIs,6974,15916 +1724170200,Google,18401,38649 +1724170200,Chrome,1130,968 +1724170200,DNS,38450,36594 +1724170200,HTTP,291456,15382978 +1724170200,Internet Explorer,6284,2040 +1724170200,Launchpad,2560,1984 +1724170200,Microsoft Update,2269,1887 +1724170200,NTP,810,810 +1724170200,SSL,128446,1714935 +1724170200,STUN,1364,1148 +1724170200,VKontakte,4003,13816 +1724170200,Odnoklassniki,1982,6408 +1724170200,Advanced Packaging Tool,29211,27095 +1724170200,HTTPS,835861,3647641 +1724170200,WhatsApp,1635,5677 +1724170200,Apple sites,853,2484 +1724170200,iCloud,5911,16265 +1724170200,Avast,1146,1173 +1724170200,SSL client,118195,492269 +1724170200,Box,1404,5023 +1724170200,Flurry Analytics,10185,5405 +1724170200,Ubuntu Update Manager,22446,21263 +1724170200,Microsoft,176045,15262655 +1724170200,Mail.Ru,4057,6577 +1724170200,Siri,4703,6791 +1724170200,Yandex,35992,301397 +1724170200,Ubuntu,5480,5219 +1724170200,Microsoft CryptoAPI,5693,4834 +1724170200,Microsoft NCSI,477,553 +1724170200,Microsoft WNS,1326,15922 +1724170200,Apple Maps,1536,5049 +1724170200,Google Play,2271,8875 +1724170200,Smart AdServer,16335,26962 +1724170200,Google Hangouts,1710,14063 +1724170200,ICMP,1508,0 +1724170200,Telegram,2516,874 +1724170200,Edge Chromium,4743,12280 +1724170200,DNS over TLS,8327,25914 +1724170200,DNS over HTTPS,55602,174737 +1724170500,__unknown,244757,1411420 +1724170500,HTTPS,2367,1946 +1724170500,SSL client,2367,1946 +1724170500,Office 365,2367,1946 +1724170500,ICMP,105240,105060 +1724170500,HTTPS,23920,20567 +1724170500,Zoom,4487,6598 +1724170500,__unknown,3886,3215 +1724170500,Dropbox,139236,17552 +1724170500,HTTPS,170080,70334 +1724170500,SSL client,139236,17552 +1724170500,HTTPS,100859,131474 +1724170500,SSL client,3765,3406 +1724170500,Yandex,3765,3406 +1724170500,__unknown,3031,2288 +1724170500,Dropbox,118624,17257 +1724170500,HTTPS,165350,74032 +1724170500,SSL client,123536,24817 +1724170500,Yandex,4912,7560 +1724170500,HTTPS,142007,197922 +1724170500,SSL client,92428,141787 +1724170500,Yandex,68464,118754 +1724170500,Google Play,21040,18362 +1724170500,Xiaomi,2924,4671 +1724170500,__unknown,168423,670723 +1724170500,Bing,250102,100267 +1724170500,Dropbox,2027,3936 +1724170500,Google APIs,47780,31120 +1724170500,Google,524,333 +1724170500,Windows Live,28218,7288 +1724170500,Android browser,524,333 +1724170500,HTTP,524,333 +1724170500,Skype,2594,8282 +1724170500,SSL,1135631,27716444 +1724170500,YouTube,261725,6816561 +1724170500,TeamViewer,1508,8838 +1724170500,VKontakte,9151,12729 +1724170500,HTTPS,1721736,15982802 +1724170500,Mozilla,2314,1758 +1724170500,SSL client,808147,7380906 +1724170500,Microsoft,39411,159212 +1724170500,Mail.Ru,66891,98773 +1724170500,Yandex,23490,39199 +1724170500,Nvidia,25390,12309 +1724170500,Office 365,6771,31644 +1724170500,Mendeley,21378,30861 +1724170500,Yandex Market,15397,3397 +1724170500,Telegram,3738,7850 +1724170500,GISMETEO,2200,9702 +1724170500,Lenovo,1800,5030 +1724170500,__unknown,661224,1025988 +1724170500,Bing,12848,65347 +1724170500,Dropbox,5664,3272 +1724170500,Google APIs,22143,53780 +1724170500,Google,10332,14500 +1724170500,MSN,7032,39599 +1724170500,Windows Live,30373,17628 +1724170500,Chrome,566,469 +1724170500,Firefox,702,1129 +1724170500,HTTP,5843,6926 +1724170500,Microsoft Update,2760,7133 +1724170500,SSL,536247,7641562 +1724170500,Yahoo! Mail,95831,204170 +1724170500,TeamViewer,1451,8847 +1724170500,VKontakte,15668,27876 +1724170500,Odnoklassniki,9200,16955 +1724170500,Steam,6986,17601 +1724170500,Advanced Packaging Tool,1274,1226 +1724170500,IMAPS,95831,204170 +1724170500,HTTPS,3160858,37385231 +1724170500,WhatsApp,3300,7401 +1724170500,Apple sites,2379,56402 +1724170500,iCloud,16183,46534 +1724170500,Mozilla,2044,6364 +1724170500,SSL client,1878961,13075645 +1724170500,CloudFront,16973,88647 +1724170500,Ubuntu Update Manager,1274,1226 +1724170500,Microsoft,125782,171747 +1724170500,Mail.Ru,575191,863887 +1724170500,Yandex,420494,10101143 +1724170500,Nvidia,282649,726280 +1724170500,Apple Maps,3508,20444 +1724170500,Google Play,42940,9774 +1724170500,WeChat,2122,1441 +1724170500,Exchange Online,2929,14195 +1724170500,Office 365,18869,69941 +1724170500,Sharepoint Online,9062,276682 +1724170500,Dropbox Download,16583,1024 +1724170500,Microsoft Windows Live Services Authentication,25889,67836 +1724170500,Weborama,3359,5210 +1724170500,Hola,7955,13077 +1724170500,Yandex Market,5797,6566 +1724170500,Office Mobile,51607,33097 +1724170500,Telegram,788,792 +1724170500,Google Inbox,23246,30561 +1724170500,Stripe,7835,6521 +1724170500,DNS over HTTPS,27115,92706 +1724170500,Google,72013,107374 +1724170500,HTTPS,369458,700418 +1724170500,SSL client,72013,107374 +1724170500,DNS over HTTPS,1385,5468 +1724170500,HTTPS,51477,26304 +1724170500,DNS over HTTPS,1139,5392 +1724170500,__unknown,3628,6478 +1724170500,ICMP,7790,0 +1724170500,Google,134801,97402 +1724170500,HTTPS,1507243,636077 +1724170500,SSL client,1400768,572970 +1724170500,Google Play,1265967,475568 +1724170500,__unknown,2214,938 +1724170500,__unknown,4808,74 +1724170500,Google,53218,40442 +1724170500,Gmail,70948,199958 +1724170500,HTTPS,124166,240400 +1724170500,SSL client,124166,240400 +1724170500,ICMP,2752,0 +1724170500,__unknown,1883,8377 +1724170500,HTTPS,61522,123929 +1724170500,Apple Maps,2926,7846 +1724170500,ICMP,2718,0 +1724170500,DNS over HTTPS,4895,13585 +1724170500,CoAP,1764,1296 +1724170500,__unknown,1230747,6939067 +1724170500,BitTorrent,310,496 +1724170500,Google APIs,14091,35252 +1724170500,Google Drive,9798,4373 +1724170500,Google,265134,261334 +1724170500,Google Translate,4858,8787 +1724170500,DNS,11817,0 +1724170500,HTTP,3384,23484 +1724170500,Microsoft Update,1618,1336 +1724170500,NTP,25770,6270 +1724170500,SSL,48771,25403 +1724170500,STUN,7118,7316 +1724170500,YouTube,6328,9475 +1724170500,VKontakte,32344,14952 +1724170500,HTTPS,837136,2022777 +1724170500,WhatsApp,6009,26594 +1724170500,APNS,48771,25403 +1724170500,SSL client,451326,1249631 +1724170500,Box,1404,5023 +1724170500,Microsoft,1766,22148 +1724170500,Yandex,3654,9632 +1724170500,Microsoft CryptoAPI,1618,1336 +1724170500,Google Play,25081,17874 +1724170500,ICMP,11274,600 +1724170500,Malwarebytes,1339,8070 +1724170500,Telegram,16190,235177 +1724170500,Google Sign in,34012,833718 +1724170500,Grammarly,4512,15738 +1724170500,DNS over HTTPS,12819,33967 +1724170500,__unknown,1144819,5274223 +1724170500,Apple Update,1771,4814 +1724170500,BitTorrent,153,198 +1724170500,DHCPv6,978,0 +1724170500,Eset,1032,4240 +1724170500,Google APIs,80908,82273 +1724170500,Google Drive,5647,18553 +1724170500,Google,110291,115209 +1724170500,BitTorrent tracker,153,198 +1724170500,Chrome,565,484 +1724170500,DNS,50775,43154 +1724170500,Google Analytics,2728,28737 +1724170500,HTTP,111726,145731 +1724170500,Launchpad,3200,2480 +1724170500,NetBIOS-dgm,736,0 +1724170500,NTP,270,270 +1724170500,SSL,2743,12152 +1724170500,STUN,1636,1340 +1724170500,VKontakte,9487,29433 +1724170500,Advanced Packaging Tool,31607,28660 +1724170500,HTTPS,995462,4595148 +1724170500,WhatsApp,2240,14513 +1724170500,Apple sites,1620,7122 +1724170500,iCloud,9355,14184 +1724170500,Avast,382,391 +1724170500,SSL client,349657,2478738 +1724170500,Ubuntu Update Manager,23711,21940 +1724170500,Microsoft,4434,14244 +1724170500,VeriSign,1638,6423 +1724170500,NIH,4192,36274 +1724170500,Mail.Ru,4117,6593 +1724170500,Yandex,79824,2050305 +1724170500,Ubuntu,6462,6076 +1724170500,Intel,561,3929 +1724170500,Microsoft CryptoAPI,9391,16306 +1724170500,Microsoft NCSI,2354,2260 +1724170500,Apple Maps,1697,5178 +1724170500,33Across,2246,8058 +1724170500,Google Play,23371,28218 +1724170500,Rambler,691,4680 +1724170500,Google Hangouts,1711,7912 +1724170500,ICMP,2176,0 +1724170500,Telegram,4854,1816 +1724170500,Edge Chromium,7678,21139 +1724170500,DNS over TLS,5527,23850 +1724170500,DNS over HTTPS,79864,236814 +1724170800,__unknown,870631,3648957 +1724170800,HTTPS,40649,46649 +1724170800,HTTPS,1709030,308790 +1724170800,SSL client,1709030,308790 +1724170800,Google Play,1701285,289114 +1724170800,Exchange Online,5056,17201 +1724170800,Office 365,2689,2475 +1724170800,HTTPS,223236,7805430 +1724170800,SSL client,199894,7778311 +1724170800,Yandex,199894,7778311 +1724170800,HTTPS,32017,204720 +1724170800,SSL client,4890,23902 +1724170800,Yandex,4890,23902 +1724170800,HTTPS,93385,67048 +1724170800,SSL client,93385,67048 +1724170800,Dropbox Download,39508,4946 +1724170800,Telegram,53877,62102 +1724170800,__unknown,20330,17157 +1724170800,Google APIs,2087,7346 +1724170800,SSL,207547,3609448 +1724170800,VKontakte,19706,24627 +1724170800,HTTPS,95188,81475 +1724170800,SSL client,92539,79188 +1724170800,Yandex,7761,7998 +1724170800,Google Play,62985,39217 +1724170800,__unknown,1822029,2717329 +1724170800,Apple Update,1703,5148 +1724170800,Bing,4382,10876 +1724170800,Dropbox,1731,1317 +1724170800,Google APIs,3334,7487 +1724170800,Google,8096,5264 +1724170800,Windows Live,22159,10211 +1724170800,HTTP,1428,1014 +1724170800,Microsoft Update,1428,1014 +1724170800,Skype,10273,16438 +1724170800,SSL,1136812,30138134 +1724170800,VKontakte,57560,108807 +1724170800,HTTPS,1180967,7946449 +1724170800,Mozilla,7736,11270 +1724170800,SSL client,776542,2535084 +1724170800,Microsoft,26977,41828 +1724170800,Mail.Ru,27210,33167 +1724170800,Yandex,334754,1075685 +1724170800,Nvidia,264569,1123307 +1724170800,Microsoft CryptoAPI,1428,1014 +1724170800,Office 365,6058,84279 +1724170800,Telegram,3614,7720 +1724170800,__unknown,385326,466366 +1724170800,Apple Update,1608,5080 +1724170800,Bing,9294,16323 +1724170800,Dropbox,27780,5180 +1724170800,Google APIs,70449,138352 +1724170800,Google,1332801,1925280 +1724170800,MSN,9671,23190 +1724170800,Chrome,434,543 +1724170800,Google Analytics,4751,9156 +1724170800,HTTP,30691,2424547 +1724170800,iTunes,37196,45490 +1724170800,LiveJournal,325078,5407864 +1724170800,Skype,11057,23640 +1724170800,SSL,1523171,32739221 +1724170800,YouTube,12630,16319 +1724170800,Odnoklassniki,2822,6782 +1724170800,IMAPS,6850,27622 +1724170800,HTTPS,17985967,32340147 +1724170800,Pinterest,3753,23428 +1724170800,WhatsApp,3296,5742 +1724170800,Apple sites,46843,316854 +1724170800,iCloud,13044847,497740 +1724170800,Mozilla,6037,20315 +1724170800,Avast,322,331 +1724170800,SSL client,16515663,13382874 +1724170800,Doubleclick,2487,6353 +1724170800,Ad Nexus,9141,7381 +1724170800,CloudFront,3742,1033 +1724170800,Apple Stocks,1955,10444 +1724170800,Microsoft,83173,2524801 +1724170800,Mail.Ru,729649,3745794 +1724170800,Yandex,43012,283669 +1724170800,Microsoft Azure,451797,14623 +1724170800,Intel,1086,5113 +1724170800,Nvidia,82704,267921 +1724170800,Google Update,4340,10370 +1724170800,Microsoft CryptoAPI,2724,5560 +1724170800,Apple Maps,18590,60101 +1724170800,Google Play,12398,2208 +1724170800,Rambler,17427,178986 +1724170800,Exchange Online,3030,12934 +1724170800,Office 365,21253,84211 +1724170800,Microsoft Windows Live Services Authentication,17645,46600 +1724170800,Weborama,6604,10246 +1724170800,Office Mobile,82515,71121 +1724170800,Telegram,129179,3871721 +1724170800,Google Inbox,24268,49140 +1724170800,DNS over TLS,1944,6123 +1724170800,DNS over HTTPS,12287,42230 +1724170800,__unknown,48245,33027 +1724170800,__unknown,187,228 +1724170800,HTTPS,3469,5230 +1724170800,DNS over HTTPS,1373,5582 +1724170800,__unknown,8224,102574 +1724170800,__unknown,9506,98428 +1724170800,Telegram,829,464 +1724170800,__unknown,27024,39429 +1724170800,BITS,634,730 +1724170800,Google,90579,70535 +1724170800,HTTP,634,730 +1724170800,SSL,1901,4170 +1724170800,HTTPS,156282,245861 +1724170800,Apple sites,6405,14444 +1724170800,SSL client,98885,89149 +1724170800,Google Hangouts,1901,4170 +1724170800,ICMP,4674,0 +1724170800,Telegram,3448,12740 +1724170800,__unknown,3984197,50608809 +1724170800,BitTorrent,463,496 +1724170800,DHCPv6,163,0 +1724170800,Google APIs,5939,15663 +1724170800,Google Drive,6032,9890 +1724170800,Google,111064,190283 +1724170800,BitTorrent tracker,153,0 +1724170800,DNS,15485,0 +1724170800,Gmail,21839,38904 +1724170800,Google Analytics,7349,9802 +1724170800,HTTP,3990,10030 +1724170800,Microsoft Update,981,887 +1724170800,NTP,37710,8460 +1724170800,STUN,190,118 +1724170800,YouTube,5118,31572 +1724170800,VKontakte,16731,32665 +1724170800,IMAPS,8021,12536 +1724170800,HTTPS,741404,11365248 +1724170800,Mozilla,5373,3451 +1724170800,SSL client,263157,449617 +1724170800,Box,1404,5023 +1724170800,Samsung,722,2774 +1724170800,Stack Overflow,2553,1698 +1724170800,Yandex,2234,8094 +1724170800,Microsoft CryptoAPI,2041,4918 +1724170800,Apple Maps,1567,5003 +1724170800,Alibaba,2345,15263 +1724170800,Scorecard Research,1276,6653 +1724170800,Google Play,72785,76466 +1724170800,CloudFlare,1115,4190 +1724170800,ICMP,28331,1800 +1724170800,ICMP for IPv6,70,0 +1724170800,DNS over HTTPS,36560,102940 +1724170800,CoAP,980,720 +1724170800,__unknown,1825192,14961871 +1724170800,Google APIs,22633,52501 +1724170800,Google,23796,75259 +1724170800,Android browser,1522,1504 +1724170800,DNS,39266,40395 +1724170800,Firefox,2466,2931 +1724170800,Gmail,12463,12730 +1724170800,HTTP,197583,2823303 +1724170800,Launchpad,3200,2480 +1724170800,Microsoft Update,50901,888772 +1724170800,NTP,1080,1080 +1724170800,STUN,1554,1192 +1724170800,VKontakte,3656,5866 +1724170800,Advanced Packaging Tool,84132,1862036 +1724170800,Windows Update,46371,884709 +1724170800,HTTPS,1224180,34932284 +1724170800,WhatsApp,1859,6101 +1724170800,Apple sites,2563,27068 +1724170800,iCloud,21241,34746 +1724170800,Mozilla,6392,7079 +1724170800,Avast,830,848 +1724170800,SSL client,186616,1261654 +1724170800,Box,1404,5023 +1724170800,Amazon Web Services,53117,816508 +1724170800,Ubuntu Update Manager,76835,1856218 +1724170800,Microsoft,573,7962 +1724170800,Mail.Ru,22430,153157 +1724170800,Yandex,13432,46831 +1724170800,Ubuntu,6222,5639 +1724170800,Microsoft CryptoAPI,8973,8651 +1724170800,Microsoft WNS,573,7962 +1724170800,Rambler,692,6213 +1724170800,Office 365,1380,8208 +1724170800,ICMP,2563,60 +1724170800,Telegram,7414,7988 +1724170800,Edge Chromium,4636,13593 +1724170800,DNS over TLS,16082,40489 +1724170800,DNS over HTTPS,29242,92572 +1724171100,__unknown,3849816,2710821 +1724171100,Telegram,1256038,1080502 +1724171100,HTTPS,57634,98442 +1724171100,__unknown,628,1566 +1724171100,HTTPS,4481,105101 +1724171100,__unknown,1479,0 +1724171100,VKontakte,26121,43352 +1724171100,HTTPS,29982,51830 +1724171100,SSL client,29982,51830 +1724171100,Yandex,3861,8478 +1724171100,HTTPS,41182,115522 +1724171100,SSL client,22213,3131 +1724171100,Google Play,22213,3131 +1724171100,SSL,21675,23292 +1724171100,HTTPS,374776,412052 +1724171100,SSL client,285512,317175 +1724171100,Mail.Ru,285512,317175 +1724171100,__unknown,62289,43321 +1724171100,Google APIs,1942,7231 +1724171100,Google,59169,74778 +1724171100,MSN,1145,6322 +1724171100,Windows Live,9553,7519 +1724171100,iTunes,2694,12331 +1724171100,LiveJournal,17189,189841 +1724171100,SSL,1040984,31364301 +1724171100,YouTube,545975,18790875 +1724171100,VKontakte,15694,226066 +1724171100,HTTPS,1772375,28757258 +1724171100,Apple sites,124731,110853 +1724171100,iCloud,132265,60821 +1724171100,SSL client,1437185,22356623 +1724171100,Microsoft,49030,163627 +1724171100,Mail.Ru,72540,108265 +1724171100,Yandex,135877,128360 +1724171100,Nvidia,258331,2445650 +1724171100,Apple Maps,1829,10209 +1724171100,Apple Music,3103,9787 +1724171100,Office 365,2547,8828 +1724171100,Stripe,5400,5469 +1724171100,DNS over HTTPS,9248,23872 +1724171100,__unknown,685233,1238393 +1724171100,Apple Update,1715,5082 +1724171100,Bing,20171,77447 +1724171100,Dropbox,1670,1359 +1724171100,Google APIs,417393320,9646240 +1724171100,Google,6494618,2527459 +1724171100,MSN,27863,102958 +1724171100,Android browser,524,333 +1724171100,Gmail,10550,16143 +1724171100,HTTP,14677,282514 +1724171100,iTunes,1105,6163 +1724171100,LiveJournal,104494,1778237 +1724171100,Skype,2462,8215 +1724171100,SSL,1152756,33094296 +1724171100,YouTube,31540,17235 +1724171100,VKontakte,17626,31964 +1724171100,Steam,19160,25831 +1724171100,Advanced Packaging Tool,7552,265300 +1724171100,IMAPS,13967,36148 +1724171100,HTTPS,430737996,79024406 +1724171100,WhatsApp,6973,10609 +1724171100,Apple sites,27718,112715 +1724171100,iCloud,28677,224806 +1724171100,Mozilla,5968,28444 +1724171100,SSL client,425295643,19067426 +1724171100,Amazon Web Services,1309,8498 +1724171100,Microsoft,214005,394611 +1724171100,Mail.Ru,560637,893035 +1724171100,Yandex,160681,2908470 +1724171100,Ubuntu,527,530 +1724171100,Intel,1146,4770 +1724171100,Nvidia,18427,35118 +1724171100,Google Update,4391,10370 +1724171100,Microsoft CryptoAPI,1023,3596 +1724171100,Apple Maps,9514,36755 +1724171100,Google Play,17371,16009 +1724171100,Rambler,23387,56184 +1724171100,Office 365,5232,18028 +1724171100,Microsoft Windows Live Services Authentication,75973,111980 +1724171100,Office Mobile,31016,16352 +1724171100,Telegram,4650,52622 +1724171100,Zoom,9570,19839 +1724171100,Edge Chromium,527,1950 +1724171100,DNS over HTTPS,38912,130713 +1724171100,VKontakte,56093,46167 +1724171100,HTTPS,56093,46167 +1724171100,SSL client,56093,46167 +1724171100,ICMP,4730,0 +1724171100,DNS over HTTPS,168197,398696 +1724171100,Google,164325,109143 +1724171100,HTTPS,164325,109143 +1724171100,SSL client,164325,109143 +1724171100,__unknown,216,227 +1724171100,SSL,2467,9116 +1724171100,HTTPS,8660,11408 +1724171100,__unknown,4410,10862 +1724171100,Google,102571,94936 +1724171100,SSL,3781,10115 +1724171100,HTTPS,225856,154792 +1724171100,SSL client,225856,154792 +1724171100,Google Play,123285,59856 +1724171100,__unknown,52248,82853 +1724171100,HTTPS,28213,15964 +1724171100,__unknown,32960,1040750 +1724171100,Gmail,1473461,2138915 +1724171100,HTTPS,1480270,2162221 +1724171100,Apple sites,3320,17769 +1724171100,SSL client,1476781,2156684 +1724171100,ICMP,4454,0 +1724171100,Telegram,878,3986 +1724171100,__unknown,113762,460601 +1724171100,Google APIs,2819,14407 +1724171100,Google,21233,48234 +1724171100,HTTP,4660,21076 +1724171100,Safari,2819,14407 +1724171100,HTTPS,92381,865769 +1724171100,WhatsApp,1863,7932 +1724171100,SSL client,29387,143944 +1724171100,Samsung,772,1983 +1724171100,ICMP,10843,0 +1724171100,Google Inbox,8154,95710 +1724171100,__unknown,3255145,39798969 +1724171100,BITS,4612,77704 +1724171100,BitTorrent,310,496 +1724171100,DHCPv6,978,0 +1724171100,Google APIs,8778,21565 +1724171100,Google,83878,143921 +1724171100,DNS,16164,0 +1724171100,HTTP,6053,80473 +1724171100,NTP,12840,3090 +1724171100,STUN,760,496 +1724171100,VKontakte,2744,6041 +1724171100,Odnoklassniki,3379,8811 +1724171100,HTTPS,685842,4485787 +1724171100,Mozilla,2504,1650 +1724171100,SSL client,216412,245578 +1724171100,Box,877,5023 +1724171100,Samsung,386,992 +1724171100,Amazon Web Services,78182,13711 +1724171100,Microsoft,4612,77704 +1724171100,Stack Overflow,2712,1411 +1724171100,Microsoft CryptoAPI,596,977 +1724171100,Google Play,22672,27514 +1724171100,ICMP,51578,6180 +1724171100,Firebase Crashlytics,2210,6744 +1724171100,Telegram,2893,7200 +1724171100,Google Sign in,6228,4239 +1724171100,DNS over HTTPS,16922,47012 +1724171100,__unknown,1654781,28389577 +1724171100,BitTorrent,153,0 +1724171100,DHCPv6,163,0 +1724171100,Google APIs,21839,55496 +1724171100,Google,190022,351597 +1724171100,BitTorrent tracker,153,0 +1724171100,DNS,39724,39401 +1724171100,Gmail,6629,25122 +1724171100,Google Analytics,18882,41558 +1724171100,HTTP,777545,31397804 +1724171100,Internet Explorer,762,498 +1724171100,Launchpad,3134,2190 +1724171100,Microsoft Update,4256,3676 +1724171100,NetBIOS-dgm,243,0 +1724171100,NTP,14820,5070 +1724171100,SSL,22933,18728 +1724171100,STUN,1364,1148 +1724171100,YouTube,9416,28880 +1724171100,VKontakte,8298,58821 +1724171100,Advanced Packaging Tool,32073,29361 +1724171100,HTTPS,1087457,8801531 +1724171100,APNS,22933,18728 +1724171100,Apple sites,10629,44948 +1724171100,iCloud,7275,141046 +1724171100,Mozilla,7514,4509 +1724171100,Avast,382,391 +1724171100,SSL client,374859,1471706 +1724171100,Box,1404,5023 +1724171100,Amazon Web Services,3932,30689 +1724171100,Ubuntu Update Manager,22452,21203 +1724171100,Microsoft,680549,31189613 +1724171100,VeriSign,566,2141 +1724171100,NIH,32899,407025 +1724171100,Mail.Ru,8394,11050 +1724171100,Yandex,14829,213423 +1724171100,MDNS,364,0 +1724171100,Ubuntu,9462,9245 +1724171100,Microsoft CryptoAPI,10883,118076 +1724171100,Microsoft NCSI,514,547 +1724171100,Microsoft WNS,693,7964 +1724171100,Apple Maps,7022,21140 +1724171100,ICMP,32522,180 +1724171100,Weborama,2601,6912 +1724171100,Edge Chromium,5690,18141 +1724171100,DNS over TLS,5547,23890 +1724171100,DNS over HTTPS,64488,211624 +1724171100,DeepL Translator,2191,7638 +1724171400,__unknown,59176,55586 +1724171400,HTTPS,45616,219549 +1724171400,__unknown,31109,16050 +1724171400,SSL,161327,3370904 +1724171400,HTTPS,584458,682919 +1724171400,__unknown,1187,3522 +1724171400,HTTPS,202612,92209 +1724171400,SSL client,4350,9859 +1724171400,Yandex,4350,9859 +1724171400,__unknown,11466,9534 +1724171400,Google Analytics,5648,7960 +1724171400,HTTPS,15394,87703 +1724171400,SSL client,5648,7960 +1724171400,__unknown,10676,176896 +1724171400,SSL,39444,118822 +1724171400,HTTPS,1604508,4300361 +1724171400,SSL client,1336575,1901614 +1724171400,Mail.Ru,1314386,1877111 +1724171400,Google Play,22189,24503 +1724171400,Telegram,5398,10169 +1724171400,__unknown,629536,17822617 +1724171400,Bing,120661,1965414 +1724171400,BITS,3763,38561 +1724171400,Dropbox,3360,1426 +1724171400,Google,270008,566773 +1724171400,HTTP,14969,88466 +1724171400,SSL,868374,23181183 +1724171400,YouTube,2682,1791 +1724171400,TeamViewer,2672,15571 +1724171400,VKontakte,5185,14806 +1724171400,Advanced Packaging Tool,11206,49905 +1724171400,HTTPS,1937380,4318081 +1724171400,APNS,43731,9130 +1724171400,Apple sites,3527,20993 +1724171400,iCloud,3678,9603 +1724171400,Mozilla,10736,12787 +1724171400,SSL client,864344,2959103 +1724171400,Microsoft,62454,73259 +1724171400,Mail.Ru,35486,46974 +1724171400,Yandex,292013,184102 +1724171400,Apple Maps,1914,12157 +1724171400,Pocket,3651,1976 +1724171400,Office 365,3391,11962 +1724171400,Sharepoint Online,2500,14811 +1724171400,GISMETEO,2260,9701 +1724171400,__unknown,488319,936987 +1724171400,Bing,6850,25090 +1724171400,Dropbox,6127,222408 +1724171400,Google APIs,10006,29489 +1724171400,Google,8305,15558 +1724171400,HTTP,4402,3632 +1724171400,iTunes,10053,23785 +1724171400,LiveJournal,354741,5807917 +1724171400,Microsoft Update,160176,5407 +1724171400,SSL,398171,6267608 +1724171400,Yahoo! Mail,50164,85989 +1724171400,VKontakte,1636,4490 +1724171400,Odnoklassniki,7360,13564 +1724171400,Advanced Packaging Tool,2904,2712 +1724171400,IMAPS,54544,102511 +1724171400,HTTPS,15020807,106848898 +1724171400,WhatsApp,16311,702525 +1724171400,APNS,12262,5524 +1724171400,Apple sites,14835,171916 +1724171400,iCloud,4162550,157551 +1724171400,Dictionary.com,4733,20703 +1724171400,Mozilla,2117,5091 +1724171400,Avast,5207,25429 +1724171400,SSL client,8024450,8495019 +1724171400,Ad Nexus,129039,49989 +1724171400,Pubmatic,995,4963 +1724171400,Ubuntu Update Manager,2904,2712 +1724171400,Microsoft,67154,138361 +1724171400,Mail.Ru,639306,1044803 +1724171400,Java Update,6457,120335 +1724171400,Siri,5916,6109 +1724171400,Yandex,2215895,353103 +1724171400,Nvidia,56272,117683 +1724171400,Microsoft CryptoAPI,499,403 +1724171400,Apple Maps,3828,17771 +1724171400,Google Play,2482,8668 +1724171400,AdGear,2731,8326 +1724171400,Apple Music,7426,11826 +1724171400,Office 365,3610,18362 +1724171400,Microsoft Windows Live Services Authentication,7667,11597 +1724171400,Mendeley,3098,6716 +1724171400,Sway,4296,8517 +1724171400,Office Mobile,34147,21459 +1724171400,Telegram,252,186 +1724171400,Sberbank of Russia,1991,23095 +1724171400,Google Inbox,8453,24874 +1724171400,Grammarly,9915,9141 +1724171400,Stripe,7257,7847 +1724171400,DNS over HTTPS,12551,48618 +1724171400,HTTPS,40353,62480 +1724171400,SSL client,40353,62480 +1724171400,Telegram,40353,62480 +1724171400,DNS over HTTPS,4041,14179 +1724171400,__unknown,289244,358351 +1724171400,HTTPS,71375,98213 +1724171400,SSL client,55125,71307 +1724171400,Telegram,55125,71307 +1724171400,HTTPS,9518,13432 +1724171400,SSL client,9518,13432 +1724171400,DNS over HTTPS,11902,21314 +1724171400,HTTPS,59474,45633 +1724171400,DNS over HTTPS,10424,26934 +1724171400,__unknown,0,1736 +1724171400,Google,66962,45395 +1724171400,HTTPS,185174,105005 +1724171400,SSL client,66962,45395 +1724171400,ICMP,902,0 +1724171400,__unknown,12105,12633 +1724171400,Google,19233,54581 +1724171400,HTTPS,274775,414213 +1724171400,Mozilla,15010,4921 +1724171400,SSL client,34243,59502 +1724171400,Telegram,1351,892 +1724171400,CoAP,1960,1440 +1724171400,__unknown,1062457,2019449 +1724171400,BitTorrent,463,496 +1724171400,Google APIs,95039,42805 +1724171400,Google,111277,162550 +1724171400,Google Translate,4275,8146 +1724171400,BitTorrent tracker,153,0 +1724171400,Chrome,364,259 +1724171400,DNS,14787,0 +1724171400,Gmail,5712,7594 +1724171400,HTTP,9309,30492 +1724171400,NetBIOS-dgm,250,0 +1724171400,NTP,1800,1800 +1724171400,STUN,2620,3820 +1724171400,Odnoklassniki,3007,8088 +1724171400,HTTPS,878705,4883314 +1724171400,SSL client,254894,648600 +1724171400,Box,1404,5023 +1724171400,Samsung,1544,3968 +1724171400,Weather.com,3632,12803 +1724171400,Microsoft,2079,17833 +1724171400,VeriSign,566,2141 +1724171400,Yandex,8664,353519 +1724171400,Microsoft CryptoAPI,4090,5756 +1724171400,Google Play,3689,5937 +1724171400,ICMP,11051,2400 +1724171400,Firebase Crashlytics,1866,6593 +1724171400,Google Sign in,6082,4104 +1724171400,Google Inbox,8044,23550 +1724171400,Grammarly,2203,7888 +1724171400,DNS over HTTPS,18080,55389 +1724171400,__unknown,1309224,19346496 +1724171400,Apple Update,1871,5532 +1724171400,DHCPv6,978,0 +1724171400,Google APIs,6493,20800 +1724171400,Google,166070,147236 +1724171400,Kaspersky,608,607 +1724171400,Chrome,1106,1148 +1724171400,DNS,37999,39192 +1724171400,Google Analytics,1276,6384 +1724171400,Google Calendar,8364,13836 +1724171400,HTTP,94145,104251 +1724171400,iTunes,6554,35442 +1724171400,Launchpad,3200,2480 +1724171400,Microsoft Update,1041,817 +1724171400,NTP,720,720 +1724171400,SSL,797,7091 +1724171400,STUN,1174,1006 +1724171400,VKontakte,1335,4424 +1724171400,Odnoklassniki,1840,3391 +1724171400,Advanced Packaging Tool,34315,31757 +1724171400,HTTPS,1339817,8769933 +1724171400,WhatsApp,1635,5753 +1724171400,Apple sites,4554,14958 +1724171400,iCloud,13435,30810 +1724171400,Avast,764,782 +1724171400,SSL client,760779,627530 +1724171400,Box,1404,5023 +1724171400,Ubuntu Update Manager,26275,24929 +1724171400,Mail.Ru,16954,43425 +1724171400,Yandex,11104,44237 +1724171400,Ubuntu,6965,6641 +1724171400,Microsoft CryptoAPI,5173,4821 +1724171400,Microsoft NCSI,633,613 +1724171400,Apple Maps,9121,26084 +1724171400,Google Play,511359,128879 +1724171400,Google Hangouts,797,7091 +1724171400,ICMP,1854,0 +1724171400,Telegram,3602,7176 +1724171400,Google Inbox,5256,109676 +1724171400,Edge Chromium,6804,21506 +1724171400,Grammarly,2331,7887 +1724171400,DNS over TLS,2290,9540 +1724171400,DNS over HTTPS,112492,323264 +1724171700,__unknown,1983276,58880091 +1724171700,SSL,42195,82351 +1724171700,HTTPS,26172,886687 +1724171700,DNS over HTTPS,54875,123321 +1724171700,__unknown,3983,22972 +1724171700,HTTPS,23790,14997 +1724171700,HTTPS,264094,106664 +1724171700,SSL client,230415,7663 +1724171700,Dropbox Download,230415,7663 +1724171700,Zoom,4426,6664 +1724171700,Dropbox,148233,22015 +1724171700,HTTPS,201577,27908 +1724171700,SSL client,201577,27908 +1724171700,Dropbox Download,53344,5893 +1724171700,HTTPS,219541,7630264 +1724171700,SSL client,51841,24109 +1724171700,Google Play,51841,24109 +1724171700,__unknown,1808363,1988360 +1724171700,Bing,9405,21600 +1724171700,Dropbox,2022,2879 +1724171700,Google,11204,17537 +1724171700,MSN,6724,12124 +1724171700,Google Analytics,4700,31339 +1724171700,HTTP,487,2679 +1724171700,SSL,1444573,45989954 +1724171700,YouTube,210016,5717587 +1724171700,Odnoklassniki,4309,25734 +1724171700,HTTPS,1473261,12446994 +1724171700,Mozilla,3167,1863 +1724171700,SSL client,882108,7164073 +1724171700,Microsoft,15665,242769 +1724171700,Mail.Ru,19956,38400 +1724171700,Yandex,535788,965644 +1724171700,Nvidia,40578,40804 +1724171700,Microsoft CryptoAPI,487,2679 +1724171700,Rubicon Project,2949,5982 +1724171700,Office 365,1749,7788 +1724171700,Demandbase,2855,8078 +1724171700,Sberbank of Russia,4446,8886 +1724171700,GISMETEO,2140,9581 +1724171700,Google Sign in,4922,8157 +1724171700,__unknown,504721,231856 +1724171700,Bing,17673,73795 +1724171700,Google APIs,3904,7508 +1724171700,Google,274414,377875 +1724171700,MSN,9464,33728 +1724171700,QQ,2159,6274 +1724171700,Yahoo!,2470,5486 +1724171700,Dell,1051,4367 +1724171700,Gmail,5951,3561 +1724171700,HTTP,5038,8956 +1724171700,Microsoft Update,54137,42586 +1724171700,Skype,3307,7945 +1724171700,SSL,1301888,31694909 +1724171700,YouTube,12218,4917 +1724171700,VKontakte,53831,70134 +1724171700,Odnoklassniki,9200,16895 +1724171700,Advanced Packaging Tool,1358,1286 +1724171700,IMAPS,5530,22102 +1724171700,HTTPS,4332504,46373911 +1724171700,WhatsApp,3164,5682 +1724171700,Apple sites,5672,27901 +1724171700,iCloud,45194,68622 +1724171700,SSL client,2807591,39422072 +1724171700,Ad Nexus,64033,29058 +1724171700,Amazon Web Services,2660,20535 +1724171700,CloudFront,1509,1062 +1724171700,Flurry Analytics,22511,6315 +1724171700,Ubuntu Update Manager,1358,1286 +1724171700,Microsoft,330209,613004 +1724171700,Mail.Ru,777021,1984440 +1724171700,Yandex,298359,8996860 +1724171700,Intel,1140,4770 +1724171700,Nvidia,683691,26722940 +1724171700,Microsoft CryptoAPI,1769,3801 +1724171700,Apple Maps,19892,491844 +1724171700,Google Play,995,15057 +1724171700,Apple Music,3623,9615 +1724171700,Office 365,21065,48493 +1724171700,Sharepoint Online,3238,94230 +1724171700,Microsoft Windows Live Services Authentication,22308,40694 +1724171700,Mendeley,8951,13285 +1724171700,Sway,5256,8183 +1724171700,Office Mobile,42888,27602 +1724171700,Telegram,2287,1686 +1724171700,Taboola,3893,4193 +1724171700,Grammarly,4383,13831 +1724171700,Stripe,5491,5416 +1724171700,DNS over TLS,2290,9333 +1724171700,DNS over HTTPS,15142,64311 +1724171700,Discord,1175,6405 +1724171700,_err_4655,1235,1399 +1724171700,SSL,3621,10771 +1724171700,SSL client,3621,10771 +1724171700,Google Hangouts,3621,10771 +1724171700,ICMP,8280,8340 +1724171700,HTTPS,22685,28128 +1724171700,__unknown,2407484,1717625 +1724171700,HTTPS,4958,7423 +1724171700,__unknown,160,4808 +1724171700,HTTPS,577643,1284082 +1724171700,ICMP,688,0 +1724171700,Telegram,3550,8724 +1724171700,__unknown,22739,92868 +1724171700,Google,15972,19231 +1724171700,SSL,1955,1668 +1724171700,HTTPS,49358,225165 +1724171700,SSL client,23421,198691 +1724171700,Google Hangouts,1955,1668 +1724171700,ICMP,1600,0 +1724171700,Font Awesome,5494,177792 +1724171700,DNS over HTTPS,5763,13788 +1724171700,__unknown,1871419,26397684 +1724171700,BitTorrent,310,496 +1724171700,DHCPv6,163,0 +1724171700,Google APIs,75080,41312 +1724171700,Google Drive,16433,21090 +1724171700,Google,100706,324147 +1724171700,Google Translate,3095,6961 +1724171700,DNS,15818,0 +1724171700,Gmail,31508,22070 +1724171700,HTTP,2306,2298 +1724171700,Microsoft Update,1287,1036 +1724171700,NetBIOS-dgm,243,0 +1724171700,NTP,23792,4152 +1724171700,STUN,1140,756 +1724171700,Odnoklassniki,5522,10508 +1724171700,HTTPS,1412926,1196297 +1724171700,WhatsApp,1911,7919 +1724171700,Mozilla,1876,4611 +1724171700,SSL client,1084549,607536 +1724171700,Box,1404,5023 +1724171700,Yandex,1313,907 +1724171700,Microsoft CryptoAPI,1847,1498 +1724171700,Google Play,836337,153772 +1724171700,ICMP,14602,1920 +1724171700,Telegram,1207,812 +1724171700,Google Sign in,6824,4298 +1724171700,Grammarly,2203,7887 +1724171700,DNS over HTTPS,15816,38547 +1724171700,__unknown,603528,1323596 +1724171700,BITS,3246,77764 +1724171700,BitTorrent,153,537 +1724171700,DHCPv6,978,0 +1724171700,Google APIs,12700,29030 +1724171700,Google,20938,50617 +1724171700,Android browser,829,630 +1724171700,BitTorrent tracker,153,537 +1724171700,Chrome,1272,1148 +1724171700,DNS,53565,51974 +1724171700,HTTP,589118,18300277 +1724171700,Launchpad,3200,2480 +1724171700,Microsoft Update,1623,1319 +1724171700,_err_742,388762,10145360 +1724171700,NTP,1440,1440 +1724171700,Skype,1041,6722 +1724171700,STUN,1174,1006 +1724171700,Wget,864,544 +1724171700,Yahoo! Mail,53781,9443 +1724171700,VKontakte,39415,270662 +1724171700,Steam,4229,98249 +1724171700,Advanced Packaging Tool,138244,7909451 +1724171700,HTTPS,861835,1097666 +1724171700,iCloud,3375,8637 +1724171700,Avast,382,391 +1724171700,SSL client,477270,501397 +1724171700,Ad Nexus,2753,3687 +1724171700,Box,1404,5023 +1724171700,Ubuntu Update Manager,92564,6308303 +1724171700,Microsoft,4649,90373 +1724171700,VeriSign,566,2140 +1724171700,Mail.Ru,2411,5855 +1724171700,Yandex,7894,27346 +1724171700,Ubuntu,43330,1599586 +1724171700,Microsoft CryptoAPI,2776,3962 +1724171700,Microsoft WNS,633,7960 +1724171700,Apple Maps,1883,7156 +1724171700,Google Play,321895,69946 +1724171700,ICMP,4718,60 +1724171700,Telegram,1689,617 +1724171700,Google Sign in,6222,4342 +1724171700,Edge Chromium,10206,28372 +1724171700,DNS over TLS,10131,27962 +1724171700,DNS over HTTPS,75176,238234 +1724172000,__unknown,69761,93556 +1724172000,__unknown,1616,2090 +1724172000,HTTPS,60950,113640 +1724172000,SSL client,60950,113640 +1724172000,Mail.Ru,15131,48661 +1724172000,Telegram,45819,64979 +1724172000,__unknown,99576,30940 +1724172000,HTTPS,94781,287417 +1724172000,SSL client,52327,64156 +1724172000,Telegram,52327,64156 +1724172000,HTTPS,74488,218764 +1724172000,SSL client,11001,14103 +1724172000,Mail.Ru,6689,7658 +1724172000,Yandex,4312,6445 +1724172000,Reddit,5971,29650 +1724172000,HTTPS,115773,72144 +1724172000,SSL client,103505,57182 +1724172000,Yandex,97534,27532 +1724172000,__unknown,1332,4463 +1724172000,__unknown,47579,46420 +1724172000,SSL,46297,51916 +1724172000,HTTPS,38773,34610 +1724172000,SSL client,31537,26533 +1724172000,Yandex,8743,23446 +1724172000,Google Play,22794,3087 +1724172000,__unknown,7662,10440 +1724172000,Google APIs,2027,7233 +1724172000,SSL,28211,255640 +1724172000,HTTPS,139317,130823 +1724172000,Dictionary.com,2814,6159 +1724172000,SSL client,112029,74989 +1724172000,Yandex,3858,36371 +1724172000,Google Play,103330,25226 +1724172000,__unknown,144301,542266 +1724172000,Bing,3372,19196 +1724172000,Google APIs,5468,4483 +1724172000,MSN,1049,7221 +1724172000,Gmail,10261,17547 +1724172000,SSL,1690945,55808630 +1724172000,TeamViewer,1449,8838 +1724172000,VKontakte,16211,24275 +1724172000,TwitchTV,13323,7740 +1724172000,HTTPS,588206,4027094 +1724172000,Mozilla,2217,5191 +1724172000,SSL client,228361,802728 +1724172000,Microsoft,39927,71035 +1724172000,Mail.Ru,20637,28913 +1724172000,Yandex,84726,582836 +1724172000,Google Play,20207,3045 +1724172000,Office 365,4778,8311 +1724172000,Telegram,35234,279713 +1724172000,GISMETEO,2134,9349 +1724172000,Xiaomi,2602,4748 +1724172000,DNS over HTTPS,2027,8087 +1724172000,__unknown,715972,12810316 +1724172000,Bing,6790,12971 +1724172000,Dropbox,12727,189462 +1724172000,Google APIs,4369,12572 +1724172000,Google,681132,8925012 +1724172000,MSN,5857,33788 +1724172000,Yahoo!,2640,5690 +1724172000,Adobe Software,629,718 +1724172000,Firefox,1479,1668 +1724172000,Gmail,3055,7250 +1724172000,HTTP,7882,112982 +1724172000,Internet Explorer,629,718 +1724172000,iTunes,3570,21696 +1724172000,Reddit,7612,11797 +1724172000,Skype,5796,92360 +1724172000,SSL,881147,24294534 +1724172000,TwitchTV,10450,7692 +1724172000,Odnoklassniki,9200,16895 +1724172000,Steam,7391,118078 +1724172000,Advanced Packaging Tool,2488,2359 +1724172000,IMAPS,10019,34592 +1724172000,HTTPS,4247132,27343435 +1724172000,WhatsApp,1634,5633 +1724172000,Apple sites,10062,46734 +1724172000,iCloud,24051,40363 +1724172000,SSL client,2577427,15044235 +1724172000,Ad Nexus,37423,25771 +1724172000,Ubuntu Update Manager,2488,2359 +1724172000,Microsoft,67896,109410 +1724172000,AccuWeather,29072,141609 +1724172000,Mail.Ru,1320536,1838356 +1724172000,Yandex,144773,2393705 +1724172000,Nvidia,104438,985326 +1724172000,Apple Maps,5739,43059 +1724172000,AdGear,2536,8386 +1724172000,Exchange Online,1335,6463 +1724172000,Office 365,13602,33800 +1724172000,Microsoft Windows Live Services Authentication,14937,27167 +1724172000,Office Mobile,33928,21460 +1724172000,Sberbank of Russia,3034,8738 +1724172000,Grammarly,12501,9921 +1724172000,DNS over HTTPS,14679,54522 +1724172000,ICMP,4838,0 +1724172000,HTTPS,11311,15133 +1724172000,SSL client,11311,15133 +1724172000,DNS over HTTPS,11311,15133 +1724172000,__unknown,215,225 +1724172000,__unknown,128180,135004 +1724172000,HTTPS,8876,10411 +1724172000,HTTPS,34605,13752 +1724172000,__unknown,2954,7172 +1724172000,HTTP,547,408 +1724172000,HTTPS,35193,18872 +1724172000,ICMP,752,0 +1724172000,__unknown,8484,11304 +1724172000,Google,5360,10977 +1724172000,HTTPS,182168,2097054 +1724172000,SSL client,5360,10977 +1724172000,ICMP,1193,0 +1724172000,CoAP,2352,1728 +1724172000,__unknown,1037202,3870873 +1724172000,BitTorrent,463,496 +1724172000,DHCPv6,163,0 +1724172000,Google APIs,1196,6137 +1724172000,Google,221410,138903 +1724172000,BitTorrent tracker,153,0 +1724172000,DNS,24638,0 +1724172000,Gmail,7219,25099 +1724172000,HTTP,1174,1006 +1724172000,NetBIOS-dgm,250,0 +1724172000,NTP,25320,5820 +1724172000,STUN,570,378 +1724172000,Odnoklassniki,3007,8147 +1724172000,HTTPS,615493,12720313 +1724172000,SSL client,286670,196394 +1724172000,Box,1404,5023 +1724172000,Microsoft,922,7534 +1724172000,Microsoft CryptoAPI,1174,1006 +1724172000,Google Play,51512,5551 +1724172000,ICMP,19763,1860 +1724172000,Telegram,815,496 +1724172000,DNS over HTTPS,38763,93018 +1724172000,__unknown,555280,1599163 +1724172000,Google APIs,7214,14853 +1724172000,Google,23708,149486 +1724172000,Adobe Software,7898,7996 +1724172000,Chrome,615,484 +1724172000,DNS,69686,56949 +1724172000,Gmail,6450,7996 +1724172000,HTTP,131961,3057046 +1724172000,Internet Explorer,762,498 +1724172000,iTunes,853,3386 +1724172000,Launchpad,3200,2480 +1724172000,NTP,13380,3630 +1724172000,STUN,1636,1340 +1724172000,VKontakte,26817,355076 +1724172000,Advanced Packaging Tool,25067,22552 +1724172000,HTTPS,578775,3489801 +1724172000,Apple sites,2243,7145 +1724172000,iCloud,11290,13448 +1724172000,Avast,2638,9698 +1724172000,SSL client,141888,1903285 +1724172000,Box,1404,5023 +1724172000,Ubuntu Update Manager,18297,16856 +1724172000,Microsoft,59879,2971418 +1724172000,Yandex,42195,1309989 +1724172000,Ubuntu,5270,5048 +1724172000,Microsoft CryptoAPI,1527,2840 +1724172000,Microsoft NCSI,574,487 +1724172000,Microsoft WNS,1266,15920 +1724172000,Apple Maps,1793,5114 +1724172000,Google Play,3872,8425 +1724172000,Office 365,940,2337 +1724172000,ICMP,1849,0 +1724172000,Weborama,6698,17891 +1724172000,Telegram,6085,14013 +1724172000,Edge Chromium,4636,15419 +1724172000,DNS over TLS,4764,18479 +1724172000,DNS over HTTPS,41055,130706 +1724172300,__unknown,43454,689272 +1724172300,HTTPS,10786430,6503420 +1724172300,HTTPS,45033,68964 +1724172300,SSL client,45033,68964 +1724172300,Telegram,45033,68964 +1724172300,__unknown,480,420 +1724172300,HTTPS,6821,9950 +1724172300,__unknown,9481,9552 +1724172300,HTTPS,365322,830806 +1724172300,HTTPS,10613,18589 +1724172300,SSL client,10613,18589 +1724172300,Yandex,10613,18589 +1724172300,__unknown,32265,2589 +1724172300,HTTPS,1870510,6912775 +1724172300,Dictionary.com,12085,367479 +1724172300,SSL client,1065600,5352055 +1724172300,Mail.Ru,857298,1040896 +1724172300,Yandex,196217,3943680 +1724172300,TwitchTV,192863,16142 +1724172300,HTTPS,742101,3369302 +1724172300,SSL client,313657,192342 +1724172300,Yandex,96153,163725 +1724172300,Simpli.fi,3317,7858 +1724172300,Google Play,21324,4617 +1724172300,__unknown,428753,220537 +1724172300,Google APIs,38702,150812 +1724172300,Google,218779,1041984 +1724172300,Google Analytics,6280,14028 +1724172300,SSL,714056,15555141 +1724172300,TeamViewer,1448,8838 +1724172300,HTTPS,2062484,3351733 +1724172300,Apple sites,2121,9853 +1724172300,SSL client,600182,2513799 +1724172300,Microsoft,26836,260208 +1724172300,Mail.Ru,220418,267029 +1724172300,Yandex,34383,642859 +1724172300,Nvidia,36320,81067 +1724172300,Office 365,3278,15072 +1724172300,Telegram,3738,7774 +1724172300,Sberbank of Russia,4399,8713 +1724172300,GISMETEO,2260,9640 +1724172300,Google Sign in,4958,3696 +1724172300,DNS over HTTPS,222,186 +1724172300,__unknown,370248,1797763 +1724172300,Bing,7613,34650 +1724172300,Google APIs,17836,37634 +1724172300,Google,5617,16901 +1724172300,MSN,10539,55813 +1724172300,HTTP,2096,2545 +1724172300,iTunes,2210,12326 +1724172300,Skype,5089,101179 +1724172300,SSL,981206,22612754 +1724172300,YouTube,5455,14782 +1724172300,VKontakte,38751,18987 +1724172300,Odnoklassniki,3680,6782 +1724172300,Advanced Packaging Tool,527,470 +1724172300,HTTPS,12285095,15213549 +1724172300,WhatsApp,3360,7341 +1724172300,Apple sites,45878,86879 +1724172300,iCloud,22448,50826 +1724172300,Avast,12006,22844 +1724172300,Opera,34344,18191 +1724172300,SSL client,1648589,3039732 +1724172300,Ad Nexus,7429,6853 +1724172300,Amazon Web Services,3439,21430 +1724172300,Microsoft,123487,252222 +1724172300,Mail.Ru,921051,1352252 +1724172300,Yandex,185028,344860 +1724172300,Aliexpress,5033,6836 +1724172300,Ubuntu,2362,5015 +1724172300,Nvidia,124645,298666 +1724172300,Microsoft CryptoAPI,1569,2075 +1724172300,Apple Maps,2902,7266 +1724172300,Alibaba,10709,43705 +1724172300,Aliyun,3692,9272 +1724172300,Google Play,12398,2052 +1724172300,Office 365,8563,46404 +1724172300,Sharepoint Online,986,7091 +1724172300,Microsoft Windows Live Services Authentication,24178,65528 +1724172300,Google Hangouts,1540,1392 +1724172300,Hola,8480,13220 +1724172300,Office Mobile,15616,10555 +1724172300,Telegram,5166,57438 +1724172300,Sberbank of Russia,5743,8713 +1724172300,Xiaomi,3127,16653 +1724172300,Microsoft Teams,4488,67880 +1724172300,DNS over HTTPS,4898,20327 +1724172300,DNS over HTTPS,593772,1304248 +1724172300,SSL,34198,7509 +1724172300,APNS,34198,7509 +1724172300,SSL client,34198,7509 +1724172300,HTTPS,171622,381822 +1724172300,__unknown,187,228 +1724172300,ICMP,5580,5580 +1724172300,__unknown,1623,11027 +1724172300,HTTPS,21567,41074 +1724172300,iCloud,6267,19777 +1724172300,SSL client,6267,19777 +1724172300,Apple Maps,2648,7124 +1724172300,__unknown,55356,60636 +1724172300,Google,97685,94730 +1724172300,HTTPS,136208,113232 +1724172300,SSL client,97685,94730 +1724172300,Telegram,755,8099 +1724172300,__unknown,8933,14013 +1724172300,Google,47643,53066 +1724172300,HTTPS,513657,26478165 +1724172300,SSL client,47643,53066 +1724172300,ICMP,948,784 +1724172300,__unknown,1500974,14758764 +1724172300,BitTorrent,310,496 +1724172300,Google APIs,8086,31459 +1724172300,Google Drive,5761,8432 +1724172300,Google,60291,130572 +1724172300,DNS,6985,0 +1724172300,Gmail,32977,21068 +1724172300,Google Analytics,1115,5850 +1724172300,HTTP,2352,4927 +1724172300,NTP,12210,2460 +1724172300,STUN,2430,3678 +1724172300,VKontakte,8934,22509 +1724172300,HTTPS,317716,1146753 +1724172300,Mozilla,7069,11013 +1724172300,SSL client,143576,627637 +1724172300,Doubleclick,2432,6355 +1724172300,Box,1404,5023 +1724172300,Microsoft,1352,4063 +1724172300,Yandex,13278,377469 +1724172300,Microsoft CryptoAPI,1000,864 +1724172300,Apple Maps,1792,5180 +1724172300,ICMP,25465,588 +1724172300,Telegram,6657,25074 +1724172300,Grammarly,2229,7887 +1724172300,DNS over HTTPS,17797,45899 +1724172300,__unknown,528124,1228584 +1724172300,BitTorrent,153,198 +1724172300,DHCPv6,978,0 +1724172300,Google APIs,21753,56203 +1724172300,Google,88407,96192 +1724172300,BitTorrent tracker,153,198 +1724172300,DNS,46625,43898 +1724172300,HTTP,85319,89684 +1724172300,Launchpad,3200,2480 +1724172300,Microsoft Update,3130,2967 +1724172300,NetBIOS-dgm,243,0 +1724172300,NTP,90,90 +1724172300,STUN,2594,2258 +1724172300,Advanced Packaging Tool,34841,31447 +1724172300,HTTPS,547900,1670002 +1724172300,iCloud,96838,118381 +1724172300,Avast,382,391 +1724172300,SSL client,224821,320661 +1724172300,Box,1404,5023 +1724172300,Ubuntu Update Manager,25009,23523 +1724172300,Mail.Ru,4916,8033 +1724172300,Yandex,5174,15720 +1724172300,Ubuntu,7973,6815 +1724172300,Microsoft CryptoAPI,8290,7595 +1724172300,ICMP,3328,0 +1724172300,Telegram,8662,101433 +1724172300,Edge Chromium,6564,18948 +1724172300,DNS over TLS,4670,20548 +1724172300,DNS over HTTPS,36667,117632 +1724172600,DNS over HTTPS,645435,1422419 +1724172600,__unknown,1144,1754 +1724172600,HTTPS,259244,173386 +1724172600,SSL client,45343,65300 +1724172600,Telegram,45343,65300 +1724172600,__unknown,16019,28785 +1724172600,HTTPS,184261,12727449 +1724172600,SSL client,5433,16099 +1724172600,Yandex,5433,16099 +1724172600,HTTPS,4441,104927 +1724172600,Windows Live,65286,15501 +1724172600,HTTPS,1668755,2385815 +1724172600,SSL client,1668755,2385815 +1724172600,Mail.Ru,1600313,2367819 +1724172600,Yandex,3156,2495 +1724172600,__unknown,816,27702 +1724172600,Dropbox,200256,23551 +1724172600,HTTPS,824945,50525 +1724172600,SSL client,813487,45969 +1724172600,Dropbox Download,613231,22418 +1724172600,ICMP,45150,0 +1724172600,__unknown,19843,311009 +1724172600,VKontakte,53362,89741 +1724172600,HTTPS,346569,264843 +1724172600,SSL client,105974,129788 +1724172600,Google Play,40941,31599 +1724172600,Undertone,11671,8448 +1724172600,__unknown,317871,209347 +1724172600,Bing,12200,220454 +1724172600,Dropbox,3900,3457 +1724172600,Google,2157,8063 +1724172600,Gmail,9799,10435 +1724172600,HTTP,943,976 +1724172600,SSL,1625648,55373486 +1724172600,YouTube,13944,7267 +1724172600,TwitchTV,4725,7446 +1724172600,HTTPS,718406,3227405 +1724172600,WhatsApp,1978,5981 +1724172600,iCloud,102853,64586 +1724172600,Mozilla,5068,10350 +1724172600,SSL client,589058,3032412 +1724172600,Microsoft,18688,55755 +1724172600,VeriSign,943,976 +1724172600,Mail.Ru,143416,146293 +1724172600,Yandex,149763,2239541 +1724172600,Nvidia,120345,249360 +1724172600,Microsoft CryptoAPI,943,976 +1724172600,Telegram,4085,8350 +1724172600,GISMETEO,2200,9405 +1724172600,__unknown,392669,163629 +1724172600,Bing,8160,17916 +1724172600,Google APIs,121782,77411 +1724172600,Google,119008,236490 +1724172600,MSN,3505,9442 +1724172600,Adobe Software,2565,4383 +1724172600,HTTP,6485,28389 +1724172600,Microsoft Update,1711,43842 +1724172600,SSL,323313,5067104 +1724172600,YouTube,20454,12326 +1724172600,VKontakte,97266,81962 +1724172600,Advanced Packaging Tool,1621,1490 +1724172600,IMAPS,6784,27622 +1724172600,HTTPS,9416550,10135678 +1724172600,WhatsApp,3486,14028 +1724172600,APNS,21895,10889 +1724172600,Apple sites,19405,61555 +1724172600,iCloud,6014241,159144 +1724172600,Mozilla,2319,5506 +1724172600,Avast,136612,280104 +1724172600,Opera,8009,12125 +1724172600,SSL client,8058328,8922547 +1724172600,Ad Nexus,10080,6285 +1724172600,Amazon Web Services,3199,21430 +1724172600,Ubuntu Update Manager,1621,1490 +1724172600,Microsoft,111202,204087 +1724172600,Mail.Ru,544654,977941 +1724172600,Yandex,416145,642681 +1724172600,Aliexpress,3729,6830 +1724172600,Intel,1140,4768 +1724172600,Nvidia,238529,5511153 +1724172600,Microsoft CryptoAPI,487,2679 +1724172600,Apple Maps,2146,7494 +1724172600,Google Play,23734,3942 +1724172600,ShareThis,3802,6510 +1724172600,Office 365,19468,137532 +1724172600,Sway,4907,8578 +1724172600,Office Mobile,17303,10729 +1724172600,Sberbank of Russia,75597,376679 +1724172600,DNS over HTTPS,33954,93641 +1724172600,__unknown,15280,12243 +1724172600,HTTPS,162008,103876 +1724172600,SSL client,53838,68009 +1724172600,Telegram,53838,68009 +1724172600,__unknown,0,1736 +1724172600,ICMP,2838,0 +1724172600,HTTPS,30646,81252 +1724172600,__unknown,118932,157662 +1724172600,ICMP,2580,0 +1724172600,__unknown,11165,216639 +1724172600,HTTP,4344852,121462200 +1724172600,_err_742,4344852,121462200 +1724172600,HTTPS,122402,181951 +1724172600,ICMP,738,0 +1724172600,Telegram,6509,132937 +1724172600,__unknown,11986,239654 +1724172600,HTTPS,508583,12127939 +1724172600,SSL client,2148,2592 +1724172600,ICMP,2336,1680 +1724172600,DNS over HTTPS,2148,2592 +1724172600,__unknown,1252223,6483254 +1724172600,BitTorrent,463,496 +1724172600,DHCPv6,163,0 +1724172600,Google APIs,11278,19674 +1724172600,Google Drive,5981,9881 +1724172600,Google,29407,78999 +1724172600,BitTorrent tracker,153,0 +1724172600,DNS,18155,0 +1724172600,Gmail,23745,29615 +1724172600,Google Analytics,4858,30203 +1724172600,HTTP,1517,1247 +1724172600,Microsoft Update,641,507 +1724172600,NTP,900,900 +1724172600,STUN,570,378 +1724172600,VKontakte,21785,7951 +1724172600,HTTPS,977545,2531926 +1724172600,WhatsApp,3337,15848 +1724172600,Apple sites,2052,54304 +1724172600,iCloud,4675,8676 +1724172600,Mozilla,3981,6101 +1724172600,SSL client,135042,361746 +1724172600,Box,1404,5023 +1724172600,Microsoft CryptoAPI,1517,1247 +1724172600,Google ads,2774,6320 +1724172600,Google Play,7330,10875 +1724172600,ICMP,71697,392 +1724172600,DNS over HTTPS,8922,22710 +1724172600,DeepL Translator,13584,89174 +1724172600,__unknown,583223,5778245 +1724172600,Apple Update,1783,4932 +1724172600,DHCPv6,978,0 +1724172600,Google APIs,3609,14521 +1724172600,Google Drive,1115,7775 +1724172600,Google,36714,112497 +1724172600,Adobe Software,3184,5395 +1724172600,Chrome,868,526 +1724172600,DNS,42832,40282 +1724172600,HTTP,1497824,40290812 +1724172600,Launchpad,2560,1984 +1724172600,_err_742,1419128,40181531 +1724172600,NetBIOS-dgm,250,0 +1724172600,NTP,13290,3540 +1724172600,SSL,1763,1452 +1724172600,STUN,2120,1748 +1724172600,VKontakte,1878,10602 +1724172600,Steam,757,6529 +1724172600,Advanced Packaging Tool,30497,28712 +1724172600,HTTPS,469863,1636630 +1724172600,Apple sites,2699,7895 +1724172600,iCloud,11363,13669 +1724172600,Avast,764,782 +1724172600,SSL client,160545,773832 +1724172600,Box,1404,5023 +1724172600,Amazon Web Services,59357,510681 +1724172600,Ubuntu Update Manager,22510,21850 +1724172600,Microsoft,693,7960 +1724172600,Mail.Ru,627,4676 +1724172600,Yandex,11160,44216 +1724172600,Ubuntu,8402,8093 +1724172600,Microsoft CryptoAPI,4471,3662 +1724172600,Microsoft WNS,693,7960 +1724172600,Pocket,2190,1265 +1724172600,Google Play,18140,9779 +1724172600,Rambler,691,4680 +1724172600,Google Hangouts,1763,1452 +1724172600,ICMP,3787,0 +1724172600,ICMP for IPv6,70,0 +1724172600,Telegram,7664,160820 +1724172600,Edge Chromium,9379,27663 +1724172600,Grammarly,2331,7947 +1724172600,DNS over TLS,3369,14310 +1724172600,DNS over HTTPS,40488,129007 +1724172900,__unknown,1934073,977841 +1724172900,DNS over HTTPS,26209,69674 +1724172900,__unknown,112828,2050222 +1724172900,SSL,3891492,4950974 +1724172900,__unknown,1162,1682 +1724172900,DNS over HTTPS,92428,214536 +1724172900,HTTPS,21564391,1773232427 +1724172900,Apple sites,21564391,1773232427 +1724172900,SSL client,21564391,1773232427 +1724172900,SSL,61883,1735337 +1724172900,HTTPS,64447,80419 +1724172900,SSL client,53626,69636 +1724172900,Telegram,53626,69636 +1724172900,HTTPS,71024,41860 +1724172900,__unknown,2884,1314 +1724172900,Google,1773,5499 +1724172900,HTTPS,5731,9567 +1724172900,SSL client,1773,5499 +1724172900,Telegram,2884,1314 +1724172900,__unknown,0,1641 +1724172900,Google APIs,10718,28107 +1724172900,HTTPS,125307,409554 +1724172900,SSL client,65127,94943 +1724172900,Telegram,54409,66836 +1724172900,HTTPS,202666,103258 +1724172900,__unknown,495897,3078170 +1724172900,Bing,5669,11033 +1724172900,Google APIs,35918,83740 +1724172900,Google,6455,40173 +1724172900,MSN,6815,12674 +1724172900,Google Analytics,6204,8466 +1724172900,HTTP,559,1148 +1724172900,SSL,1790134,59297029 +1724172900,TeamViewer,2960,17685 +1724172900,VKontakte,29500,269608 +1724172900,HTTPS,786520,8729235 +1724172900,Apple sites,1773,9349 +1724172900,Avast,1122,13252 +1724172900,SSL client,528568,3440801 +1724172900,Microsoft,35043,257658 +1724172900,Mail.Ru,79175,99238 +1724172900,Yandex,103454,140844 +1724172900,Nvidia,15441,36237 +1724172900,Microsoft CryptoAPI,559,1148 +1724172900,Google Play,20814,8193 +1724172900,Office 365,8589,49110 +1724172900,Firebase Crashlytics,2243,6590 +1724172900,Telegram,15866,132229 +1724172900,Sberbank of Russia,162830,2369649 +1724172900,Xiaomi,5122,8450 +1724172900,DNS over HTTPS,2318,4077 +1724172900,__unknown,1870310,5276151 +1724172900,Bing,9234,22296 +1724172900,Dropbox,462421,10015 +1724172900,Google APIs,297768,517548 +1724172900,Google,3552974,1300316 +1724172900,MSN,7764,18684 +1724172900,HTTP,6496,166730 +1724172900,SSL,511183,6316584 +1724172900,VKontakte,27313,225912 +1724172900,Odnoklassniki,1781,3451 +1724172900,Steam,577,6169 +1724172900,Advanced Packaging Tool,936,1164 +1724172900,HTTPS,16565553,56476165 +1724172900,WhatsApp,1909,10049 +1724172900,Apple sites,3982,12480 +1724172900,iCloud,17672,30330 +1724172900,Mozilla,6951,9884 +1724172900,Avast,1644,6259 +1724172900,SSL client,5754172,6045733 +1724172900,Ad Nexus,9966,5228 +1724172900,Amazon Web Services,3259,21430 +1724172900,Ubuntu Update Manager,936,1164 +1724172900,Microsoft,135502,115451 +1724172900,Mail.Ru,812408,1196133 +1724172900,Yandex,238964,2136754 +1724172900,GitHub,1526,6054 +1724172900,Ubuntu,425,461 +1724172900,Intel,1080,4625 +1724172900,Apple Maps,7521,27859 +1724172900,Office 365,10153,40958 +1724172900,Weborama,6398,5860 +1724172900,Office Mobile,28306,18659 +1724172900,Mail.ru Attachment,4894,42184 +1724172900,Telegram,3262,2668 +1724172900,Sberbank of Russia,109316,288024 +1724172900,Microsoft Teams,2896,7198 +1724172900,DNS over HTTPS,15374,60887 +1724172900,__unknown,1572,1914 +1724172900,Hamachi,5333,3795 +1724172900,__unknown,283,454 +1724172900,HTTPS,8249,11612 +1724172900,SSL client,8249,11612 +1724172900,DNS over HTTPS,8249,11612 +1724172900,__unknown,7658,234893 +1724172900,HTTPS,182967,360623 +1724172900,__unknown,55300,259295 +1724172900,Windows Live,1161,6589 +1724172900,HTTPS,27853,22731 +1724172900,SSL client,1161,6589 +1724172900,ICMP,820,0 +1724172900,CoAP,2058,1440 +1724172900,__unknown,10653,36838 +1724172900,Google,37035,39054 +1724172900,Gmail,2879,12624 +1724172900,SSL,1938,8029 +1724172900,VKontakte,38011,232381 +1724172900,IMAPS,2879,12624 +1724172900,HTTPS,134236,541780 +1724172900,SSL client,79863,292088 +1724172900,Google Hangouts,1938,8029 +1724172900,ICMP,3280,0 +1724172900,__unknown,1040827,1281829 +1724172900,BitTorrent,310,496 +1724172900,DHCPv6,163,0 +1724172900,Google APIs,7203,15119 +1724172900,Google,41074,92545 +1724172900,Chrome,1335,929 +1724172900,DNS,11473,0 +1724172900,Google Analytics,2379,6952 +1724172900,HTTP,2509,1935 +1724172900,NTP,13380,3630 +1724172900,STUN,3666,6396 +1724172900,HTTPS,430889,623648 +1724172900,WhatsApp,1807,7935 +1724172900,Apple sites,4946,9795 +1724172900,SSL client,128694,187857 +1724172900,Box,1404,5023 +1724172900,Yandex,1144,6236 +1724172900,Atlassian,3403,10216 +1724172900,Microsoft CryptoAPI,1174,1006 +1724172900,Google Play,62676,34098 +1724172900,ICMP,104064,120 +1724172900,ICMP for IPv6,70,0 +1724172900,Google Sign in,4465,7873 +1724172900,DNS over HTTPS,9804,26741 +1724172900,__unknown,612661,1237085 +1724172900,BitTorrent,463,909 +1724172900,Google APIs,7173,20120 +1724172900,Google,3753,8613 +1724172900,Windows Live,3663,19767 +1724172900,Android browser,1588,3527 +1724172900,BitTorrent tracker,153,537 +1724172900,Chrome,631,484 +1724172900,DNS,39877,35582 +1724172900,Gmail,6622,8173 +1724172900,HTTP,1391586,36655500 +1724172900,Internet Explorer,762,660 +1724172900,Launchpad,3200,2190 +1724172900,Microsoft Update,2916,2411 +1724172900,_err_742,1318265,36433190 +1724172900,NTP,12570,2820 +1724172900,STUN,1174,1006 +1724172900,VKontakte,107008,389104 +1724172900,Advanced Packaging Tool,29077,156746 +1724172900,HTTPS,646925,2611872 +1724172900,Apple sites,1816,4489 +1724172900,iCloud,14368,28639 +1724172900,Mozilla,4179,2803 +1724172900,Avast,382,391 +1724172900,SSL client,225370,1556897 +1724172900,Box,1404,5023 +1724172900,Ubuntu Update Manager,21672,150774 +1724172900,Microsoft,693,7962 +1724172900,Yandex,37455,974834 +1724172900,Ubuntu,5406,5227 +1724172900,Microsoft CryptoAPI,5805,4936 +1724172900,Microsoft WNS,693,7962 +1724172900,uTorrent,2667,6369 +1724172900,Google Play,21175,38908 +1724172900,ICMP,3890,0 +1724172900,JetBrains,1793,6760 +1724172900,Telegram,3144,1080 +1724172900,Edge Chromium,8265,24428 +1724172900,Grammarly,2212,7887 +1724172900,DNS over TLS,11336,42906 +1724172900,DNS over HTTPS,53255,176310 +1724173200,__unknown,18953319,6608954 +1724173200,Telegram,318178,501332 +1724173200,ICMP,18920,0 +1724173200,HTTPS,9012,11732 +1724173200,HTTPS,2202675,1840481 +1724173200,Zoom,2202675,1840481 +1724173200,HTTPS,12139,8712 +1724173200,SSL client,12139,8712 +1724173200,Mail.Ru,12139,8712 +1724173200,__unknown,97367,1710180 +1724173200,__unknown,154090,4772995 +1724173200,HTTPS,166364,372441 +1724173200,SSL client,166364,372441 +1724173200,DNS over HTTPS,166364,372441 +1724173200,HTTPS,26683,33591 +1724173200,HTTPS,10387,6588 +1724173200,__unknown,60730,59061 +1724173200,SSL,42172,148458 +1724173200,HTTPS,390645,10684156 +1724173200,SSL client,25426,10470 +1724173200,Google Play,21320,4389 +1724173200,Telegram,1288,1466 +1724173200,Xiaomi,4106,6081 +1724173200,__unknown,299514,248663 +1724173200,Bing,5048,8506 +1724173200,Dropbox,1647,1519 +1724173200,Google APIs,5418,12849 +1724173200,Google,4300,15400 +1724173200,MSN,1145,6377 +1724173200,Google Analytics,5679,9270 +1724173200,SSL,1938847,64447632 +1724173200,TwitchTV,109874,11102 +1724173200,HTTPS,964179,4590143 +1724173200,Mozilla,2117,5091 +1724173200,SSL client,622502,1309193 +1724173200,Microsoft,13448,37112 +1724173200,Mail.Ru,365450,540583 +1724173200,Yandex,32902,616041 +1724173200,Atlassian,42683,13156 +1724173200,Google Play,22135,4125 +1724173200,Office 365,2620,7390 +1724173200,Telegram,3708,7834 +1724173200,Xiaomi,8036,20672 +1724173200,DNS over HTTPS,0,15429 +1724173200,__unknown,634228,4286478 +1724173200,Dropbox,12446,4310 +1724173200,Google APIs,46233,201289 +1724173200,Google,9156,122727 +1724173200,MSN,1051,7377 +1724173200,Yahoo!,19656,16356 +1724173200,Dell,1051,4366 +1724173200,DNS,188,316 +1724173200,Gmail,5814,6553 +1724173200,HTTP,1795,1510 +1724173200,Microsoft Update,581,377 +1724173200,SSL,566550,11439690 +1724173200,VKontakte,2316,6571 +1724173200,TwitchTV,38063,8352 +1724173200,Advanced Packaging Tool,1214,1133 +1724173200,IMAPS,12598,34175 +1724173200,HTTPS,5100090,101905481 +1724173200,WhatsApp,1575,5715 +1724173200,Apple sites,10190,42873 +1724173200,iCloud,40215,61695 +1724173200,Mozilla,3026,5723 +1724173200,Avast,1745,6076 +1724173200,SSL client,1519715,2156176 +1724173200,Ubuntu Update Manager,1214,1133 +1724173200,Microsoft,128157,110315 +1724173200,Mail.Ru,581981,957129 +1724173200,Yandex,78191,186226 +1724173200,Microsoft CryptoAPI,581,377 +1724173200,Apple Maps,1870,7494 +1724173200,Google Play,410686,204084 +1724173200,Rambler,15537,8163 +1724173200,Office 365,20199,97230 +1724173200,Google Hangouts,2794,9245 +1724173200,Office Mobile,73010,62981 +1724173200,Telegram,132,528 +1724173200,Sberbank of Russia,10867,17582 +1724173200,Taboola,3460,3740 +1724173200,Zoom,1583578,94370982 +1724173200,Stripe,3871,5213 +1724173200,DNS over HTTPS,11981,48896 +1724173200,HTTPS,2155,4462 +1724173200,SSL,1002,7853 +1724173200,SSL client,1002,7853 +1724173200,Google Hangouts,1002,7853 +1724173200,ICMP,2752,0 +1724173200,__unknown,47488,28686 +1724173200,HTTPS,38260,18423 +1724173200,SSL client,5781,7312 +1724173200,CloudFlare,5781,7312 +1724173200,__unknown,5757,6393 +1724173200,HTTPS,4333,7716 +1724173200,ICMP,14940,14880 +1724173200,__unknown,19696,6815 +1724173200,Google,19407,28222 +1724173200,Gmail,35502,23974 +1724173200,HTTPS,78684,134039 +1724173200,SSL client,54909,52196 +1724173200,ICMP,4018,0 +1724173200,__unknown,1969450,24270624 +1724173200,BitTorrent,153,0 +1724173200,Google APIs,4285,15755 +1724173200,Google,78130,307826 +1724173200,BitTorrent tracker,153,0 +1724173200,DNS,9049,0 +1724173200,Gmail,5598,8400 +1724173200,Google Analytics,5128,14316 +1724173200,HTTP,2617,10392 +1724173200,Kerberos,155,0 +1724173200,Microsoft Update,2057,9929 +1724173200,NetBIOS-dgm,243,0 +1724173200,NTP,540,540 +1724173200,STUN,2810,3938 +1724173200,YouTube,2679,17405 +1724173200,VKontakte,3524,5857 +1724173200,Odnoklassniki,3007,8145 +1724173200,HTTPS,912361,3409546 +1724173200,Mozilla,2677,1036 +1724173200,SSL client,138544,830274 +1724173200,Box,1404,5023 +1724173200,Yandex,1191,6091 +1724173200,Microsoft CryptoAPI,2617,10392 +1724173200,ICMP,26583,780 +1724173200,JetBrains,20981,421029 +1724173200,Telegram,1123,520 +1724173200,DNS over HTTPS,35095,92779 +1724173200,CoAP,882,720 +1724173200,__unknown,641548,1911760 +1724173200,Apple Update,2363,5619 +1724173200,DHCPv6,1141,0 +1724173200,Google,31821,103292 +1724173200,DNS,45108,42706 +1724173200,HTTP,81582,199520 +1724173200,iTunes,1129,6099 +1724173200,Launchpad,3134,2480 +1724173200,Microsoft Update,1993,2050 +1724173200,NTP,13470,3720 +1724173200,STUN,1636,1340 +1724173200,VKontakte,11791,24495 +1724173200,Advanced Packaging Tool,37558,164585 +1724173200,HTTPS,1041907,3314185 +1724173200,Apple sites,4274,34331 +1724173200,Avast,764,782 +1724173200,SSL client,92221,601263 +1724173200,Box,1404,5023 +1724173200,Ubuntu Update Manager,30219,158323 +1724173200,Mail.Ru,8675,13383 +1724173200,Yandex,19580,365415 +1724173200,Ubuntu,4630,4243 +1724173200,Microsoft CryptoAPI,5011,4776 +1724173200,Rambler,692,6213 +1724173200,ICMP,935,0 +1724173200,Telegram,4511,1547 +1724173200,Edge Chromium,527,1365 +1724173200,DNS over TLS,6738,28625 +1724173200,DNS over HTTPS,42639,137702 +1724173500,HTTPS,46365,62703 +1724173500,SSL client,46365,62703 +1724173500,Notion,46365,62703 +1724173500,__unknown,110099,50781 +1724173500,Google,776104,491247 +1724173500,HTTPS,784536,499053 +1724173500,SSL client,784536,499053 +1724173500,Yandex,8432,7806 +1724173500,SSL,341761,10821100 +1724173500,HTTPS,7965,2641 +1724173500,HTTPS,4564,9735 +1724173500,SSL client,4564,9735 +1724173500,Yandex,4564,9735 +1724173500,HTTPS,334025,141372 +1724173500,Dropbox,139343,22436 +1724173500,HTTPS,540110,122094 +1724173500,SSL client,493694,61103 +1724173500,Mail.Ru,21500,23595 +1724173500,Dropbox Download,332851,15072 +1724173500,__unknown,1701,17027 +1724173500,Google,30307,25375 +1724173500,VKontakte,26030,27386 +1724173500,HTTPS,154901,337105 +1724173500,SSL client,64210,55920 +1724173500,Yandex,7873,3159 +1724173500,__unknown,593695,4480529 +1724173500,Google APIs,15638,68585 +1724173500,Google,12138,21428 +1724173500,Yahoo!,7913,6497 +1724173500,HTTP,937,3300 +1724173500,SSL,858415,19886842 +1724173500,HTTPS,296422,1586203 +1724173500,Mozilla,9978,9519 +1724173500,SSL client,127811,418192 +1724173500,Microsoft,34324,156417 +1724173500,Mail.Ru,27790,43795 +1724173500,Yandex,7279,38910 +1724173500,Microsoft CryptoAPI,937,3300 +1724173500,Apple Maps,2924,7462 +1724173500,Office 365,2626,11088 +1724173500,Telegram,3678,7834 +1724173500,GISMETEO,2134,9286 +1724173500,Stripe,5934,6656 +1724173500,Microsoft Teams,2994,49311 +1724173500,DNS over HTTPS,37314,89728 +1724173500,__unknown,436887,8610390 +1724173500,Apple Update,1771,5156 +1724173500,Bing,1986,9329 +1724173500,Dropbox,2598,1390 +1724173500,Google APIs,10442,37586 +1724173500,Google,2410962,2669798 +1724173500,MSN,15484,61129 +1724173500,Yahoo!,2520,5690 +1724173500,Dell,1051,4368 +1724173500,HTTP,18275,1001279 +1724173500,Microsoft Update,922,828 +1724173500,Skype,5129,87995 +1724173500,SSL,560560,12187708 +1724173500,VKontakte,17351,39628 +1724173500,Odnoklassniki,5502,11622 +1724173500,Advanced Packaging Tool,2130,2056 +1724173500,IMAPS,6784,27622 +1724173500,HTTPS,4725844,18796724 +1724173500,WhatsApp,4910,13556 +1724173500,Apple sites,3726,9179 +1724173500,iCloud,39926,66592 +1724173500,Mozilla,8833,16882 +1724173500,Avast,1824,4342 +1724173500,SSL client,3723153,11390865 +1724173500,Ad Nexus,17885,10115 +1724173500,Ubuntu Update Manager,1561,1490 +1724173500,Microsoft,466381,8028428 +1724173500,Mail.Ru,581765,999315 +1724173500,Yandex,107807,171269 +1724173500,Ubuntu,569,566 +1724173500,Microsoft CryptoAPI,922,828 +1724173500,Google Play,4433,8161 +1724173500,AdGear,2249,8179 +1724173500,Office 365,4341,16207 +1724173500,Microsoft Windows Live Services Authentication,12243,104412 +1724173500,Telegram,6142,67144 +1724173500,Stripe,5496,5421 +1724173500,DNS over HTTPS,11449,46032 +1724173500,HTTPS,295127,594310 +1724173500,HTTPS,22596,27921 +1724173500,HTTPS,59646,52749 +1724173500,Google,56946,40313 +1724173500,HTTPS,77573,62848 +1724173500,SSL client,56946,40313 +1724173500,ICMP,6300,6360 +1724173500,__unknown,1801,783 +1724173500,HTTPS,67833,98634 +1724173500,ICMP,1692,0 +1724173500,__unknown,561278,15024594 +1724173500,HTTP,5054960,148961222 +1724173500,_err_742,5054960,148961222 +1724173500,TeamViewer,29714,41616 +1724173500,VKontakte,3569,7410 +1724173500,HTTPS,156419,225688 +1724173500,SSL client,3569,7410 +1724173500,ICMP,692,0 +1724173500,DNS over HTTPS,5631,14430 +1724173500,__unknown,845351,3243936 +1724173500,BitTorrent,310,496 +1724173500,Google APIs,54474,36221 +1724173500,Google Drive,7373,10334 +1724173500,Google,37471,130788 +1724173500,DNS,17254,0 +1724173500,Gmail,5975,9773 +1724173500,LiveJournal,177793,1373027 +1724173500,NetBIOS-dgm,250,0 +1724173500,NTP,37036,8280 +1724173500,STUN,2240,3560 +1724173500,VKontakte,9209,17790 +1724173500,Odnoklassniki,2250,6772 +1724173500,HTTPS,487313,4201803 +1724173500,SSL client,352799,2252831 +1724173500,Box,1404,5023 +1724173500,CloudFront,2195,8012 +1724173500,Mail.Ru,6774,6632 +1724173500,Yandex,31442,626721 +1724173500,Google Play,5069,9635 +1724173500,ICMP,18925,0 +1724173500,Google Sign in,11370,12103 +1724173500,DNS over HTTPS,11929,33325 +1724173500,__unknown,497729,1999868 +1724173500,BitTorrent,153,198 +1724173500,DHCPv6,978,0 +1724173500,Google APIs,15817,43335 +1724173500,Google Drive,11279,112894 +1724173500,Google,89975,154783 +1724173500,Adobe Software,6368,10805 +1724173500,BitTorrent tracker,153,198 +1724173500,DNS,41164,40648 +1724173500,Gmail,6698,10260 +1724173500,HTTP,77276,150735 +1724173500,Launchpad,2560,1984 +1724173500,LiveJournal,156638,2786841 +1724173500,Microsoft Update,1994,1934 +1724173500,NTP,630,630 +1724173500,STUN,570,378 +1724173500,YouTube,637,7041 +1724173500,Steam,3936,83470 +1724173500,Advanced Packaging Tool,28097,25536 +1724173500,HTTPS,762015,4411617 +1724173500,Apple sites,1787,13218 +1724173500,Mozilla,9296,20030 +1724173500,Avast,382,391 +1724173500,SSL client,342639,3655769 +1724173500,Box,1404,5023 +1724173500,Ubuntu Update Manager,20733,19210 +1724173500,Yandex,30568,477169 +1724173500,Ubuntu,6504,6182 +1724173500,Microsoft CryptoAPI,7223,8654 +1724173500,Microsoft NCSI,1499,1461 +1724173500,Google Play,1515,1230 +1724173500,Rambler,9955,10245 +1724173500,ICMP,1530,0 +1724173500,Telegram,8421,33077 +1724173500,Edge Chromium,1761,6019 +1724173500,DNS over TLS,1079,4770 +1724173500,DNS over HTTPS,46046,149329 +1724173800,__unknown,198724,829805 +1724173800,__unknown,3194,4146 +1724173800,SSL,228772,4497663 +1724173800,Google,51736,68207 +1724173800,HTTPS,187097,237087 +1724173800,SSL client,51736,68207 +1724173800,HTTPS,8366268,5043155 +1724173800,SSL client,5010083,476471 +1724173800,Google Play,5010083,476471 +1724173800,Skype,19928,18959 +1724173800,HTTPS,32060,37881 +1724173800,SSL client,32060,37881 +1724173800,Yandex,7021,11317 +1724173800,Sharepoint Online,5111,7605 +1724173800,HTTPS,20895,409096 +1724173800,SSL,36691,75656 +1724173800,HTTPS,119051,402887 +1724173800,SSL client,110624,390270 +1724173800,Mail.Ru,101472,375534 +1724173800,Yandex,9152,14736 +1724173800,__unknown,24172,7973 +1724173800,HTTPS,26474,20235 +1724173800,SSL,758383,1078460 +1724173800,HTTPS,130923,393389 +1724173800,SSL client,123737,122250 +1724173800,Yandex,15440,30414 +1724173800,Google Play,50678,13164 +1724173800,Google Hangouts,3802,17618 +1724173800,Telegram,64805,349811 +1724173800,__unknown,4806,84595 +1724173800,HTTP,474,1697 +1724173800,SSL,67022,492857 +1724173800,HTTPS,231836,1371759 +1724173800,SSL client,168921,264677 +1724173800,Yandex,168921,264677 +1724173800,Microsoft CryptoAPI,474,1697 +1724173800,__unknown,137075,118051 +1724173800,Google APIs,8345,15471 +1724173800,Google,8872,240033 +1724173800,MSN,4075,6361 +1724173800,Gmail,12984,7773 +1724173800,SSL,802334,17348914 +1724173800,VKontakte,1957,5952 +1724173800,Odnoklassniki,3366,1206 +1724173800,HTTPS,6345999,1844341 +1724173800,iCloud,12583,11329 +1724173800,SSL client,5595431,1182606 +1724173800,Amazon Web Services,2146,7547 +1724173800,Microsoft,20390,39699 +1724173800,Mail.Ru,64492,251976 +1724173800,Yandex,5445056,560779 +1724173800,Office 365,6203,17758 +1724173800,Telegram,6235,25284 +1724173800,GISMETEO,2260,9698 +1724173800,Grammarly,2702,7024 +1724173800,__unknown,281351,2385224 +1724173800,Bing,6767,15843 +1724173800,Google APIs,2108,7065 +1724173800,Google,1111384,665409 +1724173800,MSN,3396,9506 +1724173800,DNS,333,447 +1724173800,HTTP,1077,947 +1724173800,iTunes,2040,6543 +1724173800,Launchpad,574,496 +1724173800,SSL,548461,3254086 +1724173800,VKontakte,3211,9854 +1724173800,Odnoklassniki,9099,19893 +1724173800,Advanced Packaging Tool,574,496 +1724173800,HTTPS,5582575,6796635 +1724173800,Apple sites,46769,64223 +1724173800,iCloud,14037,30213 +1724173800,Mozilla,2547,5084 +1724173800,SSL client,4038420,4737619 +1724173800,Microsoft,249841,386623 +1724173800,Mail.Ru,537729,989130 +1724173800,Yandex,74058,518305 +1724173800,Ubuntu,503,451 +1724173800,Microsoft Azure,3759,8416 +1724173800,Apple Maps,13553,50622 +1724173800,Google Play,1818881,399161 +1724173800,Exchange Online,1399,6467 +1724173800,Office 365,10363,37260 +1724173800,Sharepoint Online,4024,7629 +1724173800,Microsoft Windows Live Services Authentication,54059,165402 +1724173800,Weborama,7109,10956 +1724173800,Office Mobile,17589,8545 +1724173800,Mail.ru Attachment,29525,1344137 +1724173800,Telegram,4134,8284 +1724173800,Xiaomi,2464,1226 +1724173800,Grammarly,12564,9972 +1724173800,Stripe,13698,10757 +1724173800,DNS over HTTPS,4704,18582 +1724173800,__unknown,1844,720 +1724173800,__unknown,616,345 +1724173800,DNS over HTTPS,152905,357564 +1724173800,HTTPS,6655,8002 +1724173800,__unknown,160,158 +1724173800,HTTPS,16745,16765 +1724173800,ICMP,1462,0 +1724173800,__unknown,12061,3864 +1724173800,SSL,5669,12352 +1724173800,HTTPS,122212,5776406 +1724173800,SSL client,21136,21609 +1724173800,Google Play,17419,15630 +1724173800,CloudFlare,3717,5979 +1724173800,CoAP,1960,1440 +1724173800,__unknown,747052,1539442 +1724173800,BitTorrent,463,496 +1724173800,DHCPv6,163,0 +1724173800,Google APIs,38769,38901 +1724173800,Google Drive,8844,11098 +1724173800,Google,70144,129490 +1724173800,Android browser,782,526 +1724173800,BitTorrent tracker,153,0 +1724173800,Chrome,794,526 +1724173800,DNS,11856,0 +1724173800,Firefox,4488,9222 +1724173800,Gmail,7678,4147 +1724173800,HTTP,2052376,58848499 +1724173800,LiveJournal,19000,32901 +1724173800,_err_742,2046312,58838225 +1724173800,NetBIOS-dgm,243,0 +1724173800,NTP,13920,4170 +1724173800,STUN,69708,90463 +1724173800,HTTPS,475093,2394038 +1724173800,Mozilla,57470,19774 +1724173800,Avast,901,9374 +1724173800,SSL client,307219,2029149 +1724173800,Box,1404,5023 +1724173800,CloudFront,4212,20500 +1724173800,Yandex,23935,1709522 +1724173800,Google Play,73396,44057 +1724173800,ICMP,6102,0 +1724173800,Telegram,951,600 +1724173800,DNS over HTTPS,17580,47116 +1724173800,__unknown,553802,5226975 +1724173800,Apple Update,1757,6251 +1724173800,Eset,1032,4240 +1724173800,Google APIs,1906,7710 +1724173800,Google,29352,110214 +1724173800,DNS,52080,45617 +1724173800,Gmail,30979,95685 +1724173800,HTTP,81304,92761 +1724173800,Internet Explorer,6471,2112 +1724173800,Launchpad,2560,1984 +1724173800,Microsoft Update,2354,2392 +1724173800,NTP,810,810 +1724173800,SSL,1829,11332 +1724173800,STUN,452,118 +1724173800,YouTube,5535,58676 +1724173800,VKontakte,7549,14005 +1724173800,Advanced Packaging Tool,25772,23485 +1724173800,IMAPS,30979,95685 +1724173800,HTTPS,819029,1974782 +1724173800,Apple sites,6986,34655 +1724173800,iCloud,6410,12174 +1724173800,Avast,1146,1173 +1724173800,SSL client,130901,427485 +1724173800,Box,1404,5023 +1724173800,Ubuntu Update Manager,18372,17153 +1724173800,Microsoft,2814,10864 +1724173800,Mail.Ru,5344,5479 +1724173800,Yandex,14685,41021 +1724173800,Ubuntu,6965,6645 +1724173800,Microsoft CryptoAPI,9333,15647 +1724173800,Microsoft WNS,633,7964 +1724173800,Apple Maps,3438,10295 +1724173800,Google Play,17794,19942 +1724173800,Office 365,619,1218 +1724173800,ICMP,2100,0 +1724173800,Telegram,5834,8860 +1724173800,Edge Chromium,4923,14212 +1724173800,DNS over TLS,3568,14128 +1724173800,DNS over HTTPS,47196,161319 +1724173800,_err_4655,6542,11433 +1724174100,__unknown,197865,121323 +1724174100,HTTPS,36721,31676 +1724174100,SSL client,36721,31676 +1724174100,Yandex,36721,31676 +1724174100,HTTPS,17738,115977 +1724174100,SSL client,17738,115977 +1724174100,Yandex,17738,115977 +1724174100,Google,46429,64173 +1724174100,HTTPS,449259,131624 +1724174100,SSL client,449259,131624 +1724174100,Yandex,402830,67451 +1724174100,__unknown,1484,2060 +1724174100,HTTPS,291982,197501 +1724174100,SSL client,291982,197501 +1724174100,Yandex,291982,197501 +1724174100,HTTPS,10249,41116 +1724174100,SSL client,10249,41116 +1724174100,Yandex,10249,41116 +1724174100,HTTPS,434243,133560 +1724174100,SSL client,250768,54331 +1724174100,Lijit,250768,54331 +1724174100,ICMP,21566,0 +1724174100,HTTPS,107346,140918 +1724174100,SSL client,107346,140918 +1724174100,Telegram,107346,140918 +1724174100,HTTPS,26830,15425 +1724174100,HTTPS,36870,42519 +1724174100,__unknown,58372,2287777 +1724174100,HTTPS,73897,58353 +1724174100,Apple sites,3062,5756 +1724174100,SSL client,71493,51830 +1724174100,Google Play,68431,46074 +1724174100,__unknown,1763,35137 +1724174100,HTTPS,629692,508378 +1724174100,SSL client,25616,32990 +1724174100,Google Play,22476,24634 +1724174100,Casale,3140,8356 +1724174100,__unknown,162282,145091 +1724174100,Dropbox,38634,9203 +1724174100,Gmail,6063,3588 +1724174100,HTTP,1445,1210 +1724174100,Microsoft Update,919,767 +1724174100,HTTPS,278386,1002351 +1724174100,WhatsApp,8900,89717 +1724174100,iCloud,14214,15052 +1724174100,Mozilla,2301,4799 +1724174100,SSL client,146177,365611 +1724174100,Microsoft,22555,152602 +1724174100,Mail.Ru,38102,88920 +1724174100,Siri,3312,14911 +1724174100,Yandex,13207,50436 +1724174100,Microsoft CryptoAPI,1445,1210 +1724174100,Google Play,2376,8924 +1724174100,Office 365,1522,1425 +1724174100,Telegram,5220,13469 +1724174100,GISMETEO,2194,9405 +1724174100,__unknown,397401,204995 +1724174100,Bing,5458,26809 +1724174100,Google APIs,9849,18288 +1724174100,Google,3477,10729 +1724174100,MSN,6991,16681 +1724174100,Wordpress,396,3066 +1724174100,Yahoo!,32105,21548 +1724174100,Android browser,2342,478 +1724174100,Gmail,5070,9312 +1724174100,HTTP,25278,36772 +1724174100,Internet Explorer,2246,31434 +1724174100,iTunes,22206,17706 +1724174100,Skype,3235,7817 +1724174100,SSL,27367,13418 +1724174100,VKontakte,4667,17523 +1724174100,Odnoklassniki,3680,6782 +1724174100,Steam,27157,45708 +1724174100,IMAPS,11854,36934 +1724174100,HTTPS,3627705,20794744 +1724174100,WhatsApp,2221,14665 +1724174100,APNS,27367,13418 +1724174100,Apple sites,8746,60007 +1724174100,iCloud,27768,59468 +1724174100,SSL client,2698777,14867405 +1724174100,Ad Nexus,13627,9985 +1724174100,Microsoft,417677,592845 +1724174100,Mail.Ru,757931,1264136 +1724174100,Yandex,1260138,12547454 +1724174100,Apple Maps,5889,16860 +1724174100,Google Play,12925,1991 +1724174100,Rambler,574,4446 +1724174100,Apple Music,2872,12786 +1724174100,Exchange Online,1482,6467 +1724174100,Office 365,1074,8141 +1724174100,Microsoft Windows Live Services Authentication,5121,17161 +1724174100,OneDrive,2397,10215 +1724174100,Office Mobile,22305,18756 +1724174100,Telegram,416,648 +1724174100,Sberbank of Russia,3418,8322 +1724174100,GISMETEO,2246,31434 +1724174100,Google Inbox,7183,26136 +1724174100,Grammarly,2277,6768 +1724174100,DNS over HTTPS,24539,77193 +1724174100,__unknown,107866,124044 +1724174100,__unknown,187,228 +1724174100,__unknown,234,66 +1724174100,HTTPS,44808,166562 +1724174100,HTTPS,35468,35490 +1724174100,__unknown,114361,180717 +1724174100,Google,19862,20014 +1724174100,LiveJournal,12657,13651 +1724174100,HTTPS,99228,236832 +1724174100,SSL client,32519,33665 +1724174100,ICMP,4242,2340 +1724174100,__unknown,701437,1073412 +1724174100,BitTorrent,310,496 +1724174100,DHCPv6,978,0 +1724174100,Google APIs,51897,43812 +1724174100,Google Drive,9805,4453 +1724174100,Google,75975,165923 +1724174100,DNS,17230,0 +1724174100,Gmail,6373,8432 +1724174100,HTTP,648068,18247560 +1724174100,Microsoft Update,1647,1748 +1724174100,_err_742,644436,18242417 +1724174100,NTP,12930,3180 +1724174100,STUN,1364,1124 +1724174100,YouTube,5461,48798 +1724174100,Odnoklassniki,2546,7421 +1724174100,HTTPS,275326,1028755 +1724174100,SSL client,209138,368987 +1724174100,Box,1464,5023 +1724174100,Yandex,5028,11858 +1724174100,Nvidia,13914,32900 +1724174100,Microsoft CryptoAPI,3632,5143 +1724174100,Google Play,23200,23272 +1724174100,ICMP,11826,0 +1724174100,Telegram,4874,9252 +1724174100,Google Sign in,11227,12147 +1724174100,DNS over HTTPS,11227,32185 +1724174100,__unknown,339892,377689 +1724174100,BitTorrent,153,537 +1724174100,DHCPv6,163,0 +1724174100,Google APIs,5517,9949 +1724174100,Google,15708,43014 +1724174100,MSN,6847,11207 +1724174100,Yahoo!,186,4342 +1724174100,Adobe Software,3184,5393 +1724174100,Android browser,782,526 +1724174100,BitTorrent tracker,153,537 +1724174100,DNS,46628,45847 +1724174100,Google Analytics,1115,5851 +1724174100,HTTP,78986,101028 +1724174100,iTunes,10646,34301 +1724174100,Launchpad,3200,2480 +1724174100,LiveJournal,230309,4480744 +1724174100,NetBIOS-dgm,250,0 +1724174100,NTP,12750,3000 +1724174100,STUN,2240,3560 +1724174100,Advanced Packaging Tool,35464,32637 +1724174100,HTTPS,918286,5517010 +1724174100,Apple sites,13987,49166 +1724174100,iCloud,41124,104213 +1724174100,Avast,382,391 +1724174100,SSL client,360160,5090712 +1724174100,Ubuntu Update Manager,26250,24749 +1724174100,VeriSign,566,2141 +1724174100,Yandex,25289,322010 +1724174100,Ubuntu,8353,7931 +1724174100,Microsoft CryptoAPI,4645,5695 +1724174100,Apple Maps,2143,7758 +1724174100,Rambler,2562,11212 +1724174100,ICMP,1802,0 +1724174100,Firebase Crashlytics,2477,8165 +1724174100,Telegram,1332,2105 +1724174100,Edge Chromium,9439,28313 +1724174100,Grammarly,2311,7809 +1724174100,DNS over HTTPS,42226,140713 +1724174400,__unknown,530262,1148803 +1724174400,Gmail,34515,77234 +1724174400,IMAPS,34515,77234 +1724174400,SSL client,34515,77234 +1724174400,HTTPS,18310,21019 +1724174400,SSL client,18310,21019 +1724174400,Yandex,18310,21019 +1724174400,HTTPS,36577,32805 +1724174400,SSL client,36577,32805 +1724174400,Yandex,36577,32805 +1724174400,HTTPS,40380,117313 +1724174400,SSL client,40380,117313 +1724174400,Yandex,40380,117313 +1724174400,__unknown,44291,73032 +1724174400,HTTPS,37301,64385 +1724174400,SSL client,37301,64385 +1724174400,Mail.Ru,37301,64385 +1724174400,__unknown,1048,4403 +1724174400,HTTPS,8669,11246 +1724174400,HTTPS,105930,105088 +1724174400,Windows Live,89736,17956 +1724174400,HTTPS,94506,126315 +1724174400,SSL client,89736,17956 +1724174400,__unknown,410,12724 +1724174400,Windows Live,8886,111709 +1724174400,HTTPS,14295,120841 +1724174400,SSL client,14295,120841 +1724174400,Yandex,5409,9132 +1724174400,__unknown,47118,48154 +1724174400,HTTPS,184653,8650166 +1724174400,SSL client,77069,32885 +1724174400,Yandex,11355,23272 +1724174400,Google Play,20422,3784 +1724174400,Dropbox Download,45292,5829 +1724174400,__unknown,41390,108124 +1724174400,Google APIs,6141,21840 +1724174400,SSL,7009,13021 +1724174400,HTTPS,50828,65277 +1724174400,SSL client,50828,65277 +1724174400,Google Play,44687,43437 +1724174400,Telegram,0,1980 +1724174400,__unknown,167093,275514 +1724174400,Bing,15678,56510 +1724174400,Dropbox,12175,7795 +1724174400,Gmail,6009,3567 +1724174400,Google Analytics,9653,16023 +1724174400,HTTP,921,1487 +1724174400,iTunes,3854,18935 +1724174400,Microsoft Update,921,1487 +1724174400,HTTPS,681106,9293440 +1724174400,iCloud,14536,15541 +1724174400,Mozilla,2490,1230 +1724174400,SSL client,342618,485407 +1724174400,Microsoft,51475,72215 +1724174400,Mail.Ru,124736,119183 +1724174400,Yandex,78300,118295 +1724174400,Microsoft CryptoAPI,921,1487 +1724174400,uTorrent,14094,20417 +1724174400,Google Play,1105,6391 +1724174400,Office 365,1689,7788 +1724174400,Firebase Crashlytics,2251,6586 +1724174400,Telegram,3738,7960 +1724174400,GISMETEO,2134,9405 +1724174400,Discord,2439,5526 +1724174400,__unknown,330987,2072791 +1724174400,Bing,6425,19908 +1724174400,Google APIs,11948,26143 +1724174400,Google,110374,628634 +1724174400,MSN,3392,9443 +1724174400,Windows Live,5387,7023 +1724174400,Yahoo!,7817,6497 +1724174400,Google Analytics,1632,5928 +1724174400,HTTP,22318,1303821 +1724174400,Microsoft Update,89545,197424 +1724174400,SSL,2339,8423 +1724174400,Yahoo! Mail,50224,111057 +1724174400,VKontakte,3081,5342 +1724174400,TwitchTV,16527,7419 +1724174400,Steam,7035,15630 +1724174400,Advanced Packaging Tool,22069,1303365 +1724174400,IMAPS,57008,138679 +1724174400,HTTPS,5546443,100602031 +1724174400,WhatsApp,7371,15171 +1724174400,iCloud,11186,13501 +1724174400,Bing Maps,5720,40907 +1724174400,Mozilla,17079,25177 +1724174400,SSL client,2121600,22336706 +1724174400,Amazon Web Services,17677,126069 +1724174400,Ubuntu Update Manager,22069,1303365 +1724174400,Microsoft,244303,250983 +1724174400,Mail.Ru,1017697,4062948 +1724174400,Yandex,432582,16595762 +1724174400,Exchange Online,1399,6467 +1724174400,Office 365,19383,98417 +1724174400,Microsoft Windows Live Services Authentication,30796,51895 +1724174400,Google Hangouts,2339,8423 +1724174400,Weborama,3397,5479 +1724174400,Telegram,1239,590 +1724174400,Google Inbox,4655,10230 +1724174400,DNS over HTTPS,8372,30062 +1724174400,HTTPS,22849,40425 +1724174400,__unknown,215490,1769724 +1724174400,ICMP,12218,0 +1724174400,__unknown,161507,78664 +1724174400,HTTPS,411815,329900 +1724174400,SSL client,107359,134330 +1724174400,Telegram,107359,134330 +1724174400,__unknown,361,449 +1724174400,HTTPS,101128,121712 +1724174400,SSL client,70317,77984 +1724174400,Yandex,15848,16008 +1724174400,Telegram,54469,61976 +1724174400,__unknown,191389,560621 +1724174400,__unknown,3653,31562 +1724174400,Google,13443,29215 +1724174400,SSL,2711,9190 +1724174400,HTTPS,63404,83587 +1724174400,SSL client,18110,38271 +1724174400,Doubleclick,4667,9056 +1724174400,__unknown,958122,1094135 +1724174400,BitTorrent,463,496 +1724174400,Google APIs,8050,18137 +1724174400,Google,40049,124707 +1724174400,BitTorrent tracker,153,0 +1724174400,DNS,17348,0 +1724174400,Gmail,14189,30899 +1724174400,HTTP,3657,6923 +1724174400,LiveJournal,155090,364751 +1724174400,NTP,810,810 +1724174400,STUN,2206,1718 +1724174400,Web Of Trust,2015,8595 +1724174400,VKontakte,2403,5569 +1724174400,Odnoklassniki,2048,6771 +1724174400,HTTPS,396255,963781 +1724174400,Apple sites,1470,5455 +1724174400,Mozilla,7218,11514 +1724174400,SSL client,266950,783763 +1724174400,Box,1404,5023 +1724174400,Yandex,11312,151537 +1724174400,MDNS,88,0 +1724174400,Nvidia,3212,7878 +1724174400,Microsoft CryptoAPI,1650,3491 +1724174400,Apple Maps,2782,7026 +1724174400,Google Play,14568,30342 +1724174400,ICMP,88404,1140 +1724174400,ICMP for IPv6,70,0 +1724174400,Telegram,105499,233618 +1724174400,Grammarly,2223,7948 +1724174400,DNS over HTTPS,11871,31319 +1724174400,__unknown,686624,1209951 +1724174400,DHCPv6,978,0 +1724174400,Google APIs,8065,15187 +1724174400,Google,38303,98264 +1724174400,Adobe Software,633,3489 +1724174400,DNS,33602,34178 +1724174400,Firefox,4116,5716 +1724174400,HTTP,83843,334702 +1724174400,iTunes,8410,10604 +1724174400,Launchpad,3200,2480 +1724174400,LiveJournal,8143,19762 +1724174400,Microsoft Update,3882,3558 +1724174400,NetBIOS-dgm,243,0 +1724174400,NTP,38880,9630 +1724174400,SSL,1887,11272 +1724174400,STUN,2240,3560 +1724174400,YouTube,1340,14790 +1724174400,Advanced Packaging Tool,36683,275809 +1724174400,HTTPS,541415,5479712 +1724174400,Apple sites,1796,4113 +1724174400,iCloud,135849,16322 +1724174400,Mozilla,2744,5912 +1724174400,Avast,382,391 +1724174400,SSL client,278954,1495421 +1724174400,Box,1404,5023 +1724174400,Ubuntu Update Manager,29278,269547 +1724174400,Microsoft,5929,19041 +1724174400,VeriSign,566,2141 +1724174400,Yandex,44290,1232175 +1724174400,Ubuntu,7738,7462 +1724174400,Nvidia,19687,46577 +1724174400,Microsoft CryptoAPI,9787,12776 +1724174400,Microsoft NCSI,411,487 +1724174400,Microsoft WNS,633,7963 +1724174400,Google Hangouts,855,7032 +1724174400,ICMP,1063,0 +1724174400,Telegram,1891,637 +1724174400,Edge Chromium,2168,6098 +1724174400,DNS over TLS,1145,4769 +1724174400,DNS over HTTPS,32181,108670 +1724174700,__unknown,14020,18361 +1724174700,Google Analytics,4591,6853 +1724174700,HTTPS,112335,7051894 +1724174700,SSL client,4591,6853 +1724174700,HTTPS,434679,677271 +1724174700,HTTPS,24656,32222 +1724174700,HTTPS,55747,384732 +1724174700,HTTPS,8376,13606 +1724174700,HTTPS,8180,8647 +1724174700,SSL client,8180,8647 +1724174700,Yandex,8180,8647 +1724174700,__unknown,2470,15175 +1724174700,HTTPS,15629,25309 +1724174700,__unknown,3354,4939 +1724174700,Google APIs,4241,12594 +1724174700,VKontakte,23729,46355 +1724174700,HTTPS,166722,163486 +1724174700,SSL client,76266,127536 +1724174700,Microsoft,1138,8771 +1724174700,Yandex,47158,59816 +1724174700,DNS over HTTPS,5168,13244 +1724174700,__unknown,133701,4439639 +1724174700,Google APIs,6965,24205 +1724174700,Google,8433,5096 +1724174700,MSN,4075,6183 +1724174700,SSL,16148,5923 +1724174700,HTTPS,3725270,43185192 +1724174700,APNS,16148,5923 +1724174700,SSL client,348931,431406 +1724174700,Microsoft,31030,69966 +1724174700,Mail.Ru,56523,96911 +1724174700,Yandex,201961,200692 +1724174700,Google Play,21857,19485 +1724174700,Telegram,4008,9128 +1724174700,GISMETEO,1939,2945 +1724174700,__unknown,229111,260368 +1724174700,Bing,1038,4980 +1724174700,Google APIs,13299,25945 +1724174700,Google,274351,1536953 +1724174700,MSN,7386,18868 +1724174700,Yahoo!,6356,5240 +1724174700,Google Analytics,3204,11858 +1724174700,HTTP,5929,14252 +1724174700,Microsoft Update,1211,1150 +1724174700,SSL,1480,1392 +1724174700,YouTube,1632,7855 +1724174700,TeamViewer,1510,8936 +1724174700,VKontakte,35285,543754 +1724174700,TwitchTV,8440,7155 +1724174700,Odnoklassniki,5520,10173 +1724174700,Advanced Packaging Tool,527,470 +1724174700,IMAPS,5568,22322 +1724174700,HTTPS,4817177,79696377 +1724174700,WhatsApp,1799,5981 +1724174700,Apple sites,9000,40303 +1724174700,iCloud,69147,197774 +1724174700,Avast,1320,9915 +1724174700,SSL client,1943141,8333787 +1724174700,CloudFront,3772,1093 +1724174700,Microsoft,209592,331439 +1724174700,NIH,34835,352316 +1724174700,Mail.Ru,728140,1175380 +1724174700,Yandex,387990,3562289 +1724174700,Ubuntu,527,470 +1724174700,Google Update,2404,10370 +1724174700,Microsoft CryptoAPI,2338,2504 +1724174700,Apple Maps,3880,12606 +1724174700,Google Play,15563,10671 +1724174700,Exchange Online,4211,19397 +1724174700,Office 365,36213,149146 +1724174700,Sharepoint Online,3593,101231 +1724174700,Microsoft Windows Live Services Authentication,66754,174445 +1724174700,Weborama,2740,5330 +1724174700,Mendeley,11344,17228 +1724174700,Font Awesome,1566,5021 +1724174700,DNS over HTTPS,17626,64801 +1724174700,ICMP,3010,0 +1724174700,Google,15952,20965 +1724174700,HTTPS,15952,20965 +1724174700,SSL client,15952,20965 +1724174700,DNS over HTTPS,33918,73721 +1724174700,__unknown,9445,120102 +1724174700,HTTPS,3309,5460 +1724174700,__unknown,311364,110373 +1724174700,Google,11895,17773 +1724174700,HTTPS,53022,313884 +1724174700,SSL client,11895,17773 +1724174700,ICMP,1102,0 +1724174700,__unknown,678878,1230572 +1724174700,BitTorrent,310,496 +1724174700,DHCPv6,163,0 +1724174700,Google APIs,98209,36250 +1724174700,Google,54376,152536 +1724174700,DNS,12337,0 +1724174700,Gmail,22728,45016 +1724174700,HTTP,1279530,35752710 +1724174700,_err_742,1278062,35751293 +1724174700,NTP,13830,4080 +1724174700,STUN,1554,1266 +1724174700,Odnoklassniki,7564,17211 +1724174700,HTTPS,324833,727952 +1724174700,SSL client,227294,393718 +1724174700,Box,1404,5023 +1724174700,Mail.Ru,2407,4991 +1724174700,Yandex,6323,83755 +1724174700,Nvidia,14822,24798 +1724174700,Google Play,8824,7136 +1724174700,ICMP,2056,0 +1724174700,Telegram,1127,548 +1724174700,Google Sign in,6226,4121 +1724174700,Grammarly,2223,7946 +1724174700,DNS over HTTPS,9925,25478 +1724174700,__unknown,370975,742739 +1724174700,Apple Update,3974,20555 +1724174700,BitTorrent,153,198 +1724174700,DHCPv6,978,0 +1724174700,Google APIs,1276,5134 +1724174700,Google,16885,36995 +1724174700,Adobe Software,633,3489 +1724174700,Apple Store,2865,10027 +1724174700,BitTorrent tracker,153,198 +1724174700,DNS,61387,53611 +1724174700,HTTP,3001249,80864671 +1724174700,Internet Explorer,762,660 +1724174700,Launchpad,2560,1984 +1724174700,Microsoft Update,1963,1778 +1724174700,_err_742,2938236,80800595 +1724174700,NTP,900,900 +1724174700,SSL,1769,1452 +1724174700,STUN,570,378 +1724174700,VKontakte,2670,8584 +1724174700,Advanced Packaging Tool,27778,25431 +1724174700,HTTPS,424938,2614272 +1724174700,Apple sites,55208,1286625 +1724174700,iCloud,55193,84623 +1724174700,Avast,1874,8916 +1724174700,SSL client,282946,2291655 +1724174700,Box,1404,5023 +1724174700,Ubuntu Update Manager,21013,19665 +1724174700,Mail.Ru,5030,10102 +1724174700,Yandex,92891,699752 +1724174700,Ubuntu,4630,4243 +1724174700,Nvidia,32920,102523 +1724174700,Microsoft CryptoAPI,2577,2301 +1724174700,Microsoft NCSI,888,1040 +1724174700,Google Hangouts,1769,1452 +1724174700,ICMP,1610,0 +1724174700,Telegram,1898,583 +1724174700,Google Sign in,6224,3973 +1724174700,DNS over TLS,4970,18586 +1724174700,DNS over HTTPS,37171,122004 +1724174999,HTTPS,52452,30792 +1724174999,SSL client,52452,30792 +1724174999,Yandex,52452,30792 +1724174999,HTTPS,162457,199729 +1724174999,__unknown,1702,3507 +1724174999,HTTPS,9412,6361 +1724174999,__unknown,964,2300 +1724174999,HTTPS,77459,99228 +1724174999,SSL client,70513,89344 +1724174999,Yandex,24760,20628 +1724174999,Telegram,45753,68716 +1724174999,HTTPS,18292,51185 +1724174999,SSL client,18292,51185 +1724174999,Mail.Ru,18292,51185 +1724174999,__unknown,1608,0 +1724174999,HTTPS,1037773,2679314 +1724174999,SSL client,19377,30788 +1724174999,Exchange Online,19377,30788 +1724174999,HTTPS,39983,24651 +1724174999,SSL client,39983,24651 +1724174999,Yandex,39983,24651 +1724174999,HTTPS,57950,70103 +1724174999,SSL client,57950,70103 +1724174999,Yandex,4073,8618 +1724174999,Telegram,53877,61485 +1724174999,__unknown,61240,68647 +1724174999,VKontakte,279540,369929 +1724174999,HTTPS,800394,13273342 +1724174999,SSL client,287327,399380 +1724174999,Yandex,4361,23290 +1724174999,Sharepoint Online,3426,6161 +1724174999,__unknown,2573,1438 +1724174999,HTTPS,144520,6324585 +1724174999,SSL client,40558,36770 +1724174999,Google Play,40558,36770 +1724174999,__unknown,351520,237435 +1724174999,Bing,15556,53778 +1724174999,Google APIs,13308,27847 +1724174999,Yahoo!,33261,19428 +1724174999,YouTube,12944,314465 +1724174999,TeamViewer,1510,8867 +1724174999,HTTPS,1625774,34117553 +1724174999,Apple sites,1518,7457 +1724174999,iCloud,70274,38718 +1724174999,Mozilla,2141,4639 +1724174999,SSL client,193186,597168 +1724174999,Microsoft,21008,81362 +1724174999,Mail.Ru,12250,12946 +1724174999,Office 365,5339,17098 +1724174999,Telegram,3876,8026 +1724174999,Xiaomi,4077,10563 +1724174999,DNS over HTTPS,20641,58084 +1724174999,__unknown,627807,220917 +1724174999,Bing,3419,6483 +1724174999,Dropbox,2960,1361 +1724174999,Google APIs,39160,207587 +1724174999,Google,152876,142152 +1724174999,MSN,14657,40170 +1724174999,Yahoo!,2762,7777 +1724174999,Apple Store,33709,310157 +1724174999,Dell,1111,4305 +1724174999,Gmail,8188,18053 +1724174999,HTTP,587,530 +1724174999,Skype,3101,7718 +1724174999,SSL,1670,1392 +1724174999,VKontakte,6519,17433 +1724174999,Odnoklassniki,7360,13564 +1724174999,Advanced Packaging Tool,587,530 +1724174999,IMAPS,8188,18053 +1724174999,HTTPS,3754742,41263438 +1724174999,WhatsApp,1799,5905 +1724174999,Apple sites,5879,24806 +1724174999,iCloud,9491,50932 +1724174999,Mozilla,2241,4739 +1724174999,SSL client,1817646,7334578 +1724174999,Ad Nexus,6894,4950 +1724174999,Microsoft,91036,120096 +1724174999,Mail.Ru,1126347,1402011 +1724174999,Yandex,93874,967175 +1724174999,Ubuntu,587,530 +1724174999,Apple Maps,2846,6610 +1724174999,Rubicon Project,3667,5250 +1724174999,Google Play,26882,4336 +1724174999,Apple Music,17865,26474 +1724174999,Office 365,6903,24954 +1724174999,Sharepoint Online,1860,12957 +1724174999,Microsoft Windows Live Services Authentication,17082,48726 +1724174999,Bazaarvoice,14924,19638 +1724174999,Google Hangouts,1670,1392 +1724174999,Mendeley,24762,34670 +1724174999,Office Mobile,28860,18660 +1724174999,Mail.ru Attachment,44146,3762437 +1724174999,Google Inbox,3570,8870 +1724174999,Grammarly,12650,9888 +1724174999,DNS over HTTPS,41867,101908 +1724174999,Adobe Update,1221,4857 +1724174999,__unknown,111792,108021 +1724174999,__unknown,6990,11089 +1724174999,Google,16025,24806 +1724174999,HTTPS,25099,35347 +1724174999,SSL client,16025,24806 +1724174999,ICMP,7740,7740 +1724174999,__unknown,164,156 +1724174999,HTTPS,32040,31246 +1724174999,CoAP,4704,3456 +1724174999,__unknown,166032,386667 +1724174999,HTTPS,106950,6429019 +1724174999,ICMP,902,0 +1724174999,__unknown,53801,113250 +1724174999,HTTPS,43949,57396 +1724174999,Telegram,738,318 +1724174999,__unknown,581062,1570717 +1724174999,Apple Update,67118,1568824 +1724174999,BitTorrent,463,496 +1724174999,DHCPv6,163,0 +1724174999,Google APIs,9967,32292 +1724174999,Google,38802,131704 +1724174999,MSN,475,6415 +1724174999,BitTorrent tracker,153,0 +1724174999,DNS,16487,244 +1724174999,Gmail,5713,7803 +1724174999,HTTP,6813,8352 +1724174999,Launchpad,640,496 +1724174999,Microsoft Update,3237,2739 +1724174999,NetBIOS-dgm,250,0 +1724174999,NTP,13200,3450 +1724174999,STUN,1464,1044 +1724174999,YouTube,3167,24544 +1724174999,Odnoklassniki,2606,7421 +1724174999,Advanced Packaging Tool,2624,2480 +1724174999,HTTPS,318643,9359638 +1724174999,SSL client,266033,9252921 +1724174999,Doubleclick,9443,211262 +1724174999,Box,1404,5023 +1724174999,Samsung,386,992 +1724174999,Ubuntu Update Manager,1349,1352 +1724174999,VeriSign,566,2141 +1724174999,Ubuntu,635,632 +1724174999,Nvidia,114281,7231356 +1724174999,Microsoft CryptoAPI,3803,4880 +1724174999,Scorecard Research,3415,2248 +1724174999,Google Play,2794,3668 +1724174999,ICMP,11420,4020 +1724174999,Telegram,3413,2549 +1724174999,Grammarly,2308,7888 +1724174999,DNS over HTTPS,16661,49534 +1724174999,Google Meet,4540,12473 +1724174999,__unknown,845539,2438573 +1724174999,BITS,6528,94385 +1724174999,Eset,1230,4240 +1724174999,Google APIs,3329,24481 +1724174999,Google,12688,33684 +1724174999,QQ,414,1584 +1724174999,Adobe Software,633,3490 +1724174999,DNS,36166,36263 +1724174999,Google Analytics,1923,15347 +1724174999,HTTP,167766,3901222 +1724174999,Launchpad,2560,1984 +1724174999,Microsoft Update,3037,28120 +1724174999,NTP,720,720 +1724174999,SSL,2262,8480 +1724174999,STUN,190,118 +1724174999,YouTube,2551,26039 +1724174999,VKontakte,1186,7068 +1724174999,Advanced Packaging Tool,111115,3712304 +1724174999,Windows Update,1755,27106 +1724174999,HTTPS,379557,2916443 +1724174999,SSL client,125715,2049043 +1724174999,Doubleclick,1661,1717 +1724174999,Box,1404,5023 +1724174999,GoDaddy,1870,8981 +1724174999,Ubuntu Update Manager,70770,2455527 +1724174999,Microsoft,16124,95787 +1724174999,StatCounter,1333,12200 +1724174999,Mail.Ru,4850,10102 +1724174999,Yandex,32571,1423009 +1724174999,Linux Mint,928,996 +1724174999,Ubuntu,38285,1255324 +1724174999,Nvidia,49709,457970 +1724174999,Microsoft CryptoAPI,8831,21526 +1724174999,Rambler,1331,10346 +1724174999,Office 365,2778,16714 +1724174999,ICMP,1603,180 +1724174999,Telegram,7228,10623 +1724174999,Edge Chromium,4109,14049 +1724174999,DNS over HTTPS,38540,120761 +1724174999,_err_4655,6704,6151 +1724175300,__unknown,501846,1186246 +1724175300,Telegram,412975,1138226 +1724175300,HTTPS,433554,182509 +1724175300,SSL client,433554,182509 +1724175300,Yandex,433554,182509 +1724175300,HTTPS,31197,79666 +1724175300,Google,33636,46341 +1724175300,HTTPS,764225,292927 +1724175300,SSL client,627396,178993 +1724175300,Mail.Ru,593760,132652 +1724175300,HTTPS,11158,70832 +1724175300,SSL client,5194,9153 +1724175300,Yandex,5194,9153 +1724175300,DNS over HTTPS,184074,421492 +1724175300,__unknown,19222,297702 +1724175300,SSL,4199,10648 +1724175300,HTTPS,12116,13010 +1724175300,SSL client,6057,8429 +1724175300,Sharepoint Online,6057,8429 +1724175300,Telegram,19222,297702 +1724175300,__unknown,1579,13863 +1724175300,HTTPS,207235,65910 +1724175300,SSL client,68073,7636 +1724175300,Dropbox Download,68073,7636 +1724175300,HTTPS,32856,25954 +1724175300,SSL client,21887,18369 +1724175300,Google Play,21887,18369 +1724175300,__unknown,124372,27452 +1724175300,Google APIs,2977,10821 +1724175300,Google,1189,7369 +1724175300,MSN,1049,5863 +1724175300,Yahoo!,30538,18189 +1724175300,iTunes,5461,46850 +1724175300,TeamViewer,1559,9069 +1724175300,VKontakte,53720,91153 +1724175300,HTTPS,388903,834022 +1724175300,WhatsApp,1635,5617 +1724175300,Apple sites,1882,8093 +1724175300,iCloud,7710,19695 +1724175300,Mozilla,10332,15816 +1724175300,Avast,2244,18786 +1724175300,SSL client,233698,446063 +1724175300,Microsoft,5985,11499 +1724175300,Mail.Ru,73558,91632 +1724175300,Yandex,10364,13842 +1724175300,Apple Music,4159,8335 +1724175300,Office 365,2152,38156 +1724175300,Mendeley,17210,25589 +1724175300,Microsoft Visual Studio,1609,5306 +1724175300,Telegram,3614,7894 +1724175300,DNS over HTTPS,1463,2237 +1724175300,__unknown,430399,240459 +1724175300,Bing,6701,12939 +1724175300,Dropbox,5666,2740 +1724175300,Google APIs,2457,8050 +1724175300,Google,2697,6393 +1724175300,Gmail,13169,16924 +1724175300,Microsoft Update,106217,293966 +1724175300,schuelerVZ,4166,5207 +1724175300,SSL,1580,1392 +1724175300,VKontakte,6342,19433 +1724175300,IMAPS,18584,42808 +1724175300,HTTPS,1240737,9987694 +1724175300,WhatsApp,3227,5622 +1724175300,Apple sites,29768,357431 +1724175300,SSL client,932146,9267413 +1724175300,Pubmatic,3536,5624 +1724175300,Microsoft,45081,87534 +1724175300,Mail.Ru,469880,1254339 +1724175300,Siri,5784,6238 +1724175300,Yandex,179079,7038600 +1724175300,Apple Maps,7844,27127 +1724175300,Google Play,13501,2264 +1724175300,Apple Music,7305,9142 +1724175300,Exchange Online,1428,6467 +1724175300,Office 365,4188,70443 +1724175300,Microsoft Windows Live Services Authentication,19509,51074 +1724175300,Google Hangouts,1580,1392 +1724175300,Mendeley,2592,6741 +1724175300,Telegram,60,60 +1724175300,DNS over HTTPS,238632,565668 +1724175300,__unknown,11920,8701 +1724175300,__unknown,132759,125228 +1724175300,HTTPS,855392,117485 +1724175300,HTTPS,22844,28823 +1724175300,ICMP,2752,0 +1724175300,__unknown,215,225 +1724175300,HTTPS,9128,13636 +1724175300,SSL client,9128,13636 +1724175300,ICMP,7618,0 +1724175300,DNS over HTTPS,9128,13636 +1724175300,__unknown,17262,225168 +1724175300,ICMP,1230,0 +1724175300,__unknown,2784,1456 +1724175300,__unknown,8202,28490 +1724175300,HTTP,861,827 +1724175300,Microsoft Update,861,827 +1724175300,HTTPS,23937,57018 +1724175300,Microsoft CryptoAPI,861,827 +1724175300,ICMP,1300,0 +1724175300,DNS over HTTPS,5462,13704 +1724175300,__unknown,772366,879017 +1724175300,BitTorrent,310,496 +1724175300,Google APIs,11679,50392 +1724175300,Google Drive,8905,10837 +1724175300,Google,99735,129292 +1724175300,IKE,1134,990 +1724175300,DNS,9969,0 +1724175300,Gmail,18019,12242 +1724175300,HTTP,538783,14844887 +1724175300,Microsoft Update,695,770 +1724175300,_err_742,535960,14821221 +1724175300,NetBIOS-dgm,243,0 +1724175300,NTP,12750,3000 +1724175300,STUN,1554,1266 +1724175300,YouTube,5561,4198 +1724175300,Advanced Packaging Tool,1274,1193 +1724175300,HTTPS,318009,1364141 +1724175300,Mozilla,1876,4611 +1724175300,SSL client,182088,271967 +1724175300,Ubuntu Update Manager,1274,1193 +1724175300,Microsoft,854,21703 +1724175300,Google Adsense,2280,6879 +1724175300,Yandex,1253,907 +1724175300,Nvidia,30532,47659 +1724175300,ICMP,9389,2340 +1724175300,DNS over HTTPS,2248,4950 +1724175300,__unknown,458253,2605799 +1724175300,Bing,5837,10790 +1724175300,BitTorrent,153,537 +1724175300,DHCPv6,1141,0 +1724175300,Google APIs,3471,1908 +1724175300,Google,13385,32284 +1724175300,Skype Auth,911,744 +1724175300,BitTorrent tracker,153,537 +1724175300,Chrome,565,484 +1724175300,DNS,50142,47805 +1724175300,HTTP,2058976,55545179 +1724175300,Launchpad,3200,2480 +1724175300,Microsoft Update,3644,3191 +1724175300,_err_742,1939754,53033791 +1724175300,NTP,14370,4620 +1724175300,Skype,2725,13522 +1724175300,SSL,1241,7912 +1724175300,STUN,760,496 +1724175300,YouTube,637,7042 +1724175300,Advanced Packaging Tool,31115,27943 +1724175300,HTTPS,282111,566996 +1724175300,Apple sites,4146,22480 +1724175300,Mozilla,3620,6309 +1724175300,Opera,13875,8707 +1724175300,SSL client,55866,174535 +1724175300,Ubuntu Update Manager,22488,21011 +1724175300,Microsoft,51972,2436172 +1724175300,VeriSign,566,2141 +1724175300,Yandex,8344,28352 +1724175300,Ubuntu,8775,16747 +1724175300,Nvidia,5132,19021 +1724175300,Microsoft CryptoAPI,6571,7817 +1724175300,Microsoft NCSI,1336,1461 +1724175300,Microsoft WNS,693,7965 +1724175300,Google Play,6404,10461 +1724175300,Google Hangouts,1241,7912 +1724175300,ICMP,3528,256 +1724175300,Telegram,2270,729 +1724175300,Edge Chromium,8158,23548 +1724175300,DNS over TLS,2158,9541 +1724175300,DNS over HTTPS,37839,128800 +1724175600,Windows Live,231461,45309 +1724175600,HTTPS,231461,45309 +1724175600,SSL client,231461,45309 +1724175600,HTTPS,24582,15487 +1724175600,HTTPS,31856,574445 +1724175600,HTTPS,155638,694606 +1724175600,SSL client,155638,694606 +1724175600,Mail.Ru,155638,694606 +1724175600,__unknown,1484,2060 +1724175600,HTTPS,96352,1313920 +1724175600,__unknown,1162,1700 +1724175600,HTTPS,250569,139446 +1724175600,SSL client,46127,66369 +1724175600,Telegram,46127,66369 +1724175600,HTTPS,2055,7974 +1724175600,SSL client,2055,7974 +1724175600,Office 365,2055,7974 +1724175600,ICMP,21648,0 +1724175600,HTTPS,4908,3752 +1724175600,__unknown,4109,10644 +1724175600,HTTPS,12960,101733 +1724175600,SSL client,8838,98649 +1724175600,Microsoft,8838,98649 +1724175600,HTTPS,78753,121861 +1724175600,SSL client,66412,25833 +1724175600,Google Play,66412,25833 +1724175600,__unknown,78090,10978 +1724175600,Google APIs,2027,7303 +1724175600,HTTPS,180144,723428 +1724175600,SSL client,2027,7303 +1724175600,DNS over HTTPS,14557,34227 +1724175600,__unknown,87433,22988 +1724175600,Dropbox,9144,223328 +1724175600,Google,8432,5365 +1724175600,Google Analytics,4288,7138 +1724175600,Skype,2846,7906 +1724175600,TeamViewer,1450,8838 +1724175600,HTTPS,535288,10537178 +1724175600,Mozilla,2241,4739 +1724175600,Avast,1122,9432 +1724175600,SSL client,182913,531390 +1724175600,Microsoft,16219,35776 +1724175600,Mail.Ru,11592,16794 +1724175600,Yandex,105701,199479 +1724175600,Google Play,19878,12595 +1724175600,Telegram,3554,7834 +1724175600,DNS over HTTPS,6589,20544 +1724175600,__unknown,150989,89065 +1724175600,Dropbox,2304,3296 +1724175600,Google APIs,3248,11906 +1724175600,Yahoo!,7456,6557 +1724175600,Gmail,12742,12723 +1724175600,Google Analytics,1055,5791 +1724175600,HTTP,1535,2212 +1724175600,Skype,8066,93272 +1724175600,VKontakte,2790,8591 +1724175600,Odnoklassniki,5520,10113 +1724175600,IMAPS,19916,40248 +1724175600,HTTPS,1609700,2765902 +1724175600,Apple sites,3717,14997 +1724175600,iCloud,39379,55366 +1724175600,Avast,2184,18812 +1724175600,Opera,9821,6132 +1724175600,SSL client,1037231,1827662 +1724175600,Amazon Web Services,2455,21430 +1724175600,Microsoft,244102,478394 +1724175600,Mail.Ru,603183,871479 +1724175600,Yandex,46301,124304 +1724175600,Apple Maps,1943,7494 +1724175600,Office 365,12999,42075 +1724175600,Microsoft Windows Live Services Authentication,7741,11773 +1724175600,Weborama,14488,22367 +1724175600,Mendeley,4940,4435 +1724175600,Telegram,833,306 +1724175600,Grammarly,12561,9981 +1724175600,DNS over HTTPS,2330,4587 +1724175600,HTTPS,14112,20070 +1724175600,SSL client,14112,20070 +1724175600,DNS over HTTPS,14112,20070 +1724175600,HTTPS,9781,14215 +1724175600,SSL client,9781,14215 +1724175600,DNS over HTTPS,9781,14215 +1724175600,ICMP,2580,0 +1724175600,__unknown,692,468 +1724175600,SSL,14224,12773 +1724175600,APNS,14224,12773 +1724175600,SSL client,14224,12773 +1724175600,__unknown,45336,45394 +1724175600,Google,17460,20132 +1724175600,SSL,2555,9056 +1724175600,HTTPS,54226,47863 +1724175600,SSL client,17460,20132 +1724175600,ICMP,574,0 +1724175600,__unknown,49344,471930 +1724175600,Google,4964,10185 +1724175600,HTTP,722,391 +1724175600,HTTPS,13316,24956 +1724175600,SSL client,4964,10185 +1724175600,ICMP,1066,0 +1724175600,Telegram,1483,860 +1724175600,__unknown,476434,574422 +1724175600,BitTorrent,463,496 +1724175600,Google APIs,43655,19668 +1724175600,Google,250784,423323 +1724175600,BitTorrent tracker,153,0 +1724175600,DNS,19054,0 +1724175600,Gmail,8668,15371 +1724175600,HTTP,813184,22244136 +1724175600,_err_742,811330,22242473 +1724175600,NetBIOS-dgm,493,0 +1724175600,NTP,20360,4725 +1724175600,STUN,1554,1266 +1724175600,HTTPS,399550,818146 +1724175600,SSL client,333945,496959 +1724175600,Microsoft CryptoAPI,1854,1663 +1724175600,Google Play,28552,30709 +1724175600,ICMP,13254,1440 +1724175600,Grammarly,2286,7888 +1724175600,DNS over HTTPS,21273,59170 +1724175600,__unknown,552036,508112 +1724175600,DHCPv6,978,0 +1724175600,Google APIs,9339,9277 +1724175600,Google,12996,24247 +1724175600,MSN,577,501 +1724175600,DNS,45912,40534 +1724175600,HTTP,549459,13362222 +1724175600,Launchpad,2560,1984 +1724175600,Microsoft Update,642,508 +1724175600,_err_742,478080,13049202 +1724175600,NTP,17870,5265 +1724175600,SSL,855,7032 +1724175600,STUN,380,260 +1724175600,VKontakte,1335,4359 +1724175600,Steam,4703,228703 +1724175600,Advanced Packaging Tool,30349,27813 +1724175600,HTTPS,170110,441286 +1724175600,Apple sites,12150,75459 +1724175600,iCloud,11411,15641 +1724175600,Avast,382,391 +1724175600,SSL client,85468,230835 +1724175600,Ubuntu Update Manager,22362,20951 +1724175600,VeriSign,566,2141 +1724175600,Yandex,9179,21937 +1724175600,Ubuntu,7977,7636 +1724175600,Nvidia,21023,66124 +1724175600,Microsoft CryptoAPI,7758,13864 +1724175600,Microsoft NCSI,1379,1461 +1724175600,Microsoft WNS,577,501 +1724175600,Google Hangouts,855,7032 +1724175600,ICMP,1790,0 +1724175600,Telegram,1983,685 +1724175600,Edge Chromium,5163,16825 +1724175600,Grammarly,2231,7887 +1724175600,DNS over HTTPS,40491,131807 +1724175600,_err_4655,6134,5227 +1724175900,__unknown,1496494,725432 +1724175900,HTTPS,27975,17091 +1724175900,SSL client,27975,17091 +1724175900,Yandex,27975,17091 +1724175900,HTTPS,15456,16784 +1724175900,HTTPS,8865,13361 +1724175900,SSL client,8865,13361 +1724175900,Yandex,8865,13361 +1724175900,HTTPS,39778,42103 +1724175900,HTTPS,19039,17683 +1724175900,SSL client,19039,17683 +1724175900,Yandex,19039,17683 +1724175900,HTTPS,1026559,584512 +1724175900,HTTPS,19436,10183 +1724175900,HTTPS,5007,5591 +1724175900,HTTPS,63105,73519 +1724175900,Zoom,4478,6598 +1724175900,HTTPS,22678,10029 +1724175900,__unknown,360,7635 +1724175900,HTTPS,960629,11554049 +1724175900,SSL client,53854,61976 +1724175900,Telegram,53854,61976 +1724175900,__unknown,40884,5724 +1724175900,Google APIs,2087,7192 +1724175900,HTTPS,72701,69231 +1724175900,SSL client,48942,50221 +1724175900,Google Play,42946,36839 +1724175900,Sharepoint Online,3909,6190 +1724175900,DNS over HTTPS,1613,6460 +1724175900,__unknown,26075,43555 +1724175900,Bing,3633,6507 +1724175900,Google APIs,339382951,9684507 +1724175900,VKontakte,5401,9891 +1724175900,Odnoklassniki,3067,8221 +1724175900,HTTPS,340272138,28100509 +1724175900,Avast,1914,17086 +1724175900,SSL client,339638662,9962449 +1724175900,Microsoft,5740,14659 +1724175900,Mail.Ru,199860,151048 +1724175900,Disqus,4856,8257 +1724175900,Yandex,25291,42419 +1724175900,Office 365,3683,9809 +1724175900,Telegram,3678,7850 +1724175900,GISMETEO,2266,10045 +1724175900,DNS over HTTPS,42925,97656 +1724175900,__unknown,114175,87737 +1724175900,Bing,3396,6482 +1724175900,Dropbox,2065,5052 +1724175900,Google APIs,4881,11609 +1724175900,Google,3913,17133 +1724175900,MSN,2140,11707 +1724175900,Yahoo!,11832,8641 +1724175900,DNS,488,454 +1724175900,Gmail,222408,204355 +1724175900,Google Analytics,1632,5870 +1724175900,HTTP,5190,11894 +1724175900,Safari,2951,9822 +1724175900,Skype,3337,7981 +1724175900,SSL,4501,6631 +1724175900,Yahoo! Mail,22282,39166 +1724175900,VKontakte,12537,27013 +1724175900,Odnoklassniki,8362,16324 +1724175900,Advanced Packaging Tool,1214,1226 +1724175900,IMAPS,29198,66788 +1724175900,HTTPS,1232662,3011480 +1724175900,WhatsApp,1919,5981 +1724175900,Apple sites,21482,16285 +1724175900,iCloud,48637,80017 +1724175900,Avast,2244,18644 +1724175900,SSL client,745481,1071882 +1724175900,Amazon Web Services,3319,21430 +1724175900,Ubuntu Update Manager,1214,1226 +1724175900,Microsoft,57337,103880 +1724175900,Mail.Ru,115948,162687 +1724175900,Yandex,58747,167713 +1724175900,Microsoft CryptoAPI,1025,846 +1724175900,Google Play,5146,12908 +1724175900,Office 365,13518,41649 +1724175900,Sharepoint Online,3573,11316 +1724175900,Microsoft Windows Live Services Authentication,15985,23198 +1724175900,Office Mobile,100293,52322 +1724175900,Telegram,186,120 +1724175900,Sberbank of Russia,3418,8322 +1724175900,DNS over HTTPS,8892,55649 +1724175900,HTTPS,51371,29386 +1724175900,__unknown,187,228 +1724175900,HTTPS,25457,37711 +1724175900,SSL client,25457,37711 +1724175900,Telegram,25457,37711 +1724175900,__unknown,896,384 +1724175900,Google,68565,63437 +1724175900,HTTPS,68565,63437 +1724175900,SSL client,68565,63437 +1724175900,__unknown,1351,687 +1724175900,Google,373364,201050 +1724175900,HTTPS,436715,256193 +1724175900,SSL client,373364,201050 +1724175900,__unknown,7646,4598 +1724175900,SSL,2651,9116 +1724175900,HTTPS,68593,37185 +1724175900,SSL client,68593,37185 +1724175900,Google Play,68593,37185 +1724175900,ICMP,246,0 +1724175900,__unknown,588200,626710 +1724175900,BitTorrent,310,496 +1724175900,DHCPv6,163,0 +1724175900,Google APIs,39354,41934 +1724175900,Google Drive,9854,4610 +1724175900,Google,48451,103138 +1724175900,DNS,11453,260 +1724175900,Gmail,8736,15387 +1724175900,HTTP,6163,10725 +1724175900,Launchpad,640,496 +1724175900,Microsoft Update,641,507 +1724175900,NetBIOS-dgm,243,0 +1724175900,NTP,720,720 +1724175900,STUN,1826,1458 +1724175900,YouTube,3866,23319 +1724175900,Odnoklassniki,5613,15568 +1724175900,Advanced Packaging Tool,640,496 +1724175900,HTTPS,672321,85823810 +1724175900,Mozilla,2654,1712 +1724175900,SSL client,122001,219691 +1724175900,Yandex,1251,6151 +1724175900,Microsoft CryptoAPI,2961,2541 +1724175900,ICMP,29054,0 +1724175900,Telegram,1159,924 +1724175900,Grammarly,2222,7872 +1724175900,DNS over HTTPS,8992,23351 +1724175900,__unknown,379158,1273515 +1724175900,BitTorrent,153,0 +1724175900,Google APIs,1430,6115 +1724175900,Google,28715,52869 +1724175900,BitTorrent tracker,153,0 +1724175900,DNS,47409,47551 +1724175900,Gmail,27763,63367 +1724175900,HTTP,64612,75926 +1724175900,Launchpad,3200,2480 +1724175900,Microsoft Update,641,507 +1724175900,NTP,6040,2175 +1724175900,STUN,570,378 +1724175900,Advanced Packaging Tool,30393,27779 +1724175900,HTTPS,1331642,482301 +1724175900,iCloud,5131,12867 +1724175900,SSL client,1111750,197823 +1724175900,Ubuntu Update Manager,22353,20951 +1724175900,Mail.Ru,1032366,31415 +1724175900,Yandex,6928,24841 +1724175900,Ubuntu,7882,7559 +1724175900,Microsoft CryptoAPI,2567,2050 +1724175900,Office 365,3418,6985 +1724175900,ICMP,7195,240 +1724175900,Telegram,5389,2145 +1724175900,Google Sign in,6224,4316 +1724175900,Edge Chromium,6744,20826 +1724175900,DNS over HTTPS,33033,104703 +1724176200,__unknown,42330,35518 +1724176200,HTTPS,37745,45887 +1724176200,SSL,11407,23944 +1724176200,SSL client,4256,10978 +1724176200,Google Hangouts,4256,10978 +1724176200,HTTPS,53851,69322 +1724176200,SSL client,53851,69322 +1724176200,Telegram,53851,69322 +1724176200,HTTPS,20222,10249 +1724176200,SSL client,20222,10249 +1724176200,Yandex,20222,10249 +1724176200,HTTPS,48058,6401 +1724176200,SSL client,48058,6401 +1724176200,Dropbox Download,48058,6401 +1724176200,SSL,7953,6935 +1724176200,HTTPS,28509,10775 +1724176200,SSL client,28509,10775 +1724176200,Google Play,28509,10775 +1724176200,__unknown,158958,1077249 +1724176200,Dropbox,6548,8419 +1724176200,Google,146879,94287 +1724176200,HTTP,1075,1826 +1724176200,VKontakte,29511,97910 +1724176200,HTTPS,524803,2082474 +1724176200,Mozilla,2143,4639 +1724176200,Avast,2244,19804 +1724176200,SSL client,286788,1515443 +1724176200,Microsoft,6244,15352 +1724176200,VeriSign,1075,1826 +1724176200,Mail.Ru,15389,13022 +1724176200,Yandex,24522,13208 +1724176200,Microsoft CryptoAPI,1075,1826 +1724176200,Apple Maps,3170,7305 +1724176200,Telegram,3840,7780 +1724176200,GISMETEO,2194,9404 +1724176200,DeepL Translator,51114,1239398 +1724176200,__unknown,286523,243703 +1724176200,Google,1487,1597 +1724176200,MSN,3650,24795 +1724176200,HTTP,640980,12831600 +1724176200,Launchpad,640,496 +1724176200,Microsoft Update,2500,6492 +1724176200,_err_742,636789,12826708 +1724176200,Skype,6380,15663 +1724176200,SSL,36507,24536 +1724176200,YouTube,2060,6806 +1724176200,VKontakte,2694,8717 +1724176200,Odnoklassniki,7366,13564 +1724176200,Advanced Packaging Tool,1854,1629 +1724176200,IMAPS,6784,27622 +1724176200,HTTPS,926377,3047762 +1724176200,WhatsApp,4843,11653 +1724176200,APNS,32497,14025 +1724176200,Apple sites,8990,47169 +1724176200,iCloud,34426,75040 +1724176200,Mozilla,13279,24086 +1724176200,Opera,3012,5297 +1724176200,SSL client,472562,1341594 +1724176200,Amazon Web Services,33836,589498 +1724176200,CloudFront,3742,1033 +1724176200,Ubuntu Update Manager,1214,1133 +1724176200,Microsoft,42544,63145 +1724176200,Mail.Ru,108096,129721 +1724176200,Yandex,52270,144977 +1724176200,Microsoft CryptoAPI,991,1468 +1724176200,Microsoft NCSI,537,728 +1724176200,Apple Maps,2146,7494 +1724176200,Exchange Online,6451,24588 +1724176200,Office 365,13203,48046 +1724176200,Microsoft Windows Live Services Authentication,12676,33670 +1724176200,Google Hangouts,4010,10511 +1724176200,Weborama,9852,10038 +1724176200,360 Safeguard,2493,6712 +1724176200,Office Mobile,61876,33103 +1724176200,Telegram,630,240 +1724176200,Sberbank of Russia,4255,8322 +1724176200,Grammarly,2920,1744 +1724176200,DNS over HTTPS,11170,41758 +1724176200,__unknown,217,227 +1724176200,HTTPS,82910,51209 +1724176200,SSL client,82910,51209 +1724176200,Google Play,82910,51209 +1724176200,ICMP,6180,6240 +1724176200,CoAP,3332,2376 +1724176200,__unknown,442,457 +1724176200,HTTPS,53877,60994 +1724176200,SSL client,53877,60994 +1724176200,ICMP,688,0 +1724176200,Telegram,53877,60994 +1724176200,__unknown,114338,210997 +1724176200,Google,6695,11681 +1724176200,HTTPS,103557,165590 +1724176200,SSL client,8909,14826 +1724176200,ICMP,656,0 +1724176200,Telegram,11803,19066 +1724176200,DNS over HTTPS,2214,3145 +1724176200,__unknown,525209,4199278 +1724176200,BitTorrent,463,496 +1724176200,Google APIs,10253,16093 +1724176200,Google Drive,5982,10000 +1724176200,Google,45804,114977 +1724176200,BitTorrent tracker,153,0 +1724176200,DNS,17303,0 +1724176200,Gmail,23261,64498 +1724176200,NTP,810,810 +1724176200,STUN,1174,1006 +1724176200,Odnoklassniki,5523,10429 +1724176200,HTTPS,180089,350704 +1724176200,SSL client,102210,249135 +1724176200,Samsung,2780,8704 +1724176200,Yandex,1191,6151 +1724176200,Google Play,7416,18283 +1724176200,ICMP,31554,420 +1724176200,Telegram,1107,520 +1724176200,DNS over HTTPS,2516,7823 +1724176200,__unknown,453867,1610911 +1724176200,DHCPv6,1141,0 +1724176200,Google,8203,15390 +1724176200,DNS,35581,34000 +1724176200,HTTP,70890,93547 +1724176200,Launchpad,2560,1984 +1724176200,Microsoft Update,3924,3330 +1724176200,NetBIOS-dgm,250,0 +1724176200,NTP,990,990 +1724176200,SSL,13755,45647 +1724176200,STUN,570,378 +1724176200,Advanced Packaging Tool,30437,28027 +1724176200,HTTPS,300458,1173346 +1724176200,Apple sites,2135,7151 +1724176200,Mozilla,26840,62679 +1724176200,SSL client,54568,161914 +1724176200,Doubleclick,699,4747 +1724176200,Ubuntu Update Manager,23720,22297 +1724176200,Microsoft,633,7965 +1724176200,Mail.Ru,2768,5380 +1724176200,Yandex,13536,70728 +1724176200,Ubuntu,6917,6566 +1724176200,Microsoft CryptoAPI,10468,10162 +1724176200,Microsoft WNS,633,7965 +1724176200,ICMP,1812,0 +1724176200,ICMP for IPv6,70,0 +1724176200,Telegram,11642,139877 +1724176200,Edge Chromium,8852,26337 +1724176200,DNS over HTTPS,30856,97109 +1724176501,__unknown,40807,43424 +1724176501,HTTPS,76606,87645 +1724176501,SSL client,5179,7549 +1724176501,Sharepoint Online,5179,7549 +1724176501,__unknown,159652,184722 +1724176501,DNS over HTTPS,210602,473503 +1724176501,HTTPS,892006,1322126 +1724176501,SSL client,316416,97880 +1724176501,Mail.Ru,316416,97880 +1724176501,Windows Live,9807,9928 +1724176501,HTTPS,74682,38005 +1724176501,SSL client,9807,9928 +1724176501,HTTPS,1475,5975 +1724176501,SSL client,1475,5975 +1724176501,Office 365,1475,5975 +1724176501,__unknown,2247,4882 +1724176501,HTTPS,11714,8332 +1724176501,__unknown,7278,8789 +1724176501,Google,18769,31516 +1724176501,Windows Live,32589,7411 +1724176501,HTTPS,426003,504859 +1724176501,SSL client,367537,425538 +1724176501,Microsoft,14056,235265 +1724176501,Yandex,302123,151346 +1724176501,__unknown,15553,4660 +1724176501,HTTPS,415068,249397 +1724176501,SSL client,374743,214032 +1724176501,Mail.Ru,98511,80612 +1724176501,Yandex,232678,104203 +1724176501,Google Play,39525,21299 +1724176501,Media6Degrees,4029,7918 +1724176501,__unknown,685005,516625 +1724176501,Google APIs,2764,8869 +1724176501,Google,7998,7121 +1724176501,HTTP,662428,17900564 +1724176501,_err_742,662428,17900564 +1724176501,SSL,1879,3806 +1724176501,VKontakte,16723,27857 +1724176501,HTTPS,2438943,1098745 +1724176501,iCloud,8019,19101 +1724176501,Mozilla,5211,4478 +1724176501,Avast,2244,17294 +1724176501,SSL client,128571,408802 +1724176501,Microsoft,19512,47058 +1724176501,Mail.Ru,6241,5840 +1724176501,Siri,2683,6019 +1724176501,Yandex,28992,109258 +1724176501,uTorrent,3670,6534 +1724176501,Pocket,3237,3201 +1724176501,Sharepoint Online,6182,112800 +1724176501,Google Hangouts,1879,3806 +1724176501,Weborama,4369,5913 +1724176501,Telegram,3798,7834 +1724176501,GISMETEO,2134,9404 +1724176501,DNS over HTTPS,11262,23948 +1724176501,__unknown,170588,80556 +1724176501,Dropbox,116513,6681 +1724176501,Google APIs,3309,7030 +1724176501,Google,1411111,886141 +1724176501,MSN,1059,5861 +1724176501,Yahoo!,7824,6557 +1724176501,HTTP,4549,8811 +1724176501,iTunes,3719,18959 +1724176501,SSL,21766,14111 +1724176501,Advanced Packaging Tool,1358,1286 +1724176501,HTTPS,2448370,4073942 +1724176501,APNS,15861,6047 +1724176501,Apple sites,2168,8710 +1724176501,iCloud,25139,41531 +1724176501,Mozilla,2141,4639 +1724176501,Avast,8278,46334 +1724176501,Opera,1898,4405 +1724176501,SSL client,1913460,1587709 +1724176501,Ad Nexus,7778,4966 +1724176501,Pubmatic,15847,169542 +1724176501,Ubuntu Update Manager,1358,1286 +1724176501,Microsoft,72624,118534 +1724176501,Mail.Ru,77463,83368 +1724176501,Yandex,14029,26626 +1724176501,Ubuntu,1019,1051 +1724176501,uTorrent,7396,13080 +1724176501,Apple Maps,8337,29762 +1724176501,Office 365,7594,35761 +1724176501,Microsoft Windows Live Services Authentication,6510,17268 +1724176501,Google Hangouts,1707,1484 +1724176501,Hola,4198,6580 +1724176501,Office Mobile,81431,46481 +1724176501,Sberbank of Russia,4255,8322 +1724176501,Grammarly,12610,10008 +1724176501,Microsoft Teams,2896,7199 +1724176501,DNS over HTTPS,22556,86676 +1724176501,DNS over HTTPS,269198,619995 +1724176501,ICMP,9430,0 +1724176501,DNS over HTTPS,36636,81239 +1724176501,__unknown,5298,350 +1724176501,Google,13909,19188 +1724176501,HTTP,630,300 +1724176501,HTTPS,37780,33274 +1724176501,SSL client,13909,19188 +1724176501,ICMP,5740,0 +1724176501,__unknown,130992,426015 +1724176501,Google,12078,18225 +1724176501,HTTPS,37084,393808 +1724176501,SSL client,12078,18225 +1724176501,ICMP,2620,1740 +1724176501,__unknown,744137,1643310 +1724176501,BitTorrent,310,496 +1724176501,Google APIs,2825,9166 +1724176501,Google,58951,78793 +1724176501,Chrome,1335,869 +1724176501,DNS,13325,0 +1724176501,Gmail,10050,6516 +1724176501,HTTP,3145,2314 +1724176501,Microsoft Update,642,508 +1724176501,NetBIOS-dgm,243,0 +1724176501,NTP,12324,3180 +1724176501,STUN,1826,1458 +1724176501,VKontakte,15815,120616 +1724176501,Odnoklassniki,3067,8222 +1724176501,HTTPS,251641,1464173 +1724176501,SSL client,110392,250113 +1724176501,Microsoft CryptoAPI,1202,971 +1724176501,Google Play,13545,22444 +1724176501,ICMP,25566,1440 +1724176501,ICMP for IPv6,70,0 +1724176501,Google Sign in,6139,4356 +1724176501,DNS over HTTPS,2641,3843 +1724176501,__unknown,405762,576000 +1724176501,BitTorrent,153,537 +1724176501,DHCPv6,978,0 +1724176501,Google APIs,4362,13431 +1724176501,Google,32151,90611 +1724176501,BitTorrent tracker,153,537 +1724176501,DNS,41448,40273 +1724176501,Gmail,16809,97308 +1724176501,HTTP,66091,125058 +1724176501,Launchpad,3200,2480 +1724176501,Microsoft Update,1624,1329 +1724176501,NTP,13000,4260 +1724176501,SSL,1032,4240 +1724176501,STUN,380,260 +1724176501,YouTube,650,5028 +1724176501,Steam,3847,50688 +1724176501,Advanced Packaging Tool,29814,27397 +1724176501,IMAPS,16809,97308 +1724176501,HTTPS,439431,3461383 +1724176501,iCloud,50675,37837 +1724176501,SSL client,129433,284269 +1724176501,Ubuntu Update Manager,19392,18377 +1724176501,Yandex,6957,23402 +1724176501,MDNS,364,0 +1724176501,Ubuntu,8497,7915 +1724176501,Microsoft CryptoAPI,4002,3362 +1724176501,Google Play,17452,12779 +1724176501,Rambler,692,6213 +1724176501,ICMP,2820,120 +1724176501,Telegram,4014,7953 +1724176501,Edge Chromium,6684,20229 +1724176501,DNS over TLS,1079,4769 +1724176501,DNS over HTTPS,63723,212586 +1724176800,Google,30674,43798 +1724176800,HTTPS,30674,43798 +1724176800,SSL client,30674,43798 +1724176800,HTTPS,646369,214675 +1724176800,__unknown,246,1254 +1724176800,HTTPS,54469,62036 +1724176800,SSL client,54469,62036 +1724176800,Telegram,54469,62036 +1724176800,HTTPS,18409,24734 +1724176800,__unknown,3709086,5363793 +1724176800,Bing,5790,16309 +1724176800,Google,7424,25135 +1724176800,Windows Live,5146,7374 +1724176800,Google Analytics,5937,7959 +1724176800,HTTPS,1001372,5671288 +1724176800,Mozilla,7799,10473 +1724176800,Avast,2244,20652 +1724176800,SSL client,820916,5382740 +1724176800,Ad Nexus,9087,24323 +1724176800,CloudFront,1541,1946 +1724176800,Microsoft,18017,33626 +1724176800,Mail.Ru,705179,4910797 +1724176800,Yandex,21503,309087 +1724176800,Google Play,29250,12154 +1724176800,Telegram,3702,7834 +1724176800,GISMETEO,1999,2905 +1724176800,DNS over HTTPS,29115,68624 +1724176800,__unknown,157837,208954 +1724176800,Google,1491,1597 +1724176800,Yahoo!,11375,11818 +1724176800,Adobe Software,3773,70521 +1724176800,Dell,1111,4306 +1724176800,HTTP,1403,4076 +1724176800,iTunes,2040,6603 +1724176800,Skype,1780,86261 +1724176800,SSL,1507,1392 +1724176800,VKontakte,2451,4954 +1724176800,TwitchTV,6404,7155 +1724176800,HTTPS,13322084,9684045 +1724176800,WhatsApp,1799,5981 +1724176800,Apple sites,7840,31714 +1724176800,iCloud,1709,5480 +1724176800,Avast,2819,14601 +1724176800,SSL client,11954956,2186757 +1724176800,Microsoft,42548,112867 +1724176800,Mail.Ru,11681646,556333 +1724176800,Yandex,29082,70515 +1724176800,Microsoft CryptoAPI,714,3890 +1724176800,Apple Maps,2075,7560 +1724176800,Exchange Online,2556,15793 +1724176800,Office 365,83858,968198 +1724176800,Sharepoint Online,5679,59521 +1724176800,Microsoft Windows Live Services Authentication,43854,106213 +1724176800,Google Hangouts,1507,1392 +1724176800,Office Mobile,17315,8323 +1724176800,Telegram,58359,2397267 +1724176800,Xiaomi,1830,4560 +1724176800,Microsoft Teams,2288,38032 +1724176800,DNS over HTTPS,10739,43016 +1724176800,HTTPS,59679,23498 +1724176800,HTTPS,38771,15928 +1724176800,SSL,2494,9056 +1724176800,HTTPS,6465,19802 +1724176800,Apple sites,2539,13203 +1724176800,SSL client,2539,13203 +1724176800,ICMP,11100,11160 +1724176800,__unknown,2302,3266 +1724176800,HTTP,4165268,121471429 +1724176800,_err_742,4165268,121471429 +1724176800,HTTPS,59267,1153644 +1724176800,ICMP,758,0 +1724176800,Telegram,1119,580 +1724176800,CoAP,1862,1368 +1724176800,__unknown,1608101,2860688 +1724176800,BitTorrent,463,496 +1724176800,DHCPv6,163,0 +1724176800,Google APIs,31749,16529 +1724176800,Google,56749,89488 +1724176800,Android browser,764,526 +1724176800,BitTorrent tracker,153,0 +1724176800,DNS,13122,0 +1724176800,Gmail,8099,27089 +1724176800,HTTP,764,526 +1724176800,NTP,12840,3090 +1724176800,STUN,1826,1482 +1724176800,VKontakte,2733,5694 +1724176800,Odnoklassniki,2546,7421 +1724176800,HTTPS,200687,1748153 +1724176800,SSL client,105603,157918 +1724176800,Doubleclick,2303,7334 +1724176800,Apple Maps,1390,5631 +1724176800,ICMP,3710,300 +1724176800,DNS over HTTPS,14480,39796 +1724176800,__unknown,1827992,6044859 +1724176800,Dropbox,3436,17484 +1724176800,Google APIs,5137,18656 +1724176800,Google,37369,283273 +1724176800,DNS,41760,39950 +1724176800,Firefox,10060,13182 +1724176800,HTTP,86586,2524081 +1724176800,Launchpad,3200,2480 +1724176800,Microsoft Update,14332,2305062 +1724176800,NTP,15720,5970 +1724176800,SSL,855,7032 +1724176800,STUN,190,118 +1724176800,Advanced Packaging Tool,35116,160346 +1724176800,HTTPS,206025,733011 +1724176800,Apple sites,614,550 +1724176800,iCloud,3910,9819 +1724176800,Avast,764,782 +1724176800,SSL client,74306,416552 +1724176800,Ubuntu Update Manager,27138,153518 +1724176800,Yandex,8270,29586 +1724176800,Ubuntu,6544,6180 +1724176800,Microsoft CryptoAPI,4768,4205 +1724176800,Microsoft NCSI,471,487 +1724176800,Google Play,3919,16551 +1724176800,Google Hangouts,855,7032 +1724176800,ICMP,1222,0 +1724176800,Telegram,4368,8367 +1724176800,Edge Chromium,5163,16833 +1724176800,DNS over TLS,2158,9540 +1724176800,DNS over HTTPS,60478,214667 +1724176800,Discord,1115,3117 +1724177100,__unknown,1362062,3252368 +1724177100,Telegram,1362062,3252368 +1724177100,HTTPS,99071,107844 +1724177100,HTTPS,116648,87207 +1724177100,SSL client,116648,87207 +1724177100,Yandex,116648,87207 +1724177100,Gmail,11880,22688 +1724177100,IMAPS,11880,22688 +1724177100,SSL client,11880,22688 +1724177100,Dropbox,45320,8979 +1724177100,HTTPS,6155655,3042377 +1724177100,SSL client,381905,925034 +1724177100,Dropbox Download,108078,4949 +1724177100,Google Meet,228507,911106 +1724177100,HTTPS,5700,8336 +1724177100,DNS over HTTPS,5047,16528 +1724177100,__unknown,1162,1682 +1724177100,HTTPS,30940,2875636 +1724177100,HTTPS,53264,62946 +1724177100,SSL client,53264,62946 +1724177100,Telegram,53264,62946 +1724177100,HTTPS,78777,22756 +1724177100,SSL client,78777,22756 +1724177100,Yandex,78777,22756 +1724177100,ICMP,8856,0 +1724177100,__unknown,775,0 +1724177100,HTTPS,53391,49789 +1724177100,SSL client,4311,9654 +1724177100,Yandex,4311,9654 +1724177100,HTTPS,71717,42080 +1724177100,__unknown,74902,9952 +1724177100,HTTPS,80438,105381 +1724177100,SSL client,42798,36566 +1724177100,Google Play,42798,36566 +1724177100,__unknown,294740,249798 +1724177100,Dropbox,10159,7141 +1724177100,Google APIs,2977,9258 +1724177100,Google,995,4566 +1724177100,VKontakte,15567,405849 +1724177100,HTTPS,471985,2442906 +1724177100,Avast,2244,17088 +1724177100,SSL client,249151,879695 +1724177100,Microsoft,40962,41607 +1724177100,Mail.Ru,39305,60071 +1724177100,Yandex,108493,266114 +1724177100,Apple Maps,2768,6550 +1724177100,Rambler,21405,17860 +1724177100,Office 365,4248,20709 +1724177100,Telegram,5313,8838 +1724177100,Microsoft Teams,2796,29432 +1724177100,__unknown,950019,967116 +1724177100,Bing,16973,31342 +1724177100,Dropbox,17002,3310 +1724177100,Google APIs,6034,14244 +1724177100,Google,10519,51580 +1724177100,MSN,3537,10454 +1724177100,Dell,931,3461 +1724177100,Gmail,5591,6734 +1724177100,LiveJournal,32198,222107 +1724177100,Skype,10330,104504 +1724177100,VKontakte,2393,4866 +1724177100,Steam,2053,4917 +1724177100,IMAPS,5591,6734 +1724177100,HTTPS,1285671,23348217 +1724177100,WhatsApp,3167,5682 +1724177100,Apple sites,6945,45018 +1724177100,iCloud,26408,86718 +1724177100,Mozilla,37348,11179 +1724177100,Avast,1944,4342 +1724177100,SSL client,624407,1610969 +1724177100,Amazon Web Services,3469,21640 +1724177100,Microsoft,118916,349772 +1724177100,Mail.Ru,129394,199451 +1724177100,Yandex,67359,235972 +1724177100,Nvidia,2455,4549 +1724177100,Apple Maps,2014,7561 +1724177100,Exchange Online,1498,7848 +1724177100,Office 365,13231,81308 +1724177100,Dropbox Download,16733,887 +1724177100,Microsoft Windows Live Services Authentication,8767,26425 +1724177100,Weborama,3671,6116 +1724177100,Office Mobile,75074,63034 +1724177100,Telegram,294327,18322152 +1724177100,DNS over HTTPS,6699,23816 +1724177100,HTTPS,7176,11622 +1724177100,__unknown,16570,206644 +1724177100,__unknown,4145,3614 +1724177100,HTTPS,22989,28703 +1724177100,__unknown,113975,73087 +1724177100,HTTPS,7331,9784 +1724177100,SSL client,7331,9784 +1724177100,DNS over HTTPS,7331,9784 +1724177100,HTTPS,20884,22706 +1724177100,ICMP,5132,3240 +1724177100,HTTP,595,408 +1724177100,__unknown,38475,241707 +1724177100,HTTPS,67306,1491982 +1724177100,SSL client,14932,14121 +1724177100,Google Play,14932,14121 +1724177100,ICMP,2146,1080 +1724177100,DNS over HTTPS,5175,13547 +1724177100,__unknown,626406,2509701 +1724177100,BitTorrent,310,496 +1724177100,DHCPv6,978,0 +1724177100,Google APIs,47107,18489 +1724177100,Google,17028,43682 +1724177100,DNS,15439,0 +1724177100,Gmail,7041,4082 +1724177100,HTTP,1204,8628 +1724177100,NetBIOS-dgm,250,0 +1724177100,NTP,13830,4080 +1724177100,STUN,2124,1644 +1724177100,HTTPS,220303,236415 +1724177100,SSL client,82111,98886 +1724177100,Microsoft,693,7964 +1724177100,Microsoft WNS,693,7964 +1724177100,Google Play,4397,9542 +1724177100,ICMP,32455,1980 +1724177100,DNS over HTTPS,57364,143744 +1724177100,Google Meet,4482,12071 +1724177100,_err_4907,2056,11020 +1724177100,CoAP,1176,864 +1724177100,__unknown,431523,3978406 +1724177100,Apple Update,6994,19950 +1724177100,BitTorrent,153,198 +1724177100,DHCPv6,163,0 +1724177100,Eset,545,658 +1724177100,Google APIs,2351,6747 +1724177100,Google,44477,169134 +1724177100,BitTorrent tracker,153,198 +1724177100,DNS,48811,43352 +1724177100,HTTP,63051,80974 +1724177100,Launchpad,3200,2480 +1724177100,Microsoft Update,642,508 +1724177100,NetBIOS-dgm,243,0 +1724177100,NTP,13560,3810 +1724177100,Advanced Packaging Tool,33555,31064 +1724177100,HTTPS,273351,1392396 +1724177100,iCloud,6989,12869 +1724177100,Mozilla,548,3767 +1724177100,SSL client,71700,410053 +1724177100,Ubuntu Update Manager,24928,23640 +1724177100,Yandex,7816,27436 +1724177100,GitHub,2346,169510 +1724177100,Ubuntu,5852,5405 +1724177100,Microsoft CryptoAPI,2984,4778 +1724177100,uTorrent,760,421 +1724177100,Apple Maps,1750,5048 +1724177100,ICMP,1805,0 +1724177100,Telegram,3390,1288 +1724177100,Edge Chromium,8385,25594 +1724177100,Grammarly,1980,7405 +1724177100,DNS over TLS,1079,4771 +1724177100,DNS over HTTPS,85958,271746 +1724177400,__unknown,17920,19576 +1724177400,HTTPS,246597,966071 +1724177400,HTTPS,296512,770756 +1724177400,SSL client,196318,727456 +1724177400,Mail.Ru,196318,727456 +1724177400,HTTPS,282150,115231 +1724177400,SSL client,282150,115231 +1724177400,Google Play,282150,115231 +1724177400,HTTPS,113979,505130 +1724177400,__unknown,2799,13027 +1724177400,HTTPS,11344,7233 +1724177400,SSL client,11344,7233 +1724177400,Yandex,11344,7233 +1724177400,HTTPS,65096,18690 +1724177400,SSL client,61822,17119 +1724177400,Yandex,4764,10182 +1724177400,Dropbox Download,57058,6937 +1724177400,HTTP,2702,29064 +1724177400,HTTPS,37763,144069 +1724177400,__unknown,46047,46564 +1724177400,HTTPS,177904,621777 +1724177400,SSL client,15466,169202 +1724177400,Yandex,15466,169202 +1724177400,Telegram,119483,417523 +1724177400,__unknown,115008,133361 +1724177400,Google APIs,4489,8352 +1724177400,Google,44356,54306 +1724177400,HTTPS,331143,3095136 +1724177400,SSL client,127923,816046 +1724177400,Microsoft,15263,44189 +1724177400,Mail.Ru,46271,45024 +1724177400,Yandex,11677,646895 +1724177400,Office 365,5867,17280 +1724177400,Telegram,3832,8246 +1724177400,__unknown,348378,58267 +1724177400,Bing,3590,6483 +1724177400,Dropbox,12124,8253 +1724177400,Google APIs,5287,13570 +1724177400,Google,3078490,1109602 +1724177400,MSN,3351,9497 +1724177400,Yahoo!,11887,8367 +1724177400,Gmail,13355,32255 +1724177400,HTTP,3139,10350 +1724177400,Skype,2643,8337 +1724177400,SSL,11723,6916 +1724177400,TeamViewer,1508,8898 +1724177400,VKontakte,12015,36451 +1724177400,Advanced Packaging Tool,2506,2446 +1724177400,IMAPS,13355,32255 +1724177400,HTTPS,4698686,4909857 +1724177400,iCloud,496942,30441 +1724177400,Mozilla,3821,7412 +1724177400,Avast,2244,17928 +1724177400,SSL client,4313103,1850061 +1724177400,Ubuntu Update Manager,2506,2446 +1724177400,Microsoft,217962,90929 +1724177400,Mail.Ru,67177,86629 +1724177400,Yandex,288150,136935 +1724177400,Microsoft WNS,633,7904 +1724177400,Google Play,21334,55953 +1724177400,Office 365,7158,24473 +1724177400,Sharepoint Online,3238,94284 +1724177400,Microsoft Windows Live Services Authentication,42017,57805 +1724177400,Office Mobile,17315,8455 +1724177400,Telegram,717,425 +1724177400,DNS over HTTPS,3632,6802 +1724177400,Google,257113,279747 +1724177400,HTTPS,257113,279747 +1724177400,SSL client,257113,279747 +1724177400,__unknown,1383,540 +1724177400,HTTPS,7510,9913 +1724177400,SSL client,7510,9913 +1724177400,DNS over HTTPS,7510,9913 +1724177400,__unknown,187,228 +1724177400,HTTPS,31668,28523 +1724177400,HTTPS,10304,14581 +1724177400,__unknown,595,598 +1724177400,Google,24881,24082 +1724177400,HTTPS,55927,744665 +1724177400,iCloud,4083,10182 +1724177400,SSL client,28964,34264 +1724177400,ICMP,774,0 +1724177400,__unknown,844041,1531659 +1724177400,BitTorrent,463,496 +1724177400,Google APIs,58290,56812 +1724177400,Google,30440,97872 +1724177400,BitTorrent tracker,153,0 +1724177400,DNS,14952,0 +1724177400,Firefox,1583,2413 +1724177400,HTTP,3367,5852 +1724177400,NTP,1080,1080 +1724177400,STUN,1744,1384 +1724177400,Odnoklassniki,3007,8145 +1724177400,HTTPS,262299,1508313 +1724177400,SSL client,142434,648882 +1724177400,Microsoft,862,7534 +1724177400,Microsoft CryptoAPI,1784,3439 +1724177400,Google ads,2441,6245 +1724177400,Google Play,29458,25364 +1724177400,ICMP,9182,2100 +1724177400,JetBrains,11806,428788 +1724177400,Grammarly,2271,7812 +1724177400,Apple News,1611,5361 +1724177400,DNS over HTTPS,31544,89712 +1724177400,__unknown,460989,1327236 +1724177400,DHCPv6,978,0 +1724177400,Google APIs,2525,9197 +1724177400,Google,21726,35580 +1724177400,DNS,43198,44793 +1724177400,HTTP,72550,115248 +1724177400,Internet Explorer,6339,2106 +1724177400,Launchpad,3200,2480 +1724177400,Microsoft Update,641,507 +1724177400,NTP,12570,2820 +1724177400,STUN,570,378 +1724177400,Steam,2982,39302 +1724177400,Advanced Packaging Tool,28960,26438 +1724177400,HTTPS,176696,349548 +1724177400,Avast,448,457 +1724177400,SSL client,38118,95892 +1724177400,Ubuntu Update Manager,20920,19610 +1724177400,Microsoft,633,7964 +1724177400,Mail.Ru,1147,5101 +1724177400,Yandex,13728,33973 +1724177400,Ubuntu,6672,6180 +1724177400,Microsoft CryptoAPI,4905,5731 +1724177400,Microsoft WNS,633,7964 +1724177400,ICMP,1333,0 +1724177400,Telegram,1919,605 +1724177400,Edge Chromium,5270,13644 +1724177400,DNS over TLS,1079,4771 +1724177400,DNS over HTTPS,38043,120376 +1724177700,__unknown,65875,70936 +1724177700,__unknown,2308990,1037938 +1724177700,HTTPS,143471,167707 +1724177700,__unknown,1456,2024 +1724177700,HTTPS,4475,6598 +1724177700,Zoom,4475,6598 +1724177700,HTTPS,32618,14391 +1724177700,HTTPS,38832,43478 +1724177700,Google Analytics,5231,6762 +1724177700,HTTPS,9362,14141 +1724177700,SSL client,5231,6762 +1724177700,HTTPS,151756,508886 +1724177700,SSL client,120198,449781 +1724177700,Yandex,120198,449781 +1724177700,__unknown,108968,25723 +1724177700,Google,275324,155593 +1724177700,TeamViewer,1508,8898 +1724177700,HTTPS,745950,10708097 +1724177700,Mozilla,16390,68245 +1724177700,Avast,2244,17178 +1724177700,SSL client,396249,477291 +1724177700,Microsoft,13134,41062 +1724177700,Mail.Ru,7072,12756 +1724177700,Yandex,15161,66529 +1724177700,Nvidia,56813,67275 +1724177700,Google Play,3948,25930 +1724177700,Office 365,2437,8768 +1724177700,Telegram,3618,7910 +1724177700,DNS over HTTPS,8767,22484 +1724177700,__unknown,424094,57613 +1724177700,Google APIs,7581,13129 +1724177700,Google,121908,94615 +1724177700,MSN,2069,11706 +1724177700,Yahoo!,10083,34161 +1724177700,HTTP,3814,139000 +1724177700,LiveJournal,138310,1520643 +1724177700,TeamViewer,1511,8847 +1724177700,VKontakte,2409,5316 +1724177700,Steam,4215,9856 +1724177700,IMAPS,6850,27622 +1724177700,HTTPS,3466515,5455490 +1724177700,WhatsApp,1235,5855 +1724177700,Apple sites,28477,14717 +1724177700,iCloud,5763,11436 +1724177700,Mozilla,5436,10065 +1724177700,Avast,2244,18624 +1724177700,SSL client,3124879,3097535 +1724177700,Microsoft,85568,156033 +1724177700,Mail.Ru,64501,127005 +1724177700,Yandex,54566,768862 +1724177700,Nvidia,2528803,161807 +1724177700,Apple Maps,1237,6286 +1724177700,Rambler,574,4446 +1724177700,Exchange Online,1479,6471 +1724177700,Office 365,13715,51965 +1724177700,Microsoft Windows Live Services Authentication,14737,37481 +1724177700,Weborama,1952,5278 +1724177700,Office Mobile,17164,7404 +1724177700,Sberbank of Russia,11814,17668 +1724177700,DNS over HTTPS,583,0 +1724177700,HTTPS,384543,272182 +1724177700,__unknown,3281,456 +1724177700,HTTPS,18549,25673 +1724177700,__unknown,1116,5617 +1724177700,Windows Live,7303,22552 +1724177700,SSL,8521,27570 +1724177700,HTTPS,12615,377429 +1724177700,SSL client,7303,22552 +1724177700,ICMP,3580,2760 +1724177700,__unknown,5026,71370 +1724177700,Google,56608,39709 +1724177700,HTTPS,143047,532008 +1724177700,SSL client,110862,84745 +1724177700,Atlassian,45626,18542 +1724177700,Google Play,3870,11283 +1724177700,ICMP,820,0 +1724177700,DNS over HTTPS,4758,15211 +1724177700,__unknown,675654,946552 +1724177700,BitTorrent,310,496 +1724177700,DHCPv6,163,0 +1724177700,Google APIs,5608,8680 +1724177700,Google,70452,141795 +1724177700,DNS,16071,0 +1724177700,Gmail,32153,34808 +1724177700,HTTP,4395,8217 +1724177700,Microsoft Update,1587,1394 +1724177700,NTP,1440,1440 +1724177700,STUN,3414,4566 +1724177700,Odnoklassniki,3067,8222 +1724177700,HTTPS,226390,411463 +1724177700,SSL client,159258,259864 +1724177700,Weather.com,3850,18375 +1724177700,Yandex,3654,9698 +1724177700,Microsoft CryptoAPI,2147,1857 +1724177700,Google Play,29687,21327 +1724177700,ICMP,11296,1680 +1724177700,Google Sign in,6228,4122 +1724177700,Grammarly,2311,7888 +1724177700,DNS over HTTPS,22618,65658 +1724177700,__unknown,491650,3285768 +1724177700,BitTorrent,153,537 +1724177700,DHCPv6,978,0 +1724177700,Eset,1032,4240 +1724177700,Google APIs,2111,6892 +1724177700,Google,151173,35593 +1724177700,BitTorrent tracker,153,537 +1724177700,Chrome,2109,21745 +1724177700,DNS,46155,44581 +1724177700,Google Analytics,641,5116 +1724177700,HTTP,1417694,36330336 +1724177700,Launchpad,3200,2480 +1724177700,Microsoft Update,1622,1394 +1724177700,_err_742,1337240,35833509 +1724177700,NetBIOS-dgm,250,0 +1724177700,NTP,13560,3810 +1724177700,SSL,1032,4240 +1724177700,STUN,1610,1370 +1724177700,VKontakte,626,3476 +1724177700,Advanced Packaging Tool,28291,25857 +1724177700,HTTPS,1061780,40420541 +1724177700,Apple sites,3784,34383 +1724177700,SSL client,194828,135031 +1724177700,Ubuntu Update Manager,19730,18499 +1724177700,Microsoft,8694,399158 +1724177700,Mail.Ru,2562,5841 +1724177700,Yandex,3648,12110 +1724177700,Ubuntu,7564,7171 +1724177700,Microsoft CryptoAPI,5301,4619 +1724177700,Google Play,18014,9917 +1724177700,CloudFlare,637,3481 +1724177700,ICMP,2837,0 +1724177700,Telegram,22792,597950 +1724177700,Google Sign in,6224,3964 +1724177700,Edge Chromium,4743,12279 +1724177700,DNS over HTTPS,45128,144247 +1724178000,__unknown,12050473,15827330 +1724178000,__unknown,103894,56056 +1724178000,HTTPS,13813,19358 +1724178000,SSL client,13813,19358 +1724178000,Yandex,13813,19358 +1724178000,HTTPS,46810,57140 +1724178000,SSL client,46810,57140 +1724178000,Yandex,46810,57140 +1724178000,HTTPS,15124,17417 +1724178000,SSL client,15124,17417 +1724178000,Yandex,15124,17417 +1724178000,HTTPS,4159,9185 +1724178000,SSL client,4159,9185 +1724178000,Sharepoint Online,4159,9185 +1724178000,HTTPS,90556,130214 +1724178000,SSL client,90556,130214 +1724178000,Telegram,90556,130214 +1724178000,__unknown,1924,5845 +1724178000,__unknown,101810,30581 +1724178000,HTTPS,105147,2244158 +1724178000,SSL client,66252,331226 +1724178000,Yandex,66252,331226 +1724178000,Dropbox,172772,22812 +1724178000,HTTPS,638462,191316 +1724178000,SSL client,623266,152205 +1724178000,Yandex,188069,121776 +1724178000,Dropbox Download,262425,7617 +1724178000,Google APIs,4054,14649 +1724178000,HTTPS,41323,34659 +1724178000,SSL client,4054,14649 +1724178000,__unknown,20703,8209 +1724178000,Google,1843,9261 +1724178000,Gmail,18095,33661 +1724178000,HTTPS,960945,7300779 +1724178000,Apple sites,7032,23358 +1724178000,Mozilla,2342,5201 +1724178000,Avast,2244,18742 +1724178000,SSL client,497150,3224967 +1724178000,Mail.Ru,51859,140282 +1724178000,Yandex,148666,434294 +1724178000,Nvidia,256710,2545402 +1724178000,Rambler,7022,8295 +1724178000,Exchange Online,1337,6471 +1724178000,Telegram,15786,210248 +1724178000,__unknown,1741335,827279 +1724178000,Bing,6887,15780 +1724178000,Dropbox,5507,5351 +1724178000,Google APIs,18936,15664 +1724178000,Gmail,14837,23046 +1724178000,HTTP,5480,13519 +1724178000,iTunes,8407,10676 +1724178000,YouTube,2173,11901 +1724178000,Yahoo! Mail,17657,31154 +1724178000,VKontakte,6581,12086 +1724178000,Advanced Packaging Tool,587,530 +1724178000,IMAPS,40219,83099 +1724178000,HTTPS,1042299,6544765 +1724178000,WhatsApp,5909,9599 +1724178000,Apple sites,24644,134305 +1724178000,iCloud,8159,112205 +1724178000,Mozilla,1368,5278 +1724178000,Avast,1122,9281 +1724178000,SSL client,692454,5662352 +1724178000,CloudFront,1509,1062 +1724178000,Microsoft,52277,112888 +1724178000,Mail.Ru,119133,150514 +1724178000,Yandex,32875,69318 +1724178000,Ubuntu,587,530 +1724178000,Nvidia,298256,4830516 +1724178000,Google Update,4400,10310 +1724178000,Microsoft CryptoAPI,493,2679 +1724178000,Google Play,17718,8875 +1724178000,Apple Music,10180,21123 +1724178000,Office 365,8493,23510 +1724178000,Microsoft Windows Live Services Authentication,12810,33002 +1724178000,Weborama,1937,5271 +1724178000,Office Mobile,17098,8454 +1724178000,Telegram,498,120 +1724178000,Grammarly,4383,13771 +1724178000,DNS over HTTPS,3479,3032 +1724178000,__unknown,101,60 +1724178000,__unknown,6414,3234 +1724178000,HTTPS,130811,41289 +1724178000,__unknown,6498,39555 +1724178000,HTTPS,25810,23464 +1724178000,SSL client,25810,23464 +1724178000,Google Play,25810,23464 +1724178000,ICMP,2380,0 +1724178000,__unknown,25909,13682 +1724178000,Google,7431,35932 +1724178000,HTTPS,17140,85708 +1724178000,SSL client,7431,35932 +1724178000,ICMP,2588,1740 +1724178000,Telegram,899,608 +1724178000,__unknown,1087623,6174709 +1724178000,BitTorrent,463,434 +1724178000,DHCPv6,163,0 +1724178000,Google APIs,112333,31954 +1724178000,Google Drive,6041,10086 +1724178000,Google,71986,101293 +1724178000,BitTorrent tracker,153,0 +1724178000,Chrome,991,757 +1724178000,DNS,19251,0 +1724178000,Gmail,36482,59866 +1724178000,HTTP,1662246,46393560 +1724178000,Microsoft Update,981,887 +1724178000,_err_742,1657258,46383978 +1724178000,NetBIOS-dgm,243,0 +1724178000,NTP,630,630 +1724178000,STUN,1554,1266 +1724178000,VKontakte,2864,6102 +1724178000,Odnoklassniki,2515,2345 +1724178000,HTTPS,443164,601362 +1724178000,Mozilla,5373,3451 +1724178000,SSL client,249961,273632 +1724178000,Microsoft,2748,30660 +1724178000,Mail.Ru,2344,5453 +1724178000,Microsoft CryptoAPI,3997,8825 +1724178000,Google Play,2805,9600 +1724178000,ICMP,7031,0 +1724178000,Grammarly,2222,7811 +1724178000,DNS over HTTPS,14753,42324 +1724178000,__unknown,419958,692952 +1724178000,Google APIs,6947,7065 +1724178000,Google,25945,54135 +1724178000,DNS,37906,39217 +1724178000,HTTP,461987,11898107 +1724178000,Launchpad,3200,2480 +1724178000,_err_742,402732,11574791 +1724178000,NTP,990,1080 +1724178000,SSL,1339,14126 +1724178000,STUN,950,638 +1724178000,Advanced Packaging Tool,32388,274344 +1724178000,HTTPS,148244,385923 +1724178000,Apple sites,7969,149424 +1724178000,Avast,382,391 +1724178000,SSL client,52143,260164 +1724178000,Ubuntu Update Manager,24444,267588 +1724178000,Microsoft,693,8016 +1724178000,Mail.Ru,306,5418 +1724178000,Yandex,7991,32080 +1724178000,Ubuntu,5594,5194 +1724178000,Microsoft CryptoAPI,4598,3954 +1724178000,Microsoft WNS,693,8016 +1724178000,Google Hangouts,797,7093 +1724178000,ICMP,1228,0 +1724178000,Telegram,2011,613 +1724178000,Edge Chromium,4216,10916 +1724178000,DNS over HTTPS,31754,106166 +1724178300,__unknown,34254,49753 +1724178300,CoAP,43610,32704 +1724178300,HTTPS,76596,102519 +1724178300,HTTPS,280923,94193 +1724178300,Google,136494,138976 +1724178300,HTTPS,2637392,38748040 +1724178300,SSL client,753198,456029 +1724178300,Google Play,616704,317053 +1724178300,HTTPS,95859,99497 +1724178300,SSL client,10043,10495 +1724178300,Yandex,10043,10495 +1724178300,Windows Live,46361,15263 +1724178300,Skype,6728,10357 +1724178300,HTTPS,53089,25620 +1724178300,SSL client,53089,25620 +1724178300,HTTPS,44181,38231 +1724178300,SSL client,7951,23522 +1724178300,Yandex,7951,23522 +1724178300,HTTPS,4701,1480 +1724178300,__unknown,7828,159603 +1724178300,HTTPS,48988,7644 +1724178300,SSL client,45358,5649 +1724178300,Dropbox Download,45358,5649 +1724178300,__unknown,444,456 +1724178300,HTTPS,21045,122114 +1724178300,SSL client,4866,106178 +1724178300,Sharepoint Online,4866,106178 +1724178300,__unknown,82721,200381 +1724178300,Dropbox,5543,1867 +1724178300,Google Analytics,10462,14925 +1724178300,HTTP,191722,4833238 +1724178300,_err_742,191182,4832321 +1724178300,Yahoo! Mail,19886,45259 +1724178300,IMAPS,19886,45259 +1724178300,HTTPS,828552,14747739 +1724178300,Apple sites,4685,15275 +1724178300,iCloud,15628,12188 +1724178300,Avast,2244,18396 +1724178300,SSL client,464046,9946273 +1724178300,Microsoft,22276,46717 +1724178300,Mail.Ru,14083,21674 +1724178300,Yandex,14549,18459 +1724178300,Nvidia,326632,9724890 +1724178300,Microsoft CryptoAPI,540,917 +1724178300,Apple Maps,3212,9134 +1724178300,Google Play,24684,16299 +1724178300,Office 365,3374,10324 +1724178300,Telegram,9125,55146 +1724178300,__unknown,273104,83523 +1724178300,Apple Update,19018,599636 +1724178300,Bing,13537,16808 +1724178300,Google,4452822,1641573 +1724178300,Gmail,12862,12541 +1724178300,HTTP,453962,11441874 +1724178300,_err_742,439039,11431543 +1724178300,Skype,2655,8269 +1724178300,VKontakte,27830,55779 +1724178300,Odnoklassniki,1840,3331 +1724178300,IMAPS,12862,12541 +1724178300,HTTPS,6884894,37879448 +1724178300,Apple sites,9251,37068 +1724178300,Mozilla,28551,6188 +1724178300,Avast,1122,9145 +1724178300,SSL client,6621225,36830395 +1724178300,CloudFront,1519,1072 +1724178300,Microsoft,67735,75662 +1724178300,Mail.Ru,98441,129800 +1724178300,Yandex,163312,617898 +1724178300,GitHub,1592,6065 +1724178300,Ubuntu,359,461 +1724178300,Microsoft Azure,1479,6799 +1724178300,Nvidia,1602645,33390478 +1724178300,uTorrent,7428,13008 +1724178300,Office 365,20720,89453 +1724178300,Microsoft Windows Live Services Authentication,30621,71769 +1724178300,Office Mobile,52011,25100 +1724178300,Telegram,1226,614 +1724178300,Grammarly,15252,16949 +1724178300,DNS over HTTPS,3347,9117 +1724178300,__unknown,2176,2176 +1724178300,HTTPS,57186,67496 +1724178300,SSL client,53877,62036 +1724178300,Telegram,53877,62036 +1724178300,__unknown,74209,2058845 +1724178300,Google,5025,10310 +1724178300,HTTPS,51900,378068 +1724178300,SSL client,5025,10310 +1724178300,ICMP,1204,0 +1724178300,__unknown,673059,1121791 +1724178300,BitTorrent,310,496 +1724178300,Google APIs,11893,26845 +1724178300,Google,32632,88797 +1724178300,DNS,14457,0 +1724178300,Gmail,33490,35610 +1724178300,HTTP,3795,38773 +1724178300,Microsoft Update,646,529 +1724178300,NTP,25320,5820 +1724178300,STUN,3342,3700 +1724178300,VKontakte,2743,6079 +1724178300,Steam,3149,38244 +1724178300,HTTPS,158075,302505 +1724178300,Avast,977,12856 +1724178300,SSL client,92315,187257 +1724178300,MDNS,88,0 +1724178300,Microsoft CryptoAPI,646,529 +1724178300,Apple Maps,2780,7035 +1724178300,ICMP,7677,600 +1724178300,ICMP for IPv6,70,0 +1724178300,Telegram,1483,1032 +1724178300,Google Sign in,6230,4175 +1724178300,Grammarly,2222,7946 +1724178300,DNS over HTTPS,18506,47346 +1724178300,__unknown,343778,1011074 +1724178300,BitTorrent,153,198 +1724178300,DHCPv6,1141,0 +1724178300,Dropbox,1436,4121 +1724178300,Google APIs,4234,13180 +1724178300,Google,14779,30355 +1724178300,BitTorrent tracker,153,198 +1724178300,DNS,39816,39301 +1724178300,Google Analytics,853,5118 +1724178300,HTTP,76333,909417 +1724178300,Internet Explorer,762,660 +1724178300,Launchpad,3200,2480 +1724178300,Microsoft Update,15171,823351 +1724178300,_err_742,1162,3276 +1724178300,NTP,900,900 +1724178300,STUN,380,236 +1724178300,Advanced Packaging Tool,28342,25311 +1724178300,HTTPS,398743,2133111 +1724178300,SSL client,43989,106397 +1724178300,Ubuntu Update Manager,19655,18379 +1724178300,Microsoft,693,8018 +1724178300,Mail.Ru,3876,4865 +1724178300,Yandex,10801,39473 +1724178300,Ubuntu,7613,6745 +1724178300,Microsoft CryptoAPI,3423,2923 +1724178300,Microsoft WNS,693,8018 +1724178300,ICMP,1616,180 +1724178300,Telegram,2234,846 +1724178300,Google Sign in,6131,4379 +1724178300,Edge Chromium,9379,27700 +1724178300,DNS over TLS,2314,9742 +1724178300,DNS over HTTPS,55472,197850 +1724178600,Google,23201,29329 +1724178600,HTTPS,23201,29329 +1724178600,SSL client,23201,29329 +1724178600,__unknown,1680,3571 +1724178600,HTTPS,377493,704834 +1724178600,SSL client,173111,632255 +1724178600,Mail.Ru,127800,568938 +1724178600,Telegram,45311,63317 +1724178600,HTTPS,304536,880124 +1724178600,HTTPS,91165,28351 +1724178600,SSL client,91165,28351 +1724178600,Yandex,91165,28351 +1724178600,HTTPS,3085,3835 +1724178600,__unknown,58902,46590 +1724178600,__unknown,9205,8629 +1724178600,HTTPS,52040,243297 +1724178600,Telegram,9205,8629 +1724178600,__unknown,85915,57973 +1724178600,Google APIs,3092,10461 +1724178600,MSN,1416,10519 +1724178600,HTTP,1508,59873 +1724178600,Skype,1605,7115 +1724178600,TeamViewer,1619,9025 +1724178600,HTTPS,659206,27328037 +1724178600,Mozilla,2110,1638 +1724178600,Avast,2244,18602 +1724178600,SSL client,564876,27131926 +1724178600,Microsoft,27011,127554 +1724178600,Mail.Ru,31233,38989 +1724178600,Yandex,15243,16186 +1724178600,Nvidia,468020,26911625 +1724178600,Office 365,1809,10657 +1724178600,OneDrive,2277,10213 +1724178600,Sway,4963,8578 +1724178600,Telegram,7295,17114 +1724178600,Xiaomi,3742,10637 +1724178600,Edge Chromium,1508,59873 +1724178600,__unknown,396931,5073631 +1724178600,Bing,3428,6515 +1724178600,Dropbox,13077,226068 +1724178600,Google APIs,9095,31373 +1724178600,Google,3105368,1187162 +1724178600,MSN,4076,6134 +1724178600,Adobe Software,694,4362 +1724178600,Dell,2138,8671 +1724178600,HTTP,349144,8649403 +1724178600,Launchpad,640,496 +1724178600,_err_742,327587,8640865 +1724178600,Skype,2583,8338 +1724178600,VKontakte,4071,13527 +1724178600,Odnoklassniki,3680,6722 +1724178600,Advanced Packaging Tool,640,496 +1724178600,IMAPS,6976,27525 +1724178600,HTTPS,6113872,32628079 +1724178600,WhatsApp,1919,5981 +1724178600,Apple sites,6239,29505 +1724178600,iCloud,18600,228458 +1724178600,Mozilla,2361,1618 +1724178600,SSL client,5138276,20653951 +1724178600,Amazon Web Services,16631,49914 +1724178600,Microsoft,384376,213390 +1724178600,VeriSign,1071,1826 +1724178600,Mail.Ru,221231,272797 +1724178600,Yandex,48071,391736 +1724178600,Nvidia,1250081,17836568 +1724178600,Microsoft CryptoAPI,1071,1826 +1724178600,Rambler,9512,9377 +1724178600,Office 365,20782,59564 +1724178600,Sharepoint Online,986,5947 +1724178600,Microsoft Windows Live Services Authentication,31042,62421 +1724178600,Telegram,114427,4920399 +1724178600,DNS over HTTPS,1748,6677 +1724178600,Gmail,84067,70800 +1724178600,HTTPS,97964,88971 +1724178600,SSL client,97964,88971 +1724178600,DNS over HTTPS,13897,18171 +1724178600,HTTPS,107424,139647 +1724178600,SSL client,107424,139647 +1724178600,Telegram,107424,139647 +1724178600,__unknown,215,225 +1724178600,HTTPS,31310,30366 +1724178600,ICMP,43132,0 +1724178600,__unknown,32060,33535 +1724178600,HTTPS,12955,18284 +1724178600,__unknown,9606,20371 +1724178600,HTTP,2010965,58528632 +1724178600,_err_742,2010965,58528632 +1724178600,HTTPS,49898,85682 +1724178600,SSL client,2834,9562 +1724178600,Google Play,2834,9562 +1724178600,ICMP,2254,1680 +1724178600,DNS over HTTPS,3030,9044 +1724178600,__unknown,443934,466653 +1724178600,BitTorrent,463,496 +1724178600,Google APIs,61821,37151 +1724178600,Google,36875,75649 +1724178600,BitTorrent tracker,153,0 +1724178600,DNS,15553,0 +1724178600,Gmail,6074,36076 +1724178600,HTTP,624097,17311141 +1724178600,_err_742,624097,17311141 +1724178600,NetBIOS-dgm,250,0 +1724178600,NTP,24220,5730 +1724178600,STUN,3794,4752 +1724178600,VKontakte,2743,6156 +1724178600,Odnoklassniki,3008,8027 +1724178600,HTTPS,186264,413542 +1724178600,SSL client,114090,169124 +1724178600,Google Play,3569,6065 +1724178600,ICMP,3815,0 +1724178600,Telegram,14191,60429 +1724178600,DNS over HTTPS,14587,42398 +1724178600,__unknown,483591,9038970 +1724178600,DHCPv6,978,0 +1724178600,Google APIs,4483,17841 +1724178600,Google,8850,35910 +1724178600,DNS,44569,44860 +1724178600,Gmail,8696,15537 +1724178600,HTTP,61346,84657 +1724178600,Launchpad,2560,1984 +1724178600,Microsoft Update,1898,9945 +1724178600,NetBIOS-dgm,243,0 +1724178600,NTP,2160,2160 +1724178600,STUN,570,378 +1724178600,Odnoklassniki,1840,3391 +1724178600,Advanced Packaging Tool,34373,31801 +1724178600,HTTPS,393268,728563 +1724178600,Apple sites,2117,8047 +1724178600,iCloud,8046,18736 +1724178600,Avast,448,457 +1724178600,SSL client,51066,139835 +1724178600,Ubuntu Update Manager,27608,26035 +1724178600,Mail.Ru,8507,15363 +1724178600,Yandex,6562,21530 +1724178600,Ubuntu,5055,4700 +1724178600,Microsoft CryptoAPI,1898,9945 +1724178600,ICMP,2731,180 +1724178600,Telegram,4165,4833 +1724178600,Edge Chromium,5103,16131 +1724178600,DNS over TLS,2158,9541 +1724178600,DNS over HTTPS,46274,155862 +1724178900,__unknown,36954,183703 +1724178900,HTTPS,241058,100944 +1724178900,SSL,16319,39894 +1724178900,DNS over HTTPS,26658,69557 +1724178900,__unknown,2548,13738 +1724178900,HTTPS,73098,61653 +1724178900,SSL client,37780,22704 +1724178900,Yandex,37780,22704 +1724178900,HTTPS,129245,995783 +1724178900,HTTPS,115225,118907 +1724178900,SSL client,13269,32404 +1724178900,Exchange Online,13269,32404 +1724178900,HTTPS,80401,58222 +1724178900,Zoom,4475,6598 +1724178900,Dropbox,107541,18236 +1724178900,HTTPS,355147,94531 +1724178900,SSL client,355147,94531 +1724178900,Dropbox Download,193197,8199 +1724178900,Telegram,54409,68096 +1724178900,__unknown,44331,43527 +1724178900,Google APIs,6201,21808 +1724178900,Google,11747,28126 +1724178900,HTTP,1003,4558 +1724178900,HTTPS,1679684,9973289 +1724178900,SSL client,1508037,1178598 +1724178900,VeriSign,446,2861 +1724178900,Nvidia,1469257,1110108 +1724178900,Microsoft CryptoAPI,1003,4558 +1724178900,Google Play,20832,18556 +1724178900,__unknown,146730,1331186 +1724178900,HTTPS,829253,17569139 +1724178900,iCloud,3752,6881 +1724178900,Avast,2244,17242 +1724178900,SSL client,474691,10121959 +1724178900,Box,1344,3901 +1724178900,Microsoft,18689,36287 +1724178900,Mail.Ru,8307,14058 +1724178900,Yandex,2493,2105 +1724178900,Nvidia,413886,9997422 +1724178900,Google Play,13455,16447 +1724178900,Rambler,7019,10873 +1724178900,Office 365,1308,7344 +1724178900,Telegram,9323,12415 +1724178900,GISMETEO,2194,9399 +1724178900,__unknown,160746,95178 +1724178900,Bing,14439,28730 +1724178900,Google,24348,40674 +1724178900,OpenVPN,0,506 +1724178900,Dell,3285,12926 +1724178900,HTTP,5232,3446 +1724178900,Internet Explorer,533,1070 +1724178900,Microsoft Update,56075,69714 +1724178900,Skype,9204,15146 +1724178900,IMAPS,7240,27525 +1724178900,HTTPS,1275487,5671398 +1724178900,WhatsApp,3179,5682 +1724178900,Apple sites,5380,18825 +1724178900,Avast,3366,26049 +1724178900,SSL client,955057,4294047 +1724178900,Amazon Web Services,10299,21576 +1724178900,Microsoft,62809,79836 +1724178900,Mail.Ru,137745,149906 +1724178900,Yandex,39543,625940 +1724178900,Nvidia,489463,2984550 +1724178900,Microsoft CryptoAPI,1340,1122 +1724178900,Apple Maps,2009,7494 +1724178900,Exchange Online,6575,22750 +1724178900,Office 365,21184,128739 +1724178900,Dropbox Download,32757,3535 +1724178900,Microsoft Windows Live Services Authentication,21342,54421 +1724178900,Office Mobile,17243,10730 +1724178900,Telegram,22898,824968 +1724178900,DNS over HTTPS,9270,36618 +1724178900,HTTPS,40698,35711 +1724178900,SSL,4996,6885 +1724178900,HTTPS,22559,28646 +1724178900,Google,200190,78492 +1724178900,HTTPS,208032,89501 +1724178900,SSL client,208032,89501 +1724178900,DNS over HTTPS,7842,11009 +1724178900,__unknown,144,222 +1724178900,Google,30072,64841 +1724178900,HTTPS,30072,64841 +1724178900,SSL client,30072,64841 +1724178900,ICMP,2068,0 +1724178900,__unknown,2178,1158 +1724178900,HTTPS,28053,373126 +1724178900,ICMP,820,0 +1724178900,__unknown,8593,108156 +1724178900,HTTPS,16395,28732 +1724178900,ICMP,4210,2760 +1724178900,DNS over HTTPS,5415,13764 +1724178900,__unknown,501441,1348999 +1724178900,BitTorrent,310,496 +1724178900,DHCPv6,163,0 +1724178900,Google APIs,52876,25276 +1724178900,Google,36740,65392 +1724178900,DNS,15832,0 +1724178900,Gmail,35131,66927 +1724178900,HTTP,633,7971 +1724178900,NTP,450,450 +1724178900,STUN,1364,1148 +1724178900,VKontakte,2803,6096 +1724178900,HTTPS,334340,507477 +1724178900,Mozilla,1942,4857 +1724178900,SSL client,137976,177926 +1724178900,Microsoft,633,7971 +1724178900,Microsoft WNS,633,7971 +1724178900,ICMP,5881,720 +1724178900,Google Sign in,6236,4445 +1724178900,DNS over HTTPS,13187,34346 +1724178900,__unknown,295945,987685 +1724178900,BitTorrent,153,537 +1724178900,Google APIs,5079,15761 +1724178900,Google,37814,77639 +1724178900,BitTorrent tracker,153,537 +1724178900,DNS,63279,55914 +1724178900,Firefox,471,680 +1724178900,Gmail,8696,15523 +1724178900,Google Analytics,701,5116 +1724178900,HTTP,860425,24805179 +1724178900,Launchpad,3200,2480 +1724178900,Microsoft Update,18473,300078 +1724178900,_err_742,1488,4643 +1724178900,NTP,12750,3000 +1724178900,STUN,570,378 +1724178900,Odnoklassniki,2515,2345 +1724178900,Steam,2993,79839 +1724178900,Advanced Packaging Tool,31404,28960 +1724178900,Windows Update,15558,297753 +1724178900,HTTPS,249945,1351298 +1724178900,Apple sites,1623,6144 +1724178900,SSL client,66385,162407 +1724178900,Ubuntu Update Manager,23364,22132 +1724178900,Microsoft,777169,24336132 +1724178900,Mail.Ru,1087,5101 +1724178900,Yandex,6287,28755 +1724178900,Ubuntu,6540,6184 +1724178900,Microsoft CryptoAPI,8328,9219 +1724178900,Microsoft WNS,693,8017 +1724178900,ICMP,1487,0 +1724178900,Telegram,3610,1500 +1724178900,Edge Chromium,4576,14772 +1724178900,DNS over TLS,2158,9540 +1724178900,DNS over HTTPS,42009,143625 +1724179199,HTTPS,122027,34096 +1724179199,SSL client,122027,34096 +1724179199,Yandex,122027,34096 +1724179199,__unknown,59383,38637 +1724179199,HTTPS,5259,12581 +1724179199,SSL client,5259,12581 +1724179199,Office 365,5259,12581 +1724179199,__unknown,1324,2090 +1724179199,Gmail,10129,20262 +1724179199,IMAPS,10129,20262 +1724179199,HTTPS,53723,63383 +1724179199,SSL client,63852,83645 +1724179199,Telegram,53723,63383 +1724179199,HTTPS,5743,14964 +1724179199,SSL client,5743,14964 +1724179199,Office 365,5743,14964 +1724179199,HTTPS,2001,5156 +1724179199,__unknown,17987,18052 +1724179199,Dropbox,128790,24508 +1724179199,Windows Live,23754,7227 +1724179199,HTTPS,221116,273765 +1724179199,SSL client,215076,269786 +1724179199,Microsoft,14315,232110 +1724179199,Dropbox Download,48217,5941 +1724179199,HTTPS,22349,22566 +1724179199,SSL client,5771,6168 +1724179199,Yandex,5771,6168 +1724179199,__unknown,21804,19997 +1724179199,Dropbox,2693,1343 +1724179199,Google APIs,3582,12684 +1724179199,Google,3505,7950 +1724179199,VKontakte,5865,12359 +1724179199,HTTPS,461367,7234804 +1724179199,Avast,2244,18720 +1724179199,SSL client,62102,123489 +1724179199,Box,893,6266 +1724179199,Microsoft,6138,10997 +1724179199,Siri,6800,6391 +1724179199,Google Play,20882,13471 +1724179199,Rambler,4828,7380 +1724179199,Office 365,2450,18184 +1724179199,Telegram,8047,16432 +1724179199,Grammarly,2222,7744 +1724179199,__unknown,30336,62662 +1724179199,Google APIs,5626,7185 +1724179199,HTTP,996440,28060194 +1724179199,iTunes,973,6097 +1724179199,Microsoft Update,919,827 +1724179199,_err_742,988184,28044354 +1724179199,Skype,5018,89419 +1724179199,VKontakte,15012,24582 +1724179199,Advanced Packaging Tool,936,1164 +1724179199,IMAPS,6844,27459 +1724179199,HTTPS,1142735,46233879 +1724179199,Apple sites,9289,22143 +1724179199,iCloud,3247,9757 +1724179199,Mozilla,2278,5618 +1724179199,Avast,2244,16784 +1724179199,SSL client,654671,2523681 +1724179199,Ubuntu Update Manager,936,1164 +1724179199,Microsoft,142665,117765 +1724179199,Mail.Ru,70711,89421 +1724179199,Yandex,20290,45782 +1724179199,Nvidia,297753,946136 +1724179199,Google Update,4433,10304 +1724179199,Microsoft CryptoAPI,2887,4372 +1724179199,Apple Maps,8026,20145 +1724179199,Office 365,16281,36027 +1724179199,Microsoft Windows Live Services Authentication,22487,39380 +1724179199,Grammarly,21829,19158 +1724179199,DNS over HTTPS,2266,10769 +1724179199,Adobe Update,17056,1046769 +1724179199,_err_4655,2470,2797 +1724179199,CoAP,6566,4896 +1724179199,__unknown,187,228 +1724179199,Google,80305,71985 +1724179199,HTTPS,88767,83667 +1724179199,SSL client,88767,83667 +1724179199,DNS over HTTPS,8462,11682 +1724179199,__unknown,4066848,148468410 +1724179199,ICMP,7980,7860 +1724179199,__unknown,65624,43160 +1724179199,__unknown,270786,11300200 +1724179199,__unknown,22418,477708 +1724179199,Google,5118,11173 +1724179199,Skype Auth,700,398 +1724179199,HTTP,1253,18577 +1724179199,Skype,700,398 +1724179199,HTTPS,332320,1759950 +1724179199,SSL client,5118,11173 +1724179199,ICMP,9364,0 +1724179199,__unknown,762440,3320536 +1724179199,BitTorrent,463,496 +1724179199,DHCPv6,978,0 +1724179199,Google APIs,47044,19207 +1724179199,Google Drive,8833,11270 +1724179199,Google,127458,397228 +1724179199,BitTorrent tracker,153,0 +1724179199,DNS,21705,0 +1724179199,HTTP,938,1927 +1724179199,_err_742,938,1927 +1724179199,NetBIOS-dgm,250,0 +1724179199,NTP,13066,3720 +1724179199,STUN,1934,1526 +1724179199,VKontakte,2742,6036 +1724179199,HTTPS,318013,862832 +1724179199,SSL client,197021,452632 +1724179199,Microsoft,982,7534 +1724179199,Google Play,9962,11357 +1724179199,ICMP,7152,3420 +1724179199,DNS over HTTPS,18540,49640 +1724179199,__unknown,592450,598921 +1724179199,DHCPv6,163,0 +1724179199,Google APIs,2998,11644 +1724179199,Google,6471,14252 +1724179199,Adobe Software,2808,2872 +1724179199,Chrome,460,680 +1724179199,DNS,50445,46450 +1724179199,Firefox,3166,5384 +1724179199,HTTP,71089,87418 +1724179199,Internet Explorer,3630,3532 +1724179199,Launchpad,2560,1984 +1724179199,Microsoft Update,642,502 +1724179199,_err_742,3146,7226 +1724179199,NTP,25230,5730 +1724179199,STUN,190,118 +1724179199,Advanced Packaging Tool,34285,31653 +1724179199,HTTPS,124762,456927 +1724179199,iCloud,5680,11079 +1724179199,Avast,764,782 +1724179199,SSL client,25757,70205 +1724179199,Ubuntu Update Manager,26250,24689 +1724179199,VeriSign,1132,4282 +1724179199,Yandex,8044,25772 +1724179199,Ubuntu,7176,6816 +1724179199,Microsoft CryptoAPI,6496,10146 +1724179199,Microsoft NCSI,805,1034 +1724179199,ICMP,654,0 +1724179199,Telegram,1807,589 +1724179199,Edge Chromium,587,2009 +1724179199,DNS over TLS,1079,4770 +1724179199,DNS over HTTPS,35782,116057 +1724179500,__unknown,480,486 +1724179500,HTTPS,9269,14155 +1724179500,HTTPS,39843,78205 +1724179500,HTTPS,54685,78430 +1724179500,HTTPS,57846,10110 +1724179500,__unknown,1724,3306 +1724179500,HTTPS,3636,2250 +1724179500,Dropbox,48684,14852 +1724179500,HTTPS,84889,49569 +1724179500,SSL client,48684,14852 +1724179500,__unknown,11340,2123 +1724179500,Skype,3617,11861 +1724179500,SSL,1769,5095 +1724179500,HTTPS,574354,259171 +1724179500,SSL client,3617,11861 +1724179500,__unknown,14837,6965 +1724179500,TeamViewer,1448,8838 +1724179500,HTTPS,184343,216833 +1724179500,WhatsApp,2070,10255 +1724179500,Mozilla,13762,26297 +1724179500,Avast,2184,17124 +1724179500,SSL client,81138,119077 +1724179500,Microsoft,14537,22841 +1724179500,Mail.Ru,16855,13101 +1724179500,Yandex,16307,8337 +1724179500,Google Play,11592,16127 +1724179500,Rambler,4453,6412 +1724179500,Telegram,4442,8670 +1724179500,__unknown,7491,5410 +1724179500,Bing,5473,13194 +1724179500,Dropbox,8401,227113 +1724179500,Google APIs,6054,9360 +1724179500,MSN,4057,18882 +1724179500,HTTP,5172,4943 +1724179500,VKontakte,97314,98129 +1724179500,Advanced Packaging Tool,527,470 +1724179500,IMAPS,5464,22102 +1724179500,HTTPS,751950,2271323 +1724179500,iCloud,6323,16354 +1724179500,Mozilla,4351,10917 +1724179500,SSL client,266574,614304 +1724179500,Amazon Web Services,3325,21542 +1724179500,Microsoft,20310,35280 +1724179500,Mail.Ru,65784,58151 +1724179500,Yandex,19308,50633 +1724179500,Ubuntu,527,470 +1724179500,Google Update,3028,2209 +1724179500,Microsoft CryptoAPI,526,443 +1724179500,Office 365,17726,34855 +1724179500,Telegram,27332,742582 +1724179500,Sberbank of Russia,8997,17039 +1724179500,DNS over HTTPS,2179,5064 +1724179500,__unknown,217,227 +1724179500,HTTPS,20560,21295 +1724179500,__unknown,7503,91751 +1724179500,__unknown,10200,139603 +1724179500,Google,6144,14335 +1724179500,HTTPS,44043,44556 +1724179500,SSL client,39718,33450 +1724179500,Google Play,33574,19115 +1724179500,ICMP,2460,0 +1724179500,__unknown,716052,1648699 +1724179500,BitTorrent,310,496 +1724179500,Google APIs,11564,38075 +1724179500,Google Drive,145198,314750 +1724179500,Google,71538,146731 +1724179500,Kaspersky,543,1044 +1724179500,DNS,15092,0 +1724179500,HTTP,1178,1676 +1724179500,NetBIOS-dgm,243,0 +1724179500,NTP,12750,3000 +1724179500,STUN,380,236 +1724179500,VKontakte,2743,6042 +1724179500,Odnoklassniki,3007,8145 +1724179500,Advanced Packaging Tool,635,632 +1724179500,HTTPS,322679,917498 +1724179500,SSL client,242160,540719 +1724179500,Yandex,1251,6151 +1724179500,Ubuntu,635,632 +1724179500,ICMP,6935,1620 +1724179500,Telegram,1427,904 +1724179500,Grammarly,4611,15816 +1724179500,DNS over HTTPS,20503,56514 +1724179500,CoAP,784,576 +1724179500,__unknown,301915,1182265 +1724179500,BitTorrent,153,198 +1724179500,DHCPv6,978,0 +1724179500,Google APIs,5895,14678 +1724179500,Google,8793,17344 +1724179500,BitTorrent tracker,153,198 +1724179500,DNS,51520,49156 +1724179500,Gmail,7084,31159 +1724179500,HTTP,65516,79456 +1724179500,iTunes,2559,17625 +1724179500,Launchpad,3200,2480 +1724179500,Microsoft Update,2233,1853 +1724179500,_err_742,1242,4453 +1724179500,NTP,810,810 +1724179500,SSL,11751,5425 +1724179500,STUN,1364,1148 +1724179500,Advanced Packaging Tool,36429,33528 +1724179500,HTTPS,207297,297363 +1724179500,APNS,11751,5425 +1724179500,iCloud,3882,9072 +1724179500,SSL client,89241,162937 +1724179500,Ubuntu Update Manager,27754,26134 +1724179500,Microsoft,633,8017 +1724179500,Yandex,1742,2278 +1724179500,Ubuntu,7600,7211 +1724179500,Microsoft CryptoAPI,2969,2381 +1724179500,Microsoft WNS,633,8017 +1724179500,Google Play,41802,47667 +1724179500,ICMP,5841,0 +1724179500,Telegram,2415,862 +1724179500,Edge Chromium,1581,4094 +1724179500,DNS over TLS,2158,9540 +1724179500,DNS over HTTPS,27438,90953 +1724179800,__unknown,475899,177560 +1724179800,HTTPS,27576,30681 +1724179800,__unknown,38495,94676 +1724179800,HTTPS,24055,63637 +1724179800,SSL client,24055,63637 +1724179800,Yandex,24055,63637 +1724179800,ICMP,22222,0 +1724179800,HTTPS,11017,724085 +1724179800,SSL client,11017,724085 +1724179800,Yandex,11017,724085 +1724179800,HTTPS,7659,158030 +1724179800,SSL client,7659,158030 +1724179800,Yandex,7659,158030 +1724179800,HTTPS,8772,11196 +1724179800,SSL client,4632,9365 +1724179800,Yandex,4632,9365 +1724179800,HTTPS,5193,12264 +1724179800,SSL client,5193,12264 +1724179800,Google Play,5193,12264 +1724179800,Google APIs,2520,6489 +1724179800,HTTPS,32274,38565 +1724179800,SSL client,24698,30790 +1724179800,Google Play,22178,24301 +1724179800,__unknown,1042080,1573259 +1724179800,Dropbox,3632,2979 +1724179800,Google,3848,11649 +1724179800,Gmail,6669,34815 +1724179800,HTTP,1075,1886 +1724179800,VKontakte,77277,70904 +1724179800,HTTPS,306869,3278549 +1724179800,Mozilla,2355,1990 +1724179800,Avast,1122,8643 +1724179800,SSL client,109202,162103 +1724179800,Microsoft,2053,3666 +1724179800,VeriSign,1075,1886 +1724179800,Yandex,8749,11996 +1724179800,Microsoft CryptoAPI,1075,1886 +1724179800,Google Play,2415,9060 +1724179800,Sharepoint Online,1082,6401 +1724179800,__unknown,363895,79178 +1724179800,Dropbox,1653,1165 +1724179800,Google APIs,2225,7578 +1724179800,MSN,3356,9093 +1724179800,Gmail,43720,2395662 +1724179800,HTTP,5658,7186 +1724179800,Launchpad,574,496 +1724179800,Microsoft Update,2505,6384 +1724179800,Skype,3292,8038 +1724179800,VKontakte,91489,35710 +1724179800,Advanced Packaging Tool,574,496 +1724179800,IMAPS,50504,2423284 +1724179800,HTTPS,1673444,33056811 +1724179800,WhatsApp,3164,5682 +1724179800,Apple sites,3964,13310 +1724179800,iCloud,19739,54663 +1724179800,Mozilla,26445,22661 +1724179800,Avast,3366,28404 +1724179800,SSL client,930148,4322910 +1724179800,CloudFront,3821,6718 +1724179800,Microsoft,54458,101275 +1724179800,Mail.Ru,89614,95925 +1724179800,Yandex,66440,477214 +1724179800,Ubuntu,1031,977 +1724179800,Microsoft CryptoAPI,2051,4036 +1724179800,Apple Maps,2009,7494 +1724179800,Google Play,493523,135719 +1724179800,Rambler,21895,924468 +1724179800,Telegram,120,120 +1724179800,Edge Chromium,874,1371 +1724179800,DNS over HTTPS,6247,19383 +1724179800,HTTPS,382550,1238682 +1724179800,Telegram,382550,1238682 +1724179800,SSL,6439,13091 +1724179800,HTTPS,96011,127209 +1724179800,ICMP,2132,0 +1724179800,Gmail,45746,60526 +1724179800,SSL,8473,27766 +1724179800,HTTPS,107567,109927 +1724179800,SSL client,45746,60526 +1724179800,__unknown,15835,18794 +1724179800,Google,26999,22118 +1724179800,HTTPS,32460,121705 +1724179800,SSL client,26999,22118 +1724179800,ICMP,1462,0 +1724179800,__unknown,526372,2240467 +1724179800,Google Drive,35729,18654 +1724179800,HTTPS,113240,63585 +1724179800,SSL client,39361,31604 +1724179800,Weather.com,3632,12950 +1724179800,ICMP,1520,0 +1724179800,DNS over HTTPS,8904,26043 +1724179800,__unknown,908719,3502747 +1724179800,BitTorrent,463,496 +1724179800,DHCPv6,163,0 +1724179800,Google APIs,30558,46056 +1724179800,Google Drive,5969,10159 +1724179800,Google,51811,211978 +1724179800,BitTorrent tracker,153,0 +1724179800,DNS,20066,0 +1724179800,Gmail,21864,21695 +1724179800,HTTP,981,850 +1724179800,Microsoft Update,981,850 +1724179800,NTP,25230,5730 +1724179800,STUN,1140,756 +1724179800,Odnoklassniki,3067,8206 +1724179800,HTTPS,220887,618958 +1724179800,SSL client,115558,306040 +1724179800,Microsoft CryptoAPI,981,850 +1724179800,ICMP,8175,3420 +1724179800,Grammarly,2289,7946 +1724179800,DNS over HTTPS,2386,7881 +1724179800,CoAP,980,720 +1724179800,__unknown,297951,570249 +1724179800,Google APIs,1115,5563 +1724179800,Google,46727,123815 +1724179800,Chrome,1274,1034 +1724179800,DNS,40359,43178 +1724179800,HTTP,54554,65401 +1724179800,Launchpad,3200,2480 +1724179800,Microsoft Update,646,506 +1724179800,_err_742,938,1927 +1724179800,NetBIOS-dgm,250,0 +1724179800,NTP,1440,1530 +1724179800,STUN,984,888 +1724179800,VKontakte,1291,4357 +1724179800,Odnoklassniki,2575,2406 +1724179800,Advanced Packaging Tool,29767,27246 +1724179800,HTTPS,291224,586565 +1724179800,Apple sites,1802,4444 +1724179800,iCloud,13528,24197 +1724179800,Avast,382,391 +1724179800,SSL client,73254,188404 +1724179800,Ubuntu Update Manager,22362,20984 +1724179800,Yandex,4664,15491 +1724179800,Ubuntu,5905,5614 +1724179800,Microsoft CryptoAPI,3522,3067 +1724179800,Google Play,692,7040 +1724179800,ICMP,2620,0 +1724179800,Edge Chromium,3749,10193 +1724179800,DNS over HTTPS,29430,93174 +1724180100,__unknown,617604,1371563 +1724180100,HTTPS,6558,9185 +1724180100,SSL client,6558,9185 +1724180100,Sharepoint Online,6558,9185 +1724180100,Google,638333,902030 +1724180100,HTTPS,638333,902030 +1724180100,SSL client,638333,902030 +1724180100,DNS over HTTPS,212034,472987 +1724180100,HTTPS,105826,125347 +1724180100,SSL client,105826,125347 +1724180100,Telegram,105826,125347 +1724180100,Dropbox,132709,26120 +1724180100,Skype,3722,7412 +1724180100,HTTPS,244354,89954 +1724180100,SSL client,208254,48709 +1724180100,Google Play,20555,8705 +1724180100,Dropbox Download,51268,6472 +1724180100,__unknown,39070,6575 +1724180100,HTTPS,13467,16031 +1724180100,Zoom,3841,6598 +1724180100,__unknown,175700,104624 +1724180100,Google APIs,13991,251869 +1724180100,Google,4019,13422 +1724180100,HTTP,9835,6672 +1724180100,TeamViewer,1451,8847 +1724180100,HTTPS,303080,15715475 +1724180100,Avast,2244,17300 +1724180100,SSL client,154110,453942 +1724180100,Microsoft,22949,53316 +1724180100,Mail.Ru,32364,39518 +1724180100,Yandex,1131,6091 +1724180100,uTorrent,11044,19614 +1724180100,Rambler,57704,30742 +1724180100,Telegram,3375,7834 +1724180100,GISMETEO,2194,9338 +1724180100,Google Sign in,5019,3885 +1724180100,__unknown,470838,101534 +1724180100,Bing,5304,5324 +1724180100,Dropbox,116474,5006 +1724180100,Google,4016589,1720823 +1724180100,HTTP,584,640 +1724180100,iTunes,8444,49304 +1724180100,Skype,2656,8335 +1724180100,SSL,18627,20034 +1724180100,VKontakte,2139,4450 +1724180100,IMAPS,7042,27525 +1724180100,HTTPS,4755426,2801249 +1724180100,Apple sites,5731,12189 +1724180100,iCloud,48006,39287 +1724180100,Mozilla,2415,1738 +1724180100,Avast,3888,24097 +1724180100,SSL client,4369993,2184424 +1724180100,Microsoft,26608,43547 +1724180100,Mail.Ru,40788,52958 +1724180100,Yandex,17828,39918 +1724180100,uTorrent,10976,19554 +1724180100,Apple Maps,3739,13780 +1724180100,Rambler,7784,4235 +1724180100,Exchange Online,3012,12914 +1724180100,Office 365,24506,80500 +1724180100,Microsoft Windows Live Services Authentication,26845,60245 +1724180100,DNS over HTTPS,6683,28021 +1724180100,DNS over HTTPS,289278,661562 +1724180100,HTTPS,8309,11547 +1724180100,SSL client,8309,11547 +1724180100,DNS over HTTPS,8309,11547 +1724180100,HTTPS,93135,38434 +1724180100,SSL client,93135,38434 +1724180100,Google Play,93135,38434 +1724180100,ICMP,2838,0 +1724180100,HTTP,723,408 +1724180100,HTTPS,7810,8910 +1724180100,__unknown,9773,141378 +1724180100,Google,6861,19837 +1724180100,HTTPS,94214,54350 +1724180100,SSL client,6861,19837 +1724180100,ICMP,3060,3000 +1724180100,DNS over HTTPS,17493,41072 +1724180100,__unknown,312004,489675 +1724180100,BitTorrent,310,496 +1724180100,DHCPv6,978,0 +1724180100,Google APIs,13021,23703 +1724180100,Google,475381,16877315 +1724180100,Chrome,1335,869 +1724180100,DNS,12309,0 +1724180100,Gmail,23066,23139 +1724180100,HTTP,6650,60833 +1724180100,_err_742,1270,3372 +1724180100,NetBIOS-dgm,243,0 +1724180100,NTP,13200,3450 +1724180100,STUN,2810,3938 +1724180100,Steam,2871,55586 +1724180100,HTTPS,629293,17106661 +1724180100,SSL client,527863,16954860 +1724180100,Microsoft CryptoAPI,1174,1006 +1724180100,ICMP,9263,3960 +1724180100,ICMP for IPv6,140,0 +1724180100,Google Sign in,10361,16305 +1724180100,Grammarly,2312,7887 +1724180100,DNS over HTTPS,13326,40077 +1724180100,_err_4655,1534,1561 +1724180100,CoAP,1568,1152 +1724180100,__unknown,388677,1320397 +1724180100,BitTorrent,153,537 +1724180100,DHCPv6,163,0 +1724180100,Google APIs,8424,23385 +1724180100,Google,16930,46806 +1724180100,BitTorrent tracker,153,537 +1724180100,DNS,42702,43127 +1724180100,Firefox,949,1062 +1724180100,HTTP,525650,13264629 +1724180100,Internet Explorer,822,660 +1724180100,Launchpad,3200,2480 +1724180100,Microsoft Update,1959,1634 +1724180100,_err_742,183242,4311066 +1724180100,NTP,900,900 +1724180100,STUN,1554,1266 +1724180100,Odnoklassniki,2635,2421 +1724180100,Advanced Packaging Tool,33043,30375 +1724180100,HTTPS,163017,377334 +1724180100,Apple sites,1757,5621 +1724180100,SSL client,47617,123037 +1724180100,Ubuntu Update Manager,25051,23583 +1724180100,Microsoft,276137,8879159 +1724180100,Yandex,8541,23897 +1724180100,Ubuntu,6995,6605 +1724180100,Microsoft CryptoAPI,4340,3665 +1724180100,Microsoft WNS,633,8019 +1724180100,Apple Maps,1660,5180 +1724180100,Google Play,5634,10180 +1724180100,ICMP,1748,0 +1724180100,Telegram,2576,966 +1724180100,Edge Chromium,4109,14044 +1724180100,Grammarly,1921,7403 +1724180100,DNS over TLS,2951,9793 +1724180100,DNS over HTTPS,67059,216545 +1724180400,__unknown,173865,185731 +1724180400,HTTPS,131837,193035 +1724180400,SSL,20595,27738 +1724180400,__unknown,7414,6060 +1724180400,HTTPS,8634,5770 +1724180400,HTTP,11059141,6546610 +1724180400,HTTPS,33047,39018 +1724180400,__unknown,112061,2336505 +1724180400,HTTPS,84213,260199 +1724180400,SSL client,84213,260199 +1724180400,Microsoft,13205,235267 +1724180400,Google Play,71008,24932 +1724180400,__unknown,780,9010 +1724180400,Dropbox,43035,14595 +1724180400,HTTPS,58740,35895 +1724180400,SSL client,43035,14595 +1724180400,HTTPS,54782,166487 +1724180400,SSL client,48197,53958 +1724180400,Google Play,48197,53958 +1724180400,__unknown,631397,532001 +1724180400,Google APIs,2251,6891 +1724180400,VKontakte,5749,9629 +1724180400,HTTPS,598555,12732062 +1724180400,Mozilla,2255,1698 +1724180400,Avast,2244,18946 +1724180400,SSL client,92214,152417 +1724180400,Microsoft,8546,21965 +1724180400,Mail.Ru,20364,15374 +1724180400,Apple Maps,2780,7432 +1724180400,Google Play,36767,41364 +1724180400,Rambler,4598,7219 +1724180400,Office 365,7435,26083 +1724180400,Telegram,3402,8494 +1724180400,GISMETEO,2005,3248 +1724180400,DNS over HTTPS,2144,8709 +1724180400,__unknown,29358,50590 +1724180400,Bing,46212,94568 +1724180400,Dropbox,147988,485074 +1724180400,Google APIs,2944,7090 +1724180400,MSN,8230,44658 +1724180400,DNS,333,513 +1724180400,Firefox,1050,1426 +1724180400,HTTP,1439,1882 +1724180400,Skype,2644,8338 +1724180400,VKontakte,5439,8987 +1724180400,TwitchTV,6244,7155 +1724180400,IMAPS,6904,27622 +1724180400,HTTPS,759694,2090301 +1724180400,WhatsApp,1859,5921 +1724180400,Apple sites,2255,7255 +1724180400,iCloud,8291,18883 +1724180400,SSL client,461122,1104236 +1724180400,Samsung,4475,20987 +1724180400,Microsoft,70991,157539 +1724180400,Mail.Ru,90867,100859 +1724180400,Yandex,21826,39962 +1724180400,Nvidia,21366,44157 +1724180400,Google Play,632,7041 +1724180400,Exchange Online,2435,6783 +1724180400,Office 365,10220,35302 +1724180400,Microsoft Windows Live Services Authentication,6109,4471 +1724180400,Telegram,120,120 +1724180400,DNS over HTTPS,12148,42858 +1724180400,Discord,1954,5127 +1724180400,HTTPS,1478,1626 +1724180400,SSL client,1478,1626 +1724180400,Office 365,1478,1626 +1724180400,__unknown,215,225 +1724180400,Google,36415,29987 +1724180400,HTTPS,36415,29987 +1724180400,SSL client,36415,29987 +1724180400,__unknown,50576,755480 +1724180400,__unknown,14143,15039 +1724180400,HTTPS,130611,195536 +1724180400,Avast,7543,2841 +1724180400,SSL client,42988,22047 +1724180400,Google Play,35445,19206 +1724180400,ICMP,614,0 +1724180400,DNS over HTTPS,4797,14337 +1724180400,__unknown,408589,403902 +1724180400,BitTorrent,463,496 +1724180400,Google APIs,7782,18469 +1724180400,Google,19602,45257 +1724180400,BitTorrent tracker,153,0 +1724180400,DNS,17240,0 +1724180400,HTTP,3588,7046 +1724180400,Microsoft Update,982,816 +1724180400,_err_742,910,3072 +1724180400,NTP,13290,3540 +1724180400,STUN,3118,598 +1724180400,VKontakte,5983,9702 +1724180400,Odnoklassniki,3067,8161 +1724180400,HTTPS,116037,230311 +1724180400,SSL client,44578,102393 +1724180400,VeriSign,566,2141 +1724180400,Yandex,1313,907 +1724180400,Microsoft CryptoAPI,2678,3974 +1724180400,ICMP,7397,1800 +1724180400,Grammarly,2289,7887 +1724180400,DNS over HTTPS,22044,60279 +1724180400,Google Meet,4542,12010 +1724180400,__unknown,321885,415168 +1724180400,DHCPv6,978,0 +1724180400,Google APIs,7690,21073 +1724180400,Google,37182,70621 +1724180400,Android browser,971,2845 +1724180400,DNS,43576,42737 +1724180400,Firefox,2466,3084 +1724180400,HTTP,62314,82866 +1724180400,Launchpad,3200,2480 +1724180400,Microsoft Update,641,501 +1724180400,_err_742,2180,6448 +1724180400,NTP,25140,5640 +1724180400,SSL,857,7092 +1724180400,STUN,1174,1006 +1724180400,YouTube,632,7041 +1724180400,Advanced Packaging Tool,32263,29535 +1724180400,HTTPS,193590,550003 +1724180400,Mozilla,2878,4911 +1724180400,SSL client,57113,128149 +1724180400,Ubuntu Update Manager,23636,22177 +1724180400,Yandex,10167,26931 +1724180400,Ubuntu,6702,6257 +1724180400,Microsoft CryptoAPI,2631,2246 +1724180400,Microsoft NCSI,471,487 +1724180400,Google Hangouts,857,7092 +1724180400,ICMP,2194,0 +1724180400,Telegram,3215,7708 +1724180400,Edge Chromium,6217,19502 +1724180400,DNS over HTTPS,61078,191014 +1724180699,__unknown,16680,18381 +1724180699,HTTPS,8439,1540 +1724180699,HTTPS,4326,7388 +1724180699,SSL client,4326,7388 +1724180699,Microsoft,4326,7388 +1724180699,__unknown,3298,147353 +1724180699,HTTPS,94815,333948 +1724180699,SSL client,67576,70032 +1724180699,Yandex,3361,13619 +1724180699,Google Play,64215,56413 +1724180699,__unknown,411513,302203 +1724180699,HTTP,871,2240 +1724180699,Skype,2596,8336 +1724180699,VKontakte,23401,30076 +1724180699,HTTPS,235720,3125079 +1724180699,Avast,2244,18412 +1724180699,SSL client,60742,170086 +1724180699,Microsoft,2163,3725 +1724180699,Mail.Ru,16859,12982 +1724180699,Yandex,5335,13782 +1724180699,Microsoft CryptoAPI,871,2240 +1724180699,Office 365,871,2240 +1724180699,Telegram,4340,2569 +1724180699,GISMETEO,2134,9338 +1724180699,Microsoft Teams,2874,38346 +1724180699,Adobe Update,3136,35089 +1724180699,__unknown,56195,11936 +1724180699,Bing,3409,6543 +1724180699,Google APIs,5429,17897 +1724180699,Google,90719,132934 +1724180699,MSN,6913,76395 +1724180699,OpenVPN,0,395 +1724180699,Dell,1111,4308 +1724180699,Gmail,33272,42454 +1724180699,HTTP,4699,13476 +1724180699,Skype,5612,88155 +1724180699,VKontakte,16794,1304521 +1724180699,Advanced Packaging Tool,1274,1253 +1724180699,IMAPS,33272,42454 +1724180699,HTTPS,1603940,13998108 +1724180699,WhatsApp,3044,5682 +1724180699,Mozilla,2333,5191 +1724180699,Avast,5436,29623 +1724180699,SSL client,346888,2017704 +1724180699,Ubuntu Update Manager,1274,1253 +1724180699,Microsoft,32483,54028 +1724180699,Mail.Ru,82836,115212 +1724180699,Yandex,25279,60200 +1724180699,GitHub,1592,5975 +1724180699,Apple Maps,4788,11644 +1724180699,Office 365,14722,31784 +1724180699,Microsoft Windows Live Services Authentication,17719,45394 +1724180699,Sway,3903,8330 +1724180699,Telegram,1369,822 +1724180699,DNS over HTTPS,2904,9617 +1724180699,__unknown,461,180 +1724180699,__unknown,3876,1956 +1724180699,HTTPS,22928,28583 +1724180699,__unknown,187,228 +1724180699,Google,179926,71085 +1724180699,HTTPS,179926,71085 +1724180699,SSL client,179926,71085 +1724180699,HTTPS,21230,22537 +1724180699,__unknown,12863,755763 +1724180699,HTTPS,10666,30440 +1724180699,ICMP,1032,0 +1724180699,Telegram,5073,12222 +1724180699,__unknown,8028,101834 +1724180699,Google,26938,74307 +1724180699,HTTP,453,7911 +1724180699,HTTPS,30303,79690 +1724180699,SSL client,26938,74307 +1724180699,Microsoft,453,7911 +1724180699,Microsoft WNS,453,7911 +1724180699,ICMP,1540,0 +1724180699,CoAP,1960,1440 +1724180699,__unknown,528253,644018 +1724180699,BitTorrent,310,496 +1724180699,DHCPv6,163,0 +1724180699,Google APIs,4708,10720 +1724180699,Google,32605,54185 +1724180699,DNS,16951,0 +1724180699,Gmail,31757,34960 +1724180699,HTTP,1463,1242 +1724180699,Kerberos,180,0 +1724180699,NetBIOS-dgm,250,0 +1724180699,NTP,12570,2820 +1724180699,STUN,570,378 +1724180699,VKontakte,2863,6161 +1724180699,Odnoklassniki,3007,8206 +1724180699,HTTPS,270273,244608 +1724180699,Avast,816,12720 +1724180699,SSL client,93184,156558 +1724180699,Microsoft CryptoAPI,1463,1242 +1724180699,ICMP,5379,2160 +1724180699,Google Sign in,10701,12498 +1724180699,DNS over HTTPS,8918,24451 +1724180699,Google Meet,4479,12098 +1724180699,__unknown,207677,567461 +1724180699,BitTorrent,153,198 +1724180699,DHCPv6,978,0 +1724180699,Google APIs,11150,81068 +1724180699,Google,12785,23377 +1724180699,BitTorrent tracker,153,198 +1724180699,DNS,46268,48789 +1724180699,HTTP,60686,60822 +1724180699,Launchpad,3200,2480 +1724180699,Microsoft Update,1284,1005 +1724180699,_err_742,578,1631 +1724180699,NetBIOS-dgm,243,0 +1724180699,NTP,13020,3270 +1724180699,STUN,3604,4684 +1724180699,Advanced Packaging Tool,29574,27113 +1724180699,HTTPS,249393,425787 +1724180699,Apple sites,1985,4557 +1724180699,SSL client,43610,149390 +1724180699,Ubuntu Update Manager,20995,19791 +1724180699,Yandex,7092,26287 +1724180699,Ubuntu,6732,6291 +1724180699,Microsoft CryptoAPI,3101,2704 +1724180699,Microsoft NCSI,2884,2988 +1724180699,ICMP,2834,0 +1724180699,Google Sign in,6222,4159 +1724180699,Edge Chromium,2635,6823 +1724180699,DNS over HTTPS,44161,140316 +1724181000,__unknown,228252,181638 +1724181000,STUN,284918,284768 +1724181000,__unknown,254214,169370 +1724181000,Google,54981,70790 +1724181000,HTTPS,4599585,1344608 +1724181000,SSL client,54981,70790 +1724181000,HTTPS,379115,685090 +1724181000,SSL client,45885,63952 +1724181000,ICMP,21730,0 +1724181000,Telegram,379115,685090 +1724181000,HTTPS,53330,70486 +1724181000,SSL client,53330,70486 +1724181000,Telegram,53330,70486 +1724181000,HTTPS,54469,62882 +1724181000,SSL client,54469,62882 +1724181000,Telegram,54469,62882 +1724181000,__unknown,41127,712967 +1724181000,Dropbox,151861,24343 +1724181000,HTTPS,212194,37828 +1724181000,SSL client,208377,31802 +1724181000,Google Play,11158,2051 +1724181000,Dropbox Download,45358,5408 +1724181000,__unknown,16549,892147 +1724181000,HTTPS,7767,7577 +1724181000,__unknown,20577,185073 +1724181000,Bing,5370,16874 +1724181000,Google,660755,5163395 +1724181000,MSN,1425,7460 +1724181000,Gmail,6070,3719 +1724181000,Skype,2522,8337 +1724181000,HTTPS,1001533,15210225 +1724181000,Mozilla,1905,5591 +1724181000,Avast,2244,20290 +1724181000,SSL client,809337,14734885 +1724181000,Microsoft,20889,28928 +1724181000,Mail.Ru,67686,73955 +1724181000,Yandex,3433,9805 +1724181000,Google Play,5794,12181 +1724181000,Telegram,4276,8604 +1724181000,GISMETEO,2194,9338 +1724181000,DNS over HTTPS,2714,8522 +1724181000,Firefox Update,29050,9375012 +1724181000,__unknown,64261,30890 +1724181000,Dropbox,16957,57005 +1724181000,Google APIs,6687,10268 +1724181000,Google,44969,54146 +1724181000,HTTP,935,1009 +1724181000,Skype,3280,7981 +1724181000,SSL,15503,26290 +1724181000,HTTPS,887810,9049495 +1724181000,Apple sites,10393,38422 +1724181000,iCloud,5410,36104 +1724181000,Avast,7475,26121 +1724181000,SSL client,396715,699296 +1724181000,Amazon Web Services,3199,21490 +1724181000,CloudFront,1519,1072 +1724181000,Microsoft,38921,82302 +1724181000,Mail.Ru,93690,85103 +1724181000,Yandex,10971,31391 +1724181000,Office 365,4848,22835 +1724181000,Microsoft Windows Live Services Authentication,120718,189182 +1724181000,Hola,15503,26290 +1724181000,Grammarly,12640,9981 +1724181000,DNS over HTTPS,3327,15370 +1724181000,__unknown,1382,540 +1724181000,__unknown,217,227 +1724181000,HTTPS,76603,41045 +1724181000,SSL client,76603,41045 +1724181000,Google Play,76603,41045 +1724181000,ICMP,1118,0 +1724181000,__unknown,61258,331213 +1724181000,Google,4966,10304 +1724181000,Gmail,12137,11101 +1724181000,HTTP,1447,1078 +1724181000,Microsoft Update,1447,1078 +1724181000,HTTPS,82453,68187 +1724181000,SSL client,70993,40763 +1724181000,Microsoft CryptoAPI,1447,1078 +1724181000,Google Play,53890,19358 +1724181000,ICMP,622,0 +1724181000,Telegram,1960,1245 +1724181000,__unknown,499961,571478 +1724181000,BitTorrent,3770,496 +1724181000,DHCPv6,163,0 +1724181000,Google APIs,46154,27710 +1724181000,Google Drive,8344,10732 +1724181000,Google,69983,229209 +1724181000,BitTorrent tracker,484,0 +1724181000,DNS,20071,260 +1724181000,HTTP,1387,14592 +1724181000,Microsoft Update,1387,14592 +1724181000,NTP,13650,3900 +1724181000,STUN,3000,3414 +1724181000,HTTPS,200373,613468 +1724181000,SSL client,133912,273716 +1724181000,Microsoft CryptoAPI,1387,14592 +1724181000,Google Play,9431,6065 +1724181000,ICMP,9338,0 +1724181000,Telegram,3503,7741 +1724181000,DNS over HTTPS,12466,32447 +1724181000,__unknown,284026,448885 +1724181000,BitTorrent,2455,1891 +1724181000,Google APIs,4536,13516 +1724181000,Google,8286,10563 +1724181000,BitTorrent tracker,331,0 +1724181000,DNS,49232,44195 +1724181000,HTTP,78697,287044 +1724181000,Internet Explorer,6429,2178 +1724181000,Launchpad,3200,2480 +1724181000,Microsoft Update,641,507 +1724181000,_err_742,938,1931 +1724181000,NTP,900,900 +1724181000,STUN,1478,1306 +1724181000,Odnoklassniki,2515,2344 +1724181000,Steam,3389,54632 +1724181000,Advanced Packaging Tool,34080,161404 +1724181000,HTTPS,123927,369879 +1724181000,Apple sites,2033,7160 +1724181000,Avast,382,391 +1724181000,SSL client,49623,246402 +1724181000,Ubuntu Update Manager,26040,154576 +1724181000,Microsoft,1326,16250 +1724181000,Yandex,25388,184252 +1724181000,Ubuntu,5265,4809 +1724181000,Microsoft CryptoAPI,4782,6207 +1724181000,Microsoft NCSI,1276,1461 +1724181000,Microsoft WNS,1326,16250 +1724181000,ICMP,1368,0 +1724181000,Telegram,2552,972 +1724181000,Sberbank of Russia,11026,26352 +1724181000,Edge Chromium,8205,23684 +1724181000,DNS over TLS,1079,4770 +1724181000,DNS over HTTPS,43635,139808 +1724181299,__unknown,102084,55272 +1724181299,__unknown,1456,2090 +1724181299,__unknown,23705,1619921 +1724181299,HTTPS,4501,12985 +1724181299,__unknown,3901,286944 +1724181299,Dropbox,202583,20271 +1724181299,Skype,3871,8681 +1724181299,HTTPS,229608,451248 +1724181299,SSL client,220599,271113 +1724181299,Microsoft,11177,234903 +1724181299,Microsoft Teams,2968,7258 +1724181299,__unknown,1347,57209 +1724181299,Gmail,23152,29994 +1724181299,IMAPS,23152,29994 +1724181299,HTTPS,51078,675474 +1724181299,SSL client,23152,29994 +1724181299,__unknown,40270,6758 +1724181299,Dropbox,127400,346551 +1724181299,Google APIs,3032,8714 +1724181299,Google,12838,15306 +1724181299,VKontakte,5002,11760 +1724181299,HTTPS,264494,845084 +1724181299,WhatsApp,2196,10331 +1724181299,Mozilla,2338,5191 +1724181299,Avast,1182,11498 +1724181299,SSL client,233024,500599 +1724181299,Microsoft,42726,66633 +1724181299,Mail.Ru,16080,9375 +1724181299,Yandex,6223,12648 +1724181299,Google Play,16203,12923 +1724181299,Telegram,4441,8604 +1724181299,DNS over HTTPS,6353,14211 +1724181299,__unknown,524945,2393955 +1724181299,Bing,4152,18608 +1724181299,Eset,3616,9577 +1724181299,Google APIs,1741,7245 +1724181299,Google,5114,101037 +1724181299,Gmail,8197,11110 +1724181299,TeamViewer,1458,8847 +1724181299,Steam,6712,15100 +1724181299,IMAPS,8197,11110 +1724181299,HTTPS,6407289,5365840 +1724181299,Apple sites,3726,15052 +1724181299,iCloud,66868,109577 +1724181299,Avast,4066,23857 +1724181299,SSL client,501784,1849595 +1724181299,CloudFront,2257,40641 +1724181299,Microsoft,142229,1019064 +1724181299,Mail.Ru,116395,97356 +1724181299,Yandex,24234,93143 +1724181299,Office 365,39459,122813 +1724181299,Microsoft Windows Live Services Authentication,50012,69694 +1724181299,Office Mobile,2743,8043 +1724181299,Telegram,4830,34800 +1724181299,ResearchGate,13932,65918 +1724181299,Grammarly,2565,7024 +1724181299,Apple News,2308,5889 +1724181299,STUN,250290,199214 +1724181299,HTTPS,1434211,233110 +1724181299,SSL client,1434211,233110 +1724181299,Google Play,1434211,233110 +1724181299,__unknown,424,288 +1724181299,__unknown,67350,443524 +1724181299,Gmail,29419,19668 +1724181299,SSL,7967,5962 +1724181299,HTTPS,112333,76192 +1724181299,Apple sites,20134,33585 +1724181299,SSL client,49553,53253 +1724181299,ICMP,6218,0 +1724181299,DNS over HTTPS,6098,15903 +1724181299,__unknown,287226,353266 +1724181299,BitTorrent,496,496 +1724181299,Google APIs,15724,43692 +1724181299,Google,43898,87191 +1724181299,DNS,13808,0 +1724181299,Gmail,7099,4005 +1724181299,HTTP,4190,3402 +1724181299,Microsoft Update,3314,2662 +1724181299,NTP,12840,3090 +1724181299,STUN,2806,3978 +1724181299,HTTPS,117125,342925 +1724181299,SSL client,84480,222894 +1724181299,Yandex,5502,54168 +1724181299,Microsoft CryptoAPI,4190,3402 +1724181299,Google Play,3315,9970 +1724181299,ICMP,15218,1440 +1724181299,Telegram,959,516 +1724181299,Google Sign in,4530,8105 +1724181299,Grammarly,4412,15763 +1724181299,DNS over HTTPS,8625,21118 +1724181299,__unknown,584350,16789147 +1724181299,BitTorrent,339,537 +1724181299,DHCPv6,1141,0 +1724181299,Eset,1032,4240 +1724181299,Google APIs,2111,6952 +1724181299,Google,16359,35962 +1724181299,BitTorrent tracker,153,537 +1724181299,Chrome,565,484 +1724181299,DNS,48143,47679 +1724181299,HTTP,81805,384856 +1724181299,Launchpad,3200,2480 +1724181299,NetBIOS-dgm,250,0 +1724181299,NTP,2880,2880 +1724181299,SSL,1032,4240 +1724181299,STUN,32457,28235 +1724181299,Odnoklassniki,2666,7618 +1724181299,Advanced Packaging Tool,38658,289488 +1724181299,HTTPS,142338,282689 +1724181299,SSL client,45217,104668 +1724181299,Ubuntu Update Manager,30618,282660 +1724181299,Microsoft,2082,6293 +1724181299,Yandex,12075,34001 +1724181299,Ubuntu,5690,5266 +1724181299,Microsoft CryptoAPI,7116,26659 +1724181299,ICMP,8318,0 +1724181299,Telegram,1934,705 +1724181299,Google Sign in,6215,4201 +1724181299,Edge Chromium,8852,26380 +1724181299,DNS over TLS,2290,9540 +1724181299,DNS over HTTPS,45834,149207 +1724181600,HTTPS,249409,136166 +1724181600,SSL client,44967,63581 +1724181600,Telegram,44967,63581 +1724181600,HTTPS,28056,43658 +1724181600,__unknown,834,0 +1724181600,HTTPS,6007,6975 +1724181600,__unknown,1608,0 +1724181600,HTTPS,41423,48836 +1724181600,SSL client,35528,42194 +1724181600,Google Play,35528,42194 +1724181600,__unknown,79914,28538 +1724181600,Bing,3609,6422 +1724181600,Dropbox,2763,1284 +1724181600,Google,2355,6569 +1724181600,Gmail,8862,5910 +1724181600,HTTP,616,2202 +1724181600,Skype,2595,8337 +1724181600,HTTPS,362064,717845 +1724181600,Mozilla,2342,5399 +1724181600,Avast,2244,21322 +1724181600,SSL client,56491,111363 +1724181600,Microsoft,6420,11504 +1724181600,Yandex,4619,7188 +1724181600,Microsoft CryptoAPI,616,2202 +1724181600,uTorrent,14092,20295 +1724181600,Google Play,5085,9789 +1724181600,Office 365,1505,7344 +1724181600,__unknown,220388,59462 +1724181600,Google,1659347,789085 +1724181600,MSN,1120,7151 +1724181600,Gmail,5395,10516 +1724181600,HTTP,5829,11087 +1724181600,Microsoft Update,1220,3488 +1724181600,IMAPS,5395,10516 +1724181600,HTTPS,2642248,2142235 +1724181600,WhatsApp,2984,5562 +1724181600,Apple sites,4091,23701 +1724181600,Avast,2746,26781 +1724181600,SSL client,1903539,1200525 +1724181600,Microsoft,27761,39094 +1724181600,Mail.Ru,90988,80431 +1724181600,Yandex,27070,88617 +1724181600,Google Update,4341,10370 +1724181600,Exchange Online,1159,8061 +1724181600,Office 365,2576,7369 +1724181600,Microsoft Windows Live Services Authentication,67796,106554 +1724181600,Telegram,120,120 +1724181600,Grammarly,12652,10068 +1724181600,DNS over HTTPS,2370,11845 +1724181600,HTTPS,65771,27532 +1724181600,HTTPS,61270,68532 +1724181600,HTTPS,53723,63455 +1724181600,SSL client,53723,63455 +1724181600,Telegram,53723,63455 +1724181600,HTTPS,53471,24199 +1724181600,__unknown,0,1251 +1724181600,HTTPS,8658,29199 +1724181600,SSL client,8658,29199 +1724181600,Discord,8658,29199 +1724181600,__unknown,7140,74 +1724181600,HTTPS,2693,6930 +1724181600,ICMP,492,0 +1724181600,__unknown,19484,264680 +1724181600,Google,37714,78699 +1724181600,HTTP,3881,181560 +1724181600,Advanced Packaging Tool,3881,181560 +1724181600,HTTPS,62688,94989 +1724181600,SSL client,37714,78699 +1724181600,ICMP,1620,1620 +1724181600,Telegram,0,942 +1724181600,__unknown,669985,581542 +1724181600,BITS,5804,81341 +1724181600,BitTorrent,463,496 +1724181600,Google APIs,6006,15680 +1724181600,Google Drive,5969,9961 +1724181600,Google,45257,90362 +1724181600,BitTorrent tracker,153,0 +1724181600,DNS,20421,0 +1724181600,Gmail,20765,36750 +1724181600,HTTP,2186934,60930916 +1724181600,_err_742,2181130,60849575 +1724181600,NetBIOS-dgm,243,0 +1724181600,NTP,12840,3090 +1724181600,SSL,1871,8120 +1724181600,STUN,3354,0 +1724181600,HTTPS,161068,274685 +1724181600,Mozilla,5373,3385 +1724181600,SSL client,92456,186273 +1724181600,Microsoft,5804,81341 +1724181600,Yandex,1253,907 +1724181600,Google Play,1475,8337 +1724181600,Google Hangouts,1871,8120 +1724181600,ICMP,9632,2400 +1724181600,Grammarly,2299,7821 +1724181600,DNS over HTTPS,4396,12071 +1724181600,__unknown,293461,781728 +1724181600,BitTorrent,186,0 +1724181600,DHCPv6,978,0 +1724181600,Google APIs,5339,13490 +1724181600,Google,23431,56628 +1724181600,Android browser,750,666 +1724181600,DNS,33637,35447 +1724181600,Firefox,1398,2133 +1724181600,HTTP,907550,24834716 +1724181600,Launchpad,1854,1488 +1724181600,Microsoft Update,4806,3896 +1724181600,_err_742,845910,24550495 +1724181600,NTP,1980,1980 +1724181600,SSL,797,7092 +1724181600,STUN,984,888 +1724181600,Advanced Packaging Tool,29901,232767 +1724181600,HTTPS,165875,235556 +1724181600,Apple sites,1706,6541 +1724181600,SSL client,36853,99156 +1724181600,Ubuntu Update Manager,22668,226437 +1724181600,Microsoft,1206,16089 +1724181600,Yandex,2318,9553 +1724181600,Ubuntu,7636,7131 +1724181600,Microsoft CryptoAPI,11148,9409 +1724181600,Microsoft WNS,1206,16089 +1724181600,Google Hangouts,797,7092 +1724181600,ICMP,913,0 +1724181600,Edge Chromium,2228,6744 +1724181600,DNS over HTTPS,38941,122983 +1724181900,__unknown,69156,58308 +1724181900,HTTPS,23460,13653 +1724181900,Dropbox,209317,28638 +1724181900,HTTPS,284193,42739 +1724181900,SSL client,266152,35336 +1724181900,Dropbox Download,56835,6698 +1724181900,__unknown,501094,545568 +1724181900,HTTPS,14355,42365 +1724181900,__unknown,46352,12400 +1724181900,Dropbox,1670,1357 +1724181900,Google APIs,2257,6832 +1724181900,Google,14409,15210 +1724181900,HTTP,2182,7712 +1724181900,Microsoft Update,1424,1010 +1724181900,Steam,2870,11616 +1724181900,HTTPS,460308,656021 +1724181900,WhatsApp,2250,10271 +1724181900,Avast,1182,12941 +1724181900,SSL client,44660,63566 +1724181900,Microsoft,6168,10996 +1724181900,Mail.Ru,11900,7477 +1724181900,Microsoft CryptoAPI,1424,1010 +1724181900,Apple Maps,2780,7520 +1724181900,Telegram,4408,8604 +1724181900,Google Sign in,4962,3839 +1724181900,__unknown,53554,47572 +1724181900,Dropbox,17302,49639 +1724181900,Google APIs,5668,16374 +1724181900,Google,164193,169518 +1724181900,HTTP,895,2238 +1724181900,TeamViewer,1510,8847 +1724181900,IMAPS,7030,27331 +1724181900,HTTPS,863200,4900332 +1724181900,Avast,2364,25590 +1724181900,SSL client,385676,597860 +1724181900,Amazon Web Services,2964,16028 +1724181900,Microsoft,33082,60924 +1724181900,Mail.Ru,65947,80796 +1724181900,Yandex,22000,41809 +1724181900,GitHub,1526,5977 +1724181900,uTorrent,11004,19482 +1724181900,Office 365,4229,16423 +1724181900,Microsoft Windows Live Services Authentication,50347,69238 +1724181900,OneDrive,1514,10212 +1724181900,Grammarly,2026,7003 +1724181900,DNS over HTTPS,9826,28544 +1724181900,ICMP,4264,0 +1724181900,__unknown,30593,33564 +1724181900,__unknown,215,225 +1724181900,DNS over HTTPS,44437,99463 +1724181900,Windows Live,3363,19587 +1724181900,SSL,9477,28441 +1724181900,HTTPS,24301,41814 +1724181900,SSL client,3363,19587 +1724181900,__unknown,702,2614 +1724181900,HTTP,482,457 +1724181900,HTTPS,25846,15098 +1724181900,__unknown,35095,17392 +1724181900,HTTP,515,408 +1724181900,SSL,1449,1394 +1724181900,STUN,1002801,1040757 +1724181900,HTTPS,26605,92496 +1724181900,SSL client,1449,1394 +1724181900,Google Hangouts,1449,1394 +1724181900,ICMP,3170,900 +1724181900,Telegram,1059,564 +1724181900,__unknown,455758,381091 +1724181900,BitTorrent,310,496 +1724181900,DHCPv6,163,0 +1724181900,Google APIs,1933,7760 +1724181900,Google,23356,63397 +1724181900,Android browser,684,600 +1724181900,DNS,14112,0 +1724181900,HTTP,684,600 +1724181900,NTP,25410,5910 +1724181900,SSL,364,7092 +1724181900,STUN,1860,3300 +1724181900,Odnoklassniki,3068,8103 +1724181900,HTTPS,74745,315271 +1724181900,Apple sites,6163,156849 +1724181900,SSL client,40302,252636 +1724181900,Yandex,1313,907 +1724181900,ICMP,4290,0 +1724181900,Grammarly,4469,15620 +1724181900,DNS over HTTPS,2362,3630 +1724181900,__unknown,409017,453321 +1724181900,BitTorrent,153,0 +1724181900,Google,17736,38867 +1724181900,Android browser,750,666 +1724181900,BitTorrent tracker,153,0 +1724181900,DNS,48229,48486 +1724181900,HTTP,73198,472420 +1724181900,Internet Explorer,762,660 +1724181900,Launchpad,3200,2406 +1724181900,Microsoft Update,3175,3494 +1724181900,NTP,900,990 +1724181900,STUN,1246,888 +1724181900,Steam,4288,129073 +1724181900,Advanced Packaging Tool,38093,270809 +1724181900,HTTPS,181990,234822 +1724181900,iCloud,29822,23093 +1724181900,SSL client,84481,120784 +1724181900,Ubuntu Update Manager,28927,263031 +1724181900,Microsoft,693,8127 +1724181900,Yandex,7822,27102 +1724181900,Ubuntu,8223,7665 +1724181900,Microsoft CryptoAPI,5005,5669 +1724181900,Microsoft WNS,693,8127 +1724181900,Google Play,27864,27466 +1724181900,ICMP,2151,0 +1724181900,Telegram,1742,593 +1724181900,Edge Chromium,5163,16826 +1724181900,DNS over TLS,2224,9540 +1724181900,DNS over HTTPS,45954,155552 +1724182200,HTTPS,30709,37755 +1724182200,HTTPS,917855,1587468 +1724182200,SSL client,917855,1587468 +1724182200,Mail.Ru,917855,1587468 +1724182200,__unknown,1680,3572 +1724182200,Windows Live,83152,19542 +1724182200,HTTPS,112387,57501 +1724182200,SSL client,87349,25924 +1724182200,Sharepoint Online,4197,6382 +1724182200,DNS over HTTPS,4894,11598 +1724182200,HTTPS,4080,1748 +1724182200,__unknown,836,0 +1724182200,Dropbox,218281,21025 +1724182200,HTTPS,1440469,123091240 +1724182200,SSL client,225781,138413 +1724182200,Microsoft,7500,117388 +1724182200,HTTPS,30273,26244 +1724182200,__unknown,16747,14970 +1724182200,Dropbox,183547,205930 +1724182200,HTTP,1253080,35852813 +1724182200,_err_742,1251557,35849832 +1724182200,TeamViewer,1510,8838 +1724182200,HTTPS,317218,389945 +1724182200,Mozilla,2338,5191 +1724182200,Avast,3432,33969 +1724182200,SSL client,264676,337683 +1724182200,Microsoft,15147,32731 +1724182200,Yandex,8292,12347 +1724182200,Aliexpress,5143,7367 +1724182200,Microsoft CryptoAPI,1523,2981 +1724182200,Google Play,43518,20653 +1724182200,Office 365,2680,12878 +1724182200,__unknown,251410,185159 +1724182200,Bing,1923,9265 +1724182200,Dropbox,9165,5659 +1724182200,Google APIs,4061,12867 +1724182200,Google,96742,113694 +1724182200,Dell,1111,4305 +1724182200,Gmail,6602,8076 +1724182200,HTTP,1745,4012 +1724182200,Launchpad,640,496 +1724182200,_err_742,518,1571 +1724182200,Skype,5844,21680 +1724182200,Odnoklassniki,1840,3391 +1724182200,Advanced Packaging Tool,640,496 +1724182200,IMAPS,6602,8076 +1724182200,HTTPS,812847,13636780 +1724182200,WhatsApp,1859,5981 +1724182200,Apple sites,1806,4578 +1724182200,iCloud,14659,37332 +1724182200,Mozilla,2278,5191 +1724182200,SSL client,371905,550197 +1724182200,Microsoft,35895,61693 +1724182200,Mail.Ru,124422,115645 +1724182200,Yandex,17882,47006 +1724182200,Nvidia,5865,14568 +1724182200,Apple Maps,2134,7561 +1724182200,Google Play,4475,8813 +1724182200,Rambler,4971,7715 +1724182200,Office 365,8506,35965 +1724182200,Microsoft Windows Live Services Authentication,24445,34699 +1724182200,Telegram,184631,10898700 +1724182200,Edge Chromium,587,1945 +1724182200,DNS over HTTPS,5698,21836 +1724182200,HTTPS,4345,47051 +1724182200,__unknown,331,660 +1724182200,__unknown,30487,33129 +1724182200,HTTPS,49773,64109 +1724182200,ICMP,410,0 +1724182200,__unknown,310018,347709 +1724182200,BitTorrent,463,496 +1724182200,DHCPv6,978,0 +1724182200,Google APIs,145512,55857 +1724182200,Google,55139,101838 +1724182200,BitTorrent tracker,153,0 +1724182200,DNS,22911,0 +1724182200,HTTP,1005,1342 +1724182200,NetBIOS-dgm,250,0 +1724182200,NTP,12930,3180 +1724182200,STUN,3300,1550 +1724182200,Odnoklassniki,3067,8222 +1724182200,HTTPS,288217,334281 +1724182200,Apple sites,1404,5455 +1724182200,SSL client,215370,204027 +1724182200,Weather.com,5072,19550 +1724182200,Yandex,1253,907 +1724182200,ICMP,28321,1500 +1724182200,ICMP for IPv6,70,0 +1724182200,Telegram,1559,928 +1724182200,Grammarly,2227,7871 +1724182200,DNS over HTTPS,17025,48218 +1724182200,__unknown,275958,800725 +1724182200,BITS,6374,81640 +1724182200,DHCPv6,163,0 +1724182200,Google APIs,21492,30497 +1724182200,Google,55054,120093 +1724182200,DNS,39302,38582 +1724182200,Google Calendar,2401,9452 +1724182200,HTTP,69642,301027 +1724182200,Launchpad,3200,2480 +1724182200,Microsoft Update,642,508 +1724182200,NetBIOS-dgm,243,0 +1724182200,NTP,900,900 +1724182200,STUN,2844,4188 +1724182200,Advanced Packaging Tool,38834,185865 +1724182200,HTTPS,228763,431968 +1724182200,Apple sites,1816,4621 +1724182200,iCloud,38250,18186 +1724182200,Avast,382,391 +1724182200,SSL client,141776,237710 +1724182200,Ubuntu Update Manager,24901,23403 +1724182200,Microsoft,6374,81640 +1724182200,Yandex,8262,19735 +1724182200,Ubuntu,13283,162740 +1724182200,Microsoft CryptoAPI,2299,1966 +1724182200,Google Play,12880,32854 +1724182200,ICMP,2427,0 +1724182200,Telegram,3815,8042 +1724182200,Edge Chromium,3522,12037 +1724182200,DNS over TLS,1079,4771 +1724182200,DNS over HTTPS,49350,160232 +1724182500,Gmail,29441,50234 +1724182500,IMAPS,29441,50234 +1724182500,SSL client,29441,50234 +1724182500,HTTPS,45099,64030 +1724182500,SSL client,45099,64030 +1724182500,Telegram,45099,64030 +1724182500,HTTPS,2005925,166145 +1724182500,SSL client,1960278,146936 +1724182500,Office 365,1960278,146936 +1724182500,Google,53711,37745 +1724182500,HTTPS,53711,37745 +1724182500,SSL client,53711,37745 +1724182500,Google APIs,3522,12648 +1724182500,HTTPS,55243,64197 +1724182500,SSL client,41755,50840 +1724182500,Yandex,4689,7594 +1724182500,Google Play,33544,30598 +1724182500,Bing,3411,6484 +1724182500,Dropbox,1845,1895 +1724182500,HTTPS,270102,477557 +1724182500,Apple sites,2048,7004 +1724182500,iCloud,5313,11859 +1724182500,Avast,2364,25604 +1724182500,SSL client,54509,203169 +1724182500,Microsoft,9669,22710 +1724182500,Yandex,6825,9520 +1724182500,Google Play,13733,17807 +1724182500,Office 365,3504,40832 +1724182500,GISMETEO,2134,9406 +1724182500,Adobe Update,3663,50048 +1724182500,__unknown,55849,101164 +1724182500,Bing,1987,9391 +1724182500,Google APIs,6726,1748 +1724182500,Google,36854,83229 +1724182500,Android browser,827,2709 +1724182500,Gmail,5850,14862 +1724182500,HTTP,14335,307609 +1724182500,Microsoft Update,58115,76672 +1724182500,_err_742,518,1571 +1724182500,Skype,2642,8324 +1724182500,Steam,12733,29515 +1724182500,Advanced Packaging Tool,2775,2621 +1724182500,IMAPS,5850,14862 +1724182500,HTTPS,717546,5809728 +1724182500,WhatsApp,3227,5562 +1724182500,Apple sites,4202,14129 +1724182500,iCloud,5238,11436 +1724182500,Avast,12552,419541 +1724182500,SSL client,427091,1191379 +1724182500,Ubuntu Update Manager,2775,2621 +1724182500,Microsoft,160783,316069 +1724182500,Mail.Ru,49404,37760 +1724182500,Yandex,25050,76467 +1724182500,Ubuntu,1719,4375 +1724182500,Nvidia,1831,4856 +1724182500,Microsoft CryptoAPI,526,443 +1724182500,Apple Maps,2015,7560 +1724182500,Office 365,7450,36192 +1724182500,Microsoft Windows Live Services Authentication,34134,46180 +1724182500,Telegram,4970,8649 +1724182500,Edge Chromium,994,3888 +1724182500,DNS over HTTPS,4831,16712 +1724182500,Discord,1307,6406 +1724182500,__unknown,187,228 +1724182500,HTTPS,22863,28811 +1724182500,__unknown,421,322 +1724182500,Google,110041,71125 +1724182500,HTTP,955,13060 +1724182500,HTTPS,154363,99445 +1724182500,SSL client,151126,91710 +1724182500,Google Play,41085,20585 +1724182500,ICMP,6182,4620 +1724182500,DNS over HTTPS,4497,12220 +1724182500,__unknown,487641,831302 +1724182500,BitTorrent,310,496 +1724182500,Google APIs,2766,8830 +1724182500,Google,29206,54877 +1724182500,DNS,13963,0 +1724182500,Gmail,23399,18935 +1724182500,HTTP,1803,2084 +1724182500,Microsoft Update,641,645 +1724182500,NTP,720,720 +1724182500,SSL,797,7093 +1724182500,STUN,1860,3300 +1724182500,Odnoklassniki,5673,15694 +1724182500,HTTPS,236523,436694 +1724182500,Mozilla,1876,4611 +1724182500,SSL client,100195,159662 +1724182500,Yandex,4020,13170 +1724182500,Microsoft CryptoAPI,1803,2084 +1724182500,Google Play,30210,31442 +1724182500,Google Hangouts,797,7093 +1724182500,ICMP,3718,900 +1724182500,Telegram,9500,128348 +1724182500,DNS over HTTPS,8766,22236 +1724182500,__unknown,307137,530886 +1724182500,BitTorrent,153,537 +1724182500,DHCPv6,978,0 +1724182500,Google APIs,32384,11781 +1724182500,Google,24117,53968 +1724182500,Android browser,684,666 +1724182500,BitTorrent tracker,153,537 +1724182500,DNS,51582,55865 +1724182500,HTTP,54161,73007 +1724182500,Launchpad,3200,2480 +1724182500,Microsoft Update,3886,3371 +1724182500,NTP,900,900 +1724182500,STUN,984,888 +1724182500,Advanced Packaging Tool,29660,27615 +1724182500,HTTPS,179078,295954 +1724182500,Mozilla,2460,5246 +1724182500,SSL client,68766,140402 +1724182500,Doubleclick,3063,38009 +1724182500,Samsung,1817,12163 +1724182500,Ubuntu Update Manager,22362,21017 +1724182500,Microsoft,693,8125 +1724182500,Yandex,3753,18782 +1724182500,Ubuntu,4114,3952 +1724182500,Microsoft CryptoAPI,5603,4890 +1724182500,Microsoft WNS,693,8125 +1724182500,ICMP,1516,120 +1724182500,Edge Chromium,3749,10246 +1724182500,DNS over HTTPS,35659,122134 +1724182799,__unknown,56887,35487 +1724182799,HTTPS,16956,30848 +1724182799,SSL client,16956,30848 +1724182799,Yandex,16956,30848 +1724182799,DNS over HTTPS,24648,64822 +1724182799,HTTPS,68431,143001 +1724182799,DNS over HTTPS,137463,319685 +1724182799,HTTPS,1065353,2277174 +1724182799,SSL client,16560,207244 +1724182799,Yandex,16560,207244 +1724182799,Dropbox,151241,24782 +1724182799,HTTPS,1137995,210792 +1724182799,SSL client,1137995,210792 +1724182799,Yandex,884594,118758 +1724182799,Dropbox Download,48283,5641 +1724182799,Telegram,53877,61611 +1724182799,__unknown,47928,48204 +1724182799,HTTPS,62572,339977 +1724182799,SSL client,24733,82866 +1724182799,Mail.Ru,20016,74414 +1724182799,Telegram,7347,12237 +1724182799,Apple News,4717,8452 +1724182799,__unknown,5548,863 +1724182799,Bing,3844,25362 +1724182799,Dropbox,2950,1361 +1724182799,Skype,2583,8337 +1724182799,TeamViewer,1450,8838 +1724182799,HTTPS,134009,268053 +1724182799,Apple sites,2437,15978 +1724182799,Mozilla,2218,5251 +1724182799,Avast,3486,39066 +1724182799,SSL client,69372,175636 +1724182799,Microsoft,19045,39364 +1724182799,Siri,5894,6170 +1724182799,Yandex,2207,4951 +1724182799,Google Play,19406,9986 +1724182799,Office 365,1658,1626 +1724182799,GISMETEO,2194,9346 +1724182799,DNS over HTTPS,8064,20393 +1724182799,__unknown,29723,4927 +1724182799,Dropbox,129940,225677 +1724182799,Google APIs,6227,13813 +1724182799,Google,69302,35999 +1724182799,MSN,2716,21192 +1724182799,Gmail,14315,18007 +1724182799,HTTP,1248,682 +1724182799,Launchpad,640,496 +1724182799,Skype,8514,106562 +1724182799,Advanced Packaging Tool,640,496 +1724182799,IMAPS,21351,45435 +1724182799,HTTPS,801069,2565705 +1724182799,Apple sites,1862,4534 +1724182799,Avast,3486,39549 +1724182799,SSL client,334735,644845 +1724182799,CloudFront,1519,1072 +1724182799,Microsoft,26332,64653 +1724182799,Mail.Ru,45515,59098 +1724182799,Yandex,14624,33586 +1724182799,Apple Maps,2834,6490 +1724182799,Office 365,2656,9566 +1724182799,Microsoft Windows Live Services Authentication,7727,11537 +1724182799,Telegram,4985,26684 +1724182799,DNS over HTTPS,2212,10786 +1724182799,Google,97277,124185 +1724182799,HTTPS,97277,124185 +1724182799,SSL client,97277,124185 +1724182799,__unknown,217565,106331 +1724182799,__unknown,217,227 +1724182799,HTTPS,52028,28458 +1724182799,HTTPS,89100,414566 +1724182799,__unknown,2249,7303 +1724182799,Google,51434,146045 +1724182799,HTTPS,51434,146045 +1724182799,SSL client,51434,146045 +1724182799,ICMP,19762,0 +1724182799,__unknown,14014,36752 +1724182799,HTTPS,7473,26988 +1724182799,ICMP,1290,0 +1724182799,Telegram,5379,19790 +1724182799,__unknown,508878,1210655 +1724182799,BitTorrent,463,496 +1724182799,DHCPv6,163,0 +1724182799,Google APIs,42397,15209 +1724182799,Google,62526,149058 +1724182799,BitTorrent tracker,153,0 +1724182799,DNS,27774,0 +1724182799,Gmail,5594,8007 +1724182799,HTTP,602,1130 +1724182799,NetBIOS-dgm,250,0 +1724182799,NTP,13560,3810 +1724182799,STUN,82,74 +1724182799,Odnoklassniki,2575,2405 +1724182799,HTTPS,207817,885626 +1724182799,SSL client,126778,430950 +1724182799,Samsung,2443,8094 +1724182799,Yandex,6773,235344 +1724182799,MDNS,364,0 +1724182799,Microsoft CryptoAPI,602,1130 +1724182799,ICMP,21232,1320 +1724182799,Grammarly,2162,7822 +1724182799,DNS over HTTPS,20445,57130 +1724182799,__unknown,334443,638854 +1724182799,Google APIs,3316,7417 +1724182799,Google,44875,326882 +1724182799,Chrome,1733,19299 +1724182799,DNS,49869,45718 +1724182799,HTTP,64084,156843 +1724182799,Launchpad,3200,2480 +1724182799,Microsoft Update,1934,1523 +1724182799,NTP,2880,2880 +1724182799,STUN,2926,4262 +1724182799,YouTube,2529,3657 +1724182799,VKontakte,626,3534 +1724182799,Steam,3030,35576 +1724182799,Advanced Packaging Tool,33612,30821 +1724182799,HTTPS,959935,1859961 +1724182799,Mozilla,1304,6836 +1724182799,Avast,382,391 +1724182799,SSL client,93656,457320 +1724182799,Ubuntu Update Manager,24985,23463 +1724182799,Microsoft,633,8125 +1724182799,VeriSign,1132,4282 +1724182799,Yandex,14648,46713 +1724182799,Ubuntu,7193,6780 +1724182799,Microsoft CryptoAPI,5776,10360 +1724182799,Microsoft NCSI,574,487 +1724182799,Microsoft WNS,633,8125 +1724182799,Google Play,13833,19861 +1724182799,CloudFlare,3697,11929 +1724182799,Office 365,1568,25324 +1724182799,ICMP,1760,0 +1724182799,Browsec,2112,8654 +1724182799,Telegram,1726,693 +1724182799,Edge Chromium,2228,6745 +1724182799,Font Awesome,646,2886 +1724182799,DNS over TLS,3237,14310 +1724182799,DNS over HTTPS,66818,220015 +1724183100,HTTPS,84644,110740 +1724183100,HTTPS,100948,91807 +1724183100,SSL client,53801,70612 +1724183100,Telegram,53801,70612 +1724183100,HTTPS,2830,3715 +1724183100,Dropbox,80098,15441 +1724183100,Google,29598,26459 +1724183100,HTTPS,109696,41900 +1724183100,SSL client,109696,41900 +1724183100,Gmail,7767,17841 +1724183100,IMAPS,7767,17841 +1724183100,HTTPS,15844,16515 +1724183100,SSL client,7767,17841 +1724183100,__unknown,192905,178698 +1724183100,Bing,3399,9572 +1724183100,Google APIs,1215,5908 +1724183100,HTTPS,123516,392350 +1724183100,Avast,4608,50944 +1724183100,SSL client,58841,318930 +1724183100,Microsoft,13595,30852 +1724183100,Mail.Ru,4900,16487 +1724183100,Yandex,23809,121670 +1724183100,Office 365,3599,38775 +1724183100,Telegram,4171,8604 +1724183100,Adobe Update,3716,44722 +1724183100,__unknown,3637939,967117 +1724183100,Bing,3751,6484 +1724183100,Google APIs,4135,18584 +1724183100,Google,35491,62624 +1724183100,Gmail,12278,22876 +1724183100,HTTP,2093,2093 +1724183100,iTunes,979,6097 +1724183100,Advanced Packaging Tool,1274,1193 +1724183100,IMAPS,19260,50564 +1724183100,HTTPS,666685,16870642 +1724183100,WhatsApp,1799,6021 +1724183100,Apple sites,9654,17820 +1724183100,SSL client,263404,502252 +1724183100,Samsung,2802,7384 +1724183100,Amazon Web Services,3319,21430 +1724183100,Ubuntu Update Manager,1274,1193 +1724183100,Microsoft,40755,44871 +1724183100,Mail.Ru,63810,103203 +1724183100,Yandex,25044,66937 +1724183100,GitHub,1592,5976 +1724183100,Ubuntu,293,457 +1724183100,Microsoft CryptoAPI,526,443 +1724183100,Apple Maps,1593,5065 +1724183100,Exchange Online,1168,8065 +1724183100,Office 365,5608,15432 +1724183100,Microsoft Windows Live Services Authentication,52491,94190 +1724183100,Telegram,10025,31193 +1724183100,Microsoft Teams,527,279 +1724183100,DNS over HTTPS,4614,18152 +1724183100,CoAP,7644,5616 +1724183100,ICMP,6630,0 +1724183100,__unknown,1360,1239 +1724183100,Google,29775,27034 +1724183100,HTTPS,55098,37448 +1724183100,SSL client,29775,27034 +1724183100,__unknown,8459,405108 +1724183100,Google,20973,29367 +1724183100,HTTPS,30065,44350 +1724183100,SSL client,20973,29367 +1724183100,ICMP,4680,4680 +1724183100,DNS over HTTPS,21629,53562 +1724183100,__unknown,574474,1019847 +1724183100,BitTorrent,310,496 +1724183100,DHCPv6,978,0 +1724183100,Google APIs,36714,9171 +1724183100,Google Drive,26843,15146 +1724183100,Google,44957,111108 +1724183100,IKE,486,458 +1724183100,Android browser,684,666 +1724183100,DNS,18620,0 +1724183100,Gmail,21363,15763 +1724183100,HTTP,3048,2688 +1724183100,NetBIOS-dgm,243,0 +1724183100,NTP,13380,3630 +1724183100,STUN,1860,3300 +1724183100,Odnoklassniki,3007,8147 +1724183100,HTTPS,714176,846987 +1724183100,Mozilla,1607,4671 +1724183100,SSL client,290615,194569 +1724183100,Microsoft CryptoAPI,2364,2022 +1724183100,Google Play,149890,26213 +1724183100,ICMP,4864,0 +1724183100,Google Sign in,6234,4350 +1724183100,DNS over HTTPS,5936,13894 +1724183100,__unknown,312115,450815 +1724183100,BitTorrent,153,198 +1724183100,DHCPv6,163,0 +1724183100,Google APIs,4015,51844 +1724183100,Google,17110,52820 +1724183100,IKE,486,458 +1724183100,Android browser,684,600 +1724183100,BitTorrent tracker,153,198 +1724183100,DNS,43839,45225 +1724183100,Gmail,9274,9943 +1724183100,HTTP,49954,75203 +1724183100,Launchpad,3200,2480 +1724183100,NTP,1350,1350 +1724183100,STUN,2214,1998 +1724183100,Advanced Packaging Tool,27647,25204 +1724183100,HTTPS,1282222,2045080 +1724183100,SSL client,35978,134501 +1724183100,Ubuntu Update Manager,19655,18412 +1724183100,Yandex,6786,31578 +1724183100,Ubuntu,5642,5230 +1724183100,ICMP,2214,0 +1724183100,Edge Chromium,7798,23602 +1724183100,DNS over HTTPS,34883,113190 +1724183400,__unknown,127754,127257 +1724183400,__unknown,27844,26722 +1724183400,HTTPS,169970,106128 +1724183400,__unknown,21664,23142 +1724183400,HTTPS,131174,149286 +1724183400,Windows Live,28158,7288 +1724183400,Skype,4717,7243 +1724183400,HTTPS,138095,139808 +1724183400,SSL client,87448,47516 +1724183400,Microsoft,28939,17564 +1724183400,Google Play,25634,15421 +1724183400,__unknown,2332,0 +1724183400,HTTPS,78546,50784 +1724183400,SSL client,41855,36407 +1724183400,Google Play,41855,36407 +1724183400,__unknown,1906870,2506710 +1724183400,Dropbox,1638,1265 +1724183400,Google APIs,18187,111205 +1724183400,Google,995,4565 +1724183400,HTTP,1075,1826 +1724183400,Skype,2582,8337 +1724183400,HTTPS,298488,334293 +1724183400,Apple sites,1848,6426 +1724183400,Mozilla,2144,4639 +1724183400,Avast,3486,39966 +1724183400,SSL client,47429,232380 +1724183400,Microsoft,2042,3726 +1724183400,VeriSign,1075,1826 +1724183400,Mail.Ru,4300,10221 +1724183400,Yandex,10207,42030 +1724183400,Microsoft CryptoAPI,1075,1826 +1724183400,Telegram,4640,8538 +1724183400,__unknown,51065,258782 +1724183400,Bing,13252,17358 +1724183400,Dropbox,10412,223497 +1724183400,Google APIs,2670,6895 +1724183400,Google,108083,199933 +1724183400,MSN,2934,7601 +1724183400,HTTP,3267,3045 +1724183400,iTunes,2349,18105 +1724183400,Skype,2584,8264 +1724183400,Odnoklassniki,7360,13564 +1724183400,Advanced Packaging Tool,3267,3045 +1724183400,IMAPS,6916,27622 +1724183400,HTTPS,637559,3782883 +1724183400,WhatsApp,3164,5682 +1724183400,Apple sites,2234,7025 +1724183400,iCloud,15145,36388 +1724183400,Avast,3486,38853 +1724183400,SSL client,460582,2717646 +1724183400,Ubuntu Update Manager,2632,2479 +1724183400,Microsoft,59148,90982 +1724183400,Mail.Ru,79650,84965 +1724183400,Yandex,19134,53085 +1724183400,Ubuntu,635,566 +1724183400,Apple Maps,2065,7494 +1724183400,Google Play,7794,11014 +1724183400,Office 365,17035,1602829 +1724183400,Microsoft Windows Live Services Authentication,107312,297288 +1724183400,Telegram,12819,183897 +1724183400,Google,298845,135064 +1724183400,HTTPS,298845,135064 +1724183400,SSL client,298845,135064 +1724183400,DNS over HTTPS,208765,473130 +1724183400,ICMP,3526,0 +1724183400,__unknown,38552,46213 +1724183400,Google,59892,39694 +1724183400,Gmail,35623,25455 +1724183400,HTTPS,157734,136034 +1724183400,SSL client,149924,127125 +1724183400,Telegram,54409,61976 +1724183400,__unknown,90507,276520 +1724183400,HTTP,482,408 +1724183400,__unknown,6307,3863 +1724183400,HTTPS,61714,1196573 +1724183400,Mozilla,1279,4475 +1724183400,SSL client,4778,12722 +1724183400,CloudFlare,1488,4362 +1724183400,ICMP,1312,0 +1724183400,Telegram,1171,852 +1724183400,Font Awesome,2011,3885 +1724183400,__unknown,559991,805972 +1724183400,BitTorrent,463,496 +1724183400,Google APIs,30002,8459 +1724183400,Google Drive,15614,21031 +1724183400,Google,98777,390145 +1724183400,BitTorrent tracker,153,0 +1724183400,DNS,17664,0 +1724183400,Gmail,20734,25219 +1724183400,NTP,20450,4815 +1724183400,STUN,1860,3300 +1724183400,Odnoklassniki,2798,7559 +1724183400,HTTPS,645483,1268526 +1724183400,SSL client,173068,471817 +1724183400,Yandex,843,6516 +1724183400,ICMP,13953,0 +1724183400,Grammarly,2172,7877 +1724183400,DNS over HTTPS,9434,23843 +1724183400,CoAP,1372,1008 +1724183400,__unknown,197966,179064 +1724183400,BITS,6932,81809 +1724183400,DHCPv6,978,0 +1724183400,Eset,545,820 +1724183400,Google APIs,5945,14568 +1724183400,Google,25873,57573 +1724183400,Android browser,1368,1200 +1724183400,Chrome,1130,968 +1724183400,DNS,46869,42294 +1724183400,HTTP,1194206,27046841 +1724183400,Launchpad,3200,2480 +1724183400,Microsoft Update,1962,1627 +1724183400,NetBIOS-dgm,250,0 +1724183400,NTP,5770,1905 +1724183400,SSL,855,7031 +1724183400,STUN,984,888 +1724183400,YouTube,5182,2023 +1724183400,Advanced Packaging Tool,34922,32071 +1724183400,HTTPS,166269,233835 +1724183400,Avast,382,391 +1724183400,SSL client,51286,126155 +1724183400,Ubuntu Update Manager,26343,24749 +1724183400,Microsoft,1119331,26958078 +1724183400,Mail.Ru,5416,5478 +1724183400,Yandex,6133,33972 +1724183400,Ubuntu,7079,6682 +1724183400,Microsoft CryptoAPI,6592,5400 +1724183400,Microsoft WNS,693,8128 +1724183400,Google Hangouts,855,7031 +1724183400,ICMP,1162,0 +1724183400,Telegram,1854,645 +1724183400,Edge Chromium,6097,18221 +1724183400,DNS over TLS,2158,9538 +1724183400,DNS over HTTPS,30713,87466 +1724183701,HTTPS,13667,36180 +1724183701,SSL client,13667,36180 +1724183701,Yandex,13667,36180 +1724183701,DNS over HTTPS,238403,546593 +1724183701,HTTPS,55207,50194 +1724183701,SSL client,7689,31055 +1724183701,Yandex,7689,31055 +1724183701,HTTPS,2986,3896 +1724183701,__unknown,1749,0 +1724183701,HTTPS,133740,64290 +1724183701,SSL client,115222,44895 +1724183701,Mail.Ru,69864,39364 +1724183701,Dropbox Download,45358,5531 +1724183701,__unknown,8614,85115 +1724183701,Google APIs,5313,19228 +1724183701,HTTPS,121103,4902613 +1724183701,SSL client,5313,19228 +1724183701,__unknown,6288,12403 +1724183701,Bing,8910,6086 +1724183701,Google,8438,5519 +1724183701,HTTP,2080,6648 +1724183701,Microsoft Update,1442,2168 +1724183701,VKontakte,3988,7313 +1724183701,Steam,638,4480 +1724183701,HTTPS,226464,1146574 +1724183701,Avast,3486,38553 +1724183701,SSL client,146613,255184 +1724183701,Microsoft,32729,53022 +1724183701,Mail.Ru,6209,5840 +1724183701,Yandex,10757,24272 +1724183701,Microsoft CryptoAPI,1442,2168 +1724183701,uTorrent,10944,19602 +1724183701,Google Play,53095,66883 +1724183701,Office 365,3516,11860 +1724183701,GISMETEO,2194,9406 +1724183701,Grammarly,2347,6828 +1724183701,__unknown,196443,153018 +1724183701,Bing,3852,6552 +1724183701,Dropbox,105074,4818 +1724183701,Google APIs,4965,14701 +1724183701,Google,448756,446393 +1724183701,HTTP,5738,8046 +1724183701,iTunes,1814,5379 +1724183701,Skype,1791,86332 +1724183701,SSL,1919,8187 +1724183701,YouTube,27390,496252 +1724183701,VKontakte,11214,20817 +1724183701,Odnoklassniki,9200,16895 +1724183701,HTTPS,1209567,26420908 +1724183701,Apple sites,4411,20432 +1724183701,iCloud,5301,8483 +1724183701,Mozilla,2142,4699 +1724183701,Avast,1644,6139 +1724183701,SSL client,1034283,1567269 +1724183701,Microsoft,290209,235033 +1724183701,Mail.Ru,75033,68867 +1724183701,Yandex,17621,37614 +1724183701,Apple Maps,3891,19130 +1724183701,Google Play,9955,19497 +1724183701,Office 365,1429,5956 +1724183701,Microsoft Windows Live Services Authentication,14113,27243 +1724183701,Google Hangouts,1919,8187 +1724183701,DNS over HTTPS,4394,19957 +1724183701,Adobe Update,2188,35026 +1724183701,HTTPS,17939,21919 +1724183701,SSL client,17939,21919 +1724183701,DNS over HTTPS,17939,21919 +1724183701,HTTPS,15440,21685 +1724183701,SSL client,15440,21685 +1724183701,DNS over HTTPS,15440,21685 +1724183701,HTTPS,12996,18276 +1724183701,SSL client,12996,18276 +1724183701,DNS over HTTPS,12996,18276 +1724183701,HTTPS,53264,70000 +1724183701,SSL client,53264,70000 +1724183701,Telegram,53264,70000 +1724183701,HTTPS,34776,14314 +1724183701,__unknown,3311,31568 +1724183701,HTTPS,25079,19534 +1724183701,DNS over HTTPS,0,1390 +1724183701,__unknown,35578,18127 +1724183701,ICMP,5244,3540 +1724183701,__unknown,477268,632364 +1724183701,BitTorrent,310,496 +1724183701,DHCPv6,163,0 +1724183701,Google APIs,7349,23376 +1724183701,Google,19957,40003 +1724183701,Chrome,1395,929 +1724183701,DNS,15528,0 +1724183701,Gmail,35148,25629 +1724183701,HTTP,2621,4544 +1724183701,Microsoft Update,646,500 +1724183701,NetBIOS-dgm,243,0 +1724183701,NTP,360,360 +1724183701,STUN,1860,3300 +1724183701,Odnoklassniki,3007,8223 +1724183701,HTTPS,262854,257527 +1724183701,SSL client,185371,123576 +1724183701,Microsoft CryptoAPI,1226,3615 +1724183701,Google Play,117623,18457 +1724183701,ICMP,70671,0 +1724183701,ICMP for IPv6,70,0 +1724183701,Telegram,1215,512 +1724183701,Grammarly,2287,7888 +1724183701,DNS over HTTPS,9142,22630 +1724183701,CoAP,784,576 +1724183701,__unknown,349616,3426840 +1724183701,BitTorrent,153,537 +1724183701,DHCPv6,978,0 +1724183701,Eset,1032,4240 +1724183701,Google APIs,9667,34683 +1724183701,Google,25553,65547 +1724183701,BitTorrent tracker,153,537 +1724183701,DNS,54528,49728 +1724183701,Gmail,1633,1738 +1724183701,HTTP,59760,172709 +1724183701,Launchpad,3200,2480 +1724183701,Microsoft Update,981,817 +1724183701,NTP,14190,4440 +1724183701,SSL,1032,4240 +1724183701,Steam,3928,85526 +1724183701,Advanced Packaging Tool,32290,29619 +1724183701,HTTPS,116569,217370 +1724183701,Avast,937,4463 +1724183701,SSL client,44369,124663 +1724183701,Ubuntu Update Manager,23711,22297 +1724183701,Yandex,2695,10502 +1724183701,Ubuntu,6295,5760 +1724183701,Microsoft CryptoAPI,2795,2345 +1724183701,ICMP,1054,0 +1724183701,Telegram,2459,930 +1724183701,Edge Chromium,4276,11558 +1724183701,DNS over HTTPS,37475,127373 +1724184000,__unknown,51906,75655 +1724184000,HTTPS,45245,70115 +1724184000,SSL client,45245,70115 +1724184000,Telegram,45245,70115 +1724184000,HTTPS,11908,9336 +1724184000,HTTPS,58030,71616 +1724184000,SSL client,54409,67616 +1724184000,Telegram,54409,67616 +1724184000,HTTPS,9823,12014 +1724184000,__unknown,7809,97304 +1724184000,HTTPS,20253,21662 +1724184000,Avast,977,13421 +1724184000,SSL client,5970,14888 +1724184000,Google Play,4993,1467 +1724184000,__unknown,18559,28232 +1724184000,Dropbox,1647,1519 +1724184000,Google,8546,9489 +1724184000,Gmail,5957,3902 +1724184000,HTTPS,300523,608973 +1724184000,Mozilla,2208,4762 +1724184000,Avast,2364,26384 +1724184000,SSL client,37565,94750 +1724184000,Microsoft,12641,33516 +1724184000,GISMETEO,2134,9346 +1724184000,Apple News,2068,5832 +1724184000,__unknown,115244,14631 +1724184000,Dropbox,1787,5579 +1724184000,Google,20869,30772 +1724184000,Dell,1111,4306 +1724184000,Gmail,2202,2272 +1724184000,HTTP,1809,1217 +1724184000,Microsoft Update,29332,6890 +1724184000,SSL,2873,9190 +1724184000,VKontakte,3648,11531 +1724184000,Odnoklassniki,1840,3391 +1724184000,Advanced Packaging Tool,587,530 +1724184000,IMAPS,2202,2272 +1724184000,HTTPS,1181291,8733108 +1724184000,WhatsApp,6319,11567 +1724184000,Mozilla,1904,5634 +1724184000,Avast,2304,26266 +1724184000,SSL client,308118,447536 +1724184000,Amazon Web Services,3319,21490 +1724184000,Microsoft,23134,44501 +1724184000,Mail.Ru,168980,122667 +1724184000,Yandex,32584,76511 +1724184000,Ubuntu,587,530 +1724184000,Microsoft CryptoAPI,646,501 +1724184000,Apple Maps,2780,5599 +1724184000,Rambler,6736,7096 +1724184000,Office 365,5743,27024 +1724184000,Telegram,576,186 +1724184000,Microsoft Teams,2096,45647 +1724184000,Discord,1175,6460 +1724184000,__unknown,187,228 +1724184000,ICMP,984,0 +1724184000,ICMP,1634,0 +1724184000,__unknown,5742,4974 +1724184000,Google,18476,26598 +1724184000,HTTPS,57323,104625 +1724184000,SSL client,18476,26598 +1724184000,__unknown,633924,2463829 +1724184000,BitTorrent,310,496 +1724184000,DHCPv6,163,0 +1724184000,Google APIs,57775,58273 +1724184000,Google,102798,95001 +1724184000,DNS,19838,0 +1724184000,Gmail,6879,4603 +1724184000,HTTP,2112,1866 +1724184000,Microsoft Update,982,850 +1724184000,NTP,810,810 +1724184000,STUN,984,888 +1724184000,VKontakte,7927,5696 +1724184000,Odnoklassniki,2515,2344 +1724184000,HTTPS,276939,277615 +1724184000,SSL client,224279,184337 +1724184000,Atlassian,44197,13411 +1724184000,Microsoft CryptoAPI,2112,1866 +1724184000,ICMP,15636,1020 +1724184000,ICMP for IPv6,70,0 +1724184000,DNS over HTTPS,21271,61889 +1724184000,__unknown,518268,2875192 +1724184000,BITS,3729,22398 +1724184000,Google APIs,4229,13120 +1724184000,Google,18120,44017 +1724184000,QQ,414,1584 +1724184000,Chrome,565,484 +1724184000,DNS,61703,54810 +1724184000,Facebook,637,3593 +1724184000,HTTP,55432,83354 +1724184000,Launchpad,3200,2480 +1724184000,Microsoft Update,1623,1333 +1724184000,NTP,12390,2640 +1724184000,SSL,797,7093 +1724184000,STUN,82,74 +1724184000,VKontakte,627,3533 +1724184000,Advanced Packaging Tool,27012,24665 +1724184000,HTTPS,218721,605543 +1724184000,Apple sites,2776,11603 +1724184000,Avast,382,391 +1724184000,SSL client,79075,261059 +1724184000,Ubuntu Update Manager,19655,18439 +1724184000,Mail.Ru,42792,145038 +1724184000,Yandex,2563,13502 +1724184000,Ubuntu,5857,5586 +1724184000,Microsoft CryptoAPI,8232,16540 +1724184000,Google Hangouts,797,7093 +1724184000,ICMP,1782,0 +1724184000,Telegram,1965,7361 +1724184000,DNS over TLS,2158,9542 +1724184000,DNS over HTTPS,75430,230445 +1724184301,__unknown,6761141,5921126 +1724184301,Telegram,1119526,2600813 +1724184301,__unknown,109028,86720 +1724184301,HTTPS,14466,10850 +1724184301,SSL,13311,20532 +1724184301,HTTPS,106931,163864 +1724184301,HTTPS,1901,8059 +1724184301,WhatsApp,1901,8059 +1724184301,HTTPS,107346,130622 +1724184301,SSL client,107346,130622 +1724184301,Telegram,107346,130622 +1724184301,HTTPS,1311038,86451 +1724184301,SSL client,1301763,77671 +1724184301,Office 365,1297566,71289 +1724184301,Sharepoint Online,4197,6382 +1724184301,Dropbox,44801,10719 +1724184301,HTTPS,44801,10719 +1724184301,SSL client,44801,10719 +1724184301,__unknown,10798,6284 +1724184301,HTTPS,72551,286091 +1724184301,SSL client,39482,142066 +1724184301,Microsoft,25588,133098 +1724184301,Google Play,10456,1469 +1724184301,ICMP,7380,0 +1724184301,Microsoft Teams,3438,7499 +1724184301,HTTPS,113424,92663 +1724184301,SSL client,81803,60283 +1724184301,Google Play,81803,60283 +1724184301,__unknown,410637,315320 +1724184301,Dropbox,7465,1505 +1724184301,Google APIs,2977,9395 +1724184301,HTTPS,110459,379526 +1724184301,Avast,1182,12925 +1724184301,SSL client,66038,321904 +1724184301,Microsoft,1983,3664 +1724184301,Yandex,33668,237250 +1724184301,Rambler,15769,8393 +1724184301,Microsoft Teams,2994,48772 +1724184301,__unknown,267481,299523 +1724184301,Bing,2043,9269 +1724184301,Google APIs,4941,29283 +1724184301,Google,41882,96590 +1724184301,MSN,2227,8103 +1724184301,Dell,1051,4307 +1724184301,HTTP,2269,6530 +1724184301,_err_742,1700,5964 +1724184301,Skype,5191,88040 +1724184301,VKontakte,21088,36956 +1724184301,Odnoklassniki,3180,7941 +1724184301,Advanced Packaging Tool,569,566 +1724184301,HTTPS,432773,967834 +1724184301,WhatsApp,3104,5682 +1724184301,Apple sites,4160,25156 +1724184301,iCloud,39135,31088 +1724184301,Mozilla,2357,4739 +1724184301,Avast,4368,30718 +1724184301,SSL client,280032,722254 +1724184301,Amazon Web Services,3199,21430 +1724184301,Microsoft,46903,95930 +1724184301,Mail.Ru,55645,75080 +1724184301,Yandex,24545,48922 +1724184301,Ubuntu,569,566 +1724184301,Nvidia,2231,4549 +1724184301,Apple Maps,3951,14989 +1724184301,Office 365,8156,92584 +1724184301,Microsoft Windows Live Services Authentication,7730,11569 +1724184301,Telegram,249,60 +1724184301,DNS over HTTPS,1990,9170 +1724184301,HTTPS,22718,28461 +1724184301,__unknown,217,227 +1724184301,Google,171603,70736 +1724184301,HTTPS,187214,93754 +1724184301,SSL client,171603,70736 +1724184301,HTTPS,31238,28426 +1724184301,__unknown,12025,14603 +1724184301,__unknown,6277,99240 +1724184301,Google,45902,33323 +1724184301,HTTPS,84953,94815 +1724184301,SSL client,49035,48184 +1724184301,Weather.com,3133,14861 +1724184301,ICMP,23456,0 +1724184301,CoAP,1372,1008 +1724184301,__unknown,556095,1245973 +1724184301,BitTorrent,310,496 +1724184301,Google APIs,39573,15106 +1724184301,Google Drive,16371,21578 +1724184301,Google,111460,284343 +1724184301,QQ,609,943 +1724184301,Android browser,816,666 +1724184301,DNS,24842,0 +1724184301,Facebook,1850,8450 +1724184301,Gmail,19565,15116 +1724184301,HTTP,4086,6194 +1724184301,NetBIOS-dgm,250,0 +1724184301,NTP,13110,3360 +1724184301,STUN,2844,4188 +1724184301,Odnoklassniki,3007,8205 +1724184301,HTTPS,393271,1854975 +1724184301,Apple sites,32285,31930 +1724184301,SSL client,233366,522397 +1724184301,Yandex,4744,124770 +1724184301,Microsoft CryptoAPI,2661,4585 +1724184301,ICMP,33360,720 +1724184301,Grammarly,2203,7888 +1724184301,DNS over HTTPS,54808,134095 +1724184301,__unknown,281793,402944 +1724184301,BitTorrent,153,198 +1724184301,DHCPv6,1141,0 +1724184301,Google APIs,2768,8787 +1724184301,Google,38357,130572 +1724184301,Android browser,1500,1332 +1724184301,BitTorrent tracker,153,198 +1724184301,Chrome,631,550 +1724184301,DNS,49962,45661 +1724184301,HTTP,172520,3932349 +1724184301,Internet Explorer,506,983 +1724184301,Launchpad,3200,2480 +1724184301,Microsoft Update,1284,1019 +1724184301,NetBIOS-dgm,243,0 +1724184301,NTP,990,990 +1724184301,Advanced Packaging Tool,26389,24177 +1724184301,HTTPS,134991,364991 +1724184301,Apple sites,1706,5034 +1724184301,Avast,506,983 +1724184301,SSL client,63491,213075 +1724184301,Ubuntu Update Manager,19571,18379 +1724184301,Microsoft,123268,3877898 +1724184301,Yandex,4371,17344 +1724184301,Ubuntu,5743,5619 +1724184301,Microsoft CryptoAPI,5138,7112 +1724184301,Microsoft NCSI,968,974 +1724184301,Microsoft WNS,693,8126 +1724184301,Google Play,4501,9348 +1724184301,CloudFlare,637,3456 +1724184301,Microsoft Windows Live Services Authentication,6476,17328 +1724184301,ICMP,1326,0 +1724184301,Sway,629,6697 +1724184301,Telegram,2303,862 +1724184301,DNS over TLS,2158,9539 +1724184301,DNS over HTTPS,31519,107834 +1724184600,__unknown,145005,153002 +1724184600,Google,1880899,870959 +1724184600,HTTPS,1880899,870959 +1724184600,SSL client,1880899,870959 +1724184600,HTTPS,247309,139117 +1724184600,SSL client,45753,66064 +1724184600,Telegram,45753,66064 +1724184600,HTTPS,4178,3896 +1724184600,HTTPS,40229,12143 +1724184600,SSL client,40229,12143 +1724184600,Google Play,40229,12143 +1724184600,HTTP,446,2861 +1724184600,HTTPS,17933,17867 +1724184600,VeriSign,446,2861 +1724184600,Microsoft CryptoAPI,446,2861 +1724184600,__unknown,5165,10630 +1724184600,Dropbox,3181,1378 +1724184600,Google APIs,11020,267964 +1724184600,Gmail,6861,34147 +1724184600,HTTPS,208558,535186 +1724184600,Avast,2364,24928 +1724184600,SSL client,161034,447485 +1724184600,Microsoft,13281,38146 +1724184600,Mail.Ru,3995,1875 +1724184600,Yandex,8432,6905 +1724184600,Google Play,109156,61868 +1724184600,OneDrive,2744,10274 +1724184600,__unknown,27725,7997 +1724184600,Google,44748,53771 +1724184600,MSN,3394,9504 +1724184600,HTTP,360370,10804999 +1724184600,Microsoft Update,473,618 +1724184600,_err_742,358623,10803155 +1724184600,TeamViewer,1448,8898 +1724184600,TwitchTV,6348,7089 +1724184600,Odnoklassniki,5520,10173 +1724184600,Steam,10966,19030 +1724184600,Advanced Packaging Tool,1274,1226 +1724184600,Windows Update,473,618 +1724184600,HTTPS,258524,503740 +1724184600,Apple sites,3832,13122 +1724184600,iCloud,3987,8914 +1724184600,SSL client,160445,279052 +1724184600,Ubuntu Update Manager,1274,1226 +1724184600,Microsoft,16527,32795 +1724184600,Mail.Ru,32919,29781 +1724184600,Yandex,24449,63060 +1724184600,Office 365,3960,16087 +1724184600,Telegram,120,120 +1724184600,Grammarly,2347,6828 +1724184600,DNS over HTTPS,5915,21466 +1724184600,__unknown,1844,720 +1724184600,HTTPS,53789,63958 +1724184600,SSL client,53789,63958 +1724184600,Telegram,53789,63958 +1724184600,HTTPS,47140,25682 +1724184600,SSL client,47140,25682 +1724184600,Google Play,47140,25682 +1724184600,ICMP,984,0 +1724184600,__unknown,3246,3053 +1724184600,HTTPS,15534,16033 +1724184600,__unknown,6562,6807 +1724184600,Google,4908,10309 +1724184600,YouTube,5104,41748 +1724184600,HTTPS,20039,60373 +1724184600,SSL client,10012,52057 +1724184600,ICMP,6232,0 +1724184600,DNS over HTTPS,0,1390 +1724184600,__unknown,437960,770289 +1724184600,BitTorrent,310,496 +1724184600,Google APIs,43962,14994 +1724184600,Google,42467,91108 +1724184600,DNS,18417,412 +1724184600,NTP,12750,3000 +1724184600,STUN,984,814 +1724184600,HTTPS,231125,227563 +1724184600,SSL client,138345,145569 +1724184600,Microsoft,922,7532 +1724184600,Yandex,1253,907 +1724184600,Atlassian,45385,18269 +1724184600,ICMP,2948,0 +1724184600,Grammarly,2228,7810 +1724184600,DNS over HTTPS,24896,68853 +1724184600,__unknown,170784,370842 +1724184600,Apple Update,1739,5862 +1724184600,DHCPv6,978,0 +1724184600,Google APIs,2471,6686 +1724184600,Google Drive,7192,102275 +1724184600,Google,5774,14437 +1724184600,Android browser,750,666 +1724184600,DNS,60971,52935 +1724184600,Gmail,8576,15683 +1724184600,HTTP,70053,137889 +1724184600,Internet Explorer,6287,2112 +1724184600,Launchpad,3200,2480 +1724184600,Microsoft Update,1287,1013 +1724184600,NTP,12390,2640 +1724184600,YouTube,2988,7043 +1724184600,Steam,5943,68238 +1724184600,Advanced Packaging Tool,35693,32827 +1724184600,HTTPS,217705,370794 +1724184600,SSL client,54478,211267 +1724184600,Ubuntu Update Manager,27701,26035 +1724184600,Microsoft,2146,6353 +1724184600,Yandex,14597,25516 +1724184600,Ubuntu,6917,6601 +1724184600,Microsoft CryptoAPI,5183,6905 +1724184600,Google Play,9563,11601 +1724184600,ICMP,2432,0 +1724184600,Edge Chromium,1054,2729 +1724184600,DNS over TLS,2488,9540 +1724184600,DNS over HTTPS,62477,233717 +1724184901,HTTPS,644708,196107 +1724184901,__unknown,1484,2060 +1724184901,__unknown,1608,0 +1724184901,HTTPS,3069,1623 +1724184901,__unknown,1608,0 +1724184901,HTTPS,48283,6013 +1724184901,SSL client,48283,6013 +1724184901,Dropbox Download,48283,6013 +1724184901,HTTPS,53877,62102 +1724184901,SSL client,53877,62102 +1724184901,Telegram,53877,62102 +1724184901,HTTPS,68306,59782 +1724184901,SSL client,28093,22548 +1724184901,Google Play,28093,22548 +1724184901,Google,16350,23004 +1724184901,HTTP,1511,1527 +1724184901,Microsoft Update,919,767 +1724184901,HTTPS,222844,3712224 +1724184901,Mozilla,2302,4739 +1724184901,Avast,2244,18926 +1724184901,SSL client,69557,154318 +1724184901,Microsoft,11168,23256 +1724184901,Yandex,20649,51409 +1724184901,Microsoft CryptoAPI,1511,1527 +1724184901,Office 365,3275,15049 +1724184901,GISMETEO,2254,9465 +1724184901,Google Sign in,11315,8470 +1724184901,__unknown,13473,35497 +1724184901,Bing,2037,6126 +1724184901,Google,383228,267952 +1724184901,MSN,4226,21407 +1724184901,Gmail,20073,33626 +1724184901,HTTP,5550,207470 +1724184901,_err_742,518,1571 +1724184901,Odnoklassniki,7360,13444 +1724184901,Advanced Packaging Tool,936,1165 +1724184901,IMAPS,20073,33626 +1724184901,HTTPS,749491,1176674 +1724184901,WhatsApp,3247,7401 +1724184901,Mozilla,2177,5436 +1724184901,Avast,2244,20204 +1724184901,SSL client,570088,591248 +1724184901,Amazon Web Services,3139,21430 +1724184901,Ubuntu Update Manager,936,1165 +1724184901,Microsoft,43945,66011 +1724184901,Mail.Ru,74632,57762 +1724184901,Yandex,17109,34564 +1724184901,Microsoft Azure,2358,8752 +1724184901,Office 365,7560,34534 +1724184901,Telegram,120,120 +1724184901,DNS over HTTPS,4566,18794 +1724184901,Windows Live,2202,13058 +1724184901,HTTPS,2202,13058 +1724184901,SSL client,2202,13058 +1724184901,__unknown,927,544 +1724184901,HTTPS,3299,5399 +1724184901,__unknown,2961,11610 +1724184901,HTTPS,12108,21661 +1724184901,ICMP,4634,3600 +1724184901,__unknown,447009,723944 +1724184901,BitTorrent,310,496 +1724184901,DHCPv6,163,0 +1724184901,Google APIs,3671,13785 +1724184901,Google,113002,331111 +1724184901,Android browser,684,600 +1724184901,DNS,19100,0 +1724184901,Gmail,7100,4143 +1724184901,HTTP,2812,2351 +1724184901,Microsoft Update,1252,1012 +1724184901,NetBIOS-ns,276,0 +1724184901,NTP,13200,3450 +1724184901,STUN,2844,4188 +1724184901,Odnoklassniki,5522,10565 +1724184901,HTTPS,187207,492660 +1724184901,Apple sites,2457,8733 +1724184901,SSL client,136714,383601 +1724184901,Yandex,4962,15264 +1724184901,Microsoft CryptoAPI,2128,1751 +1724184901,ICMP,8669,0 +1724184901,DNS over HTTPS,18167,50510 +1724184901,__unknown,423258,702443 +1724184901,BITS,3909,22391 +1724184901,BitTorrent,153,537 +1724184901,Google APIs,11036,26876 +1724184901,Google,19524,25155 +1724184901,Android browser,750,666 +1724184901,BitTorrent tracker,153,537 +1724184901,Chrome,2754,22263 +1724184901,DNS,54509,48763 +1724184901,HTTP,145550,1340288 +1724184901,Launchpad,3200,2480 +1724184901,Microsoft Update,69542,1208888 +1724184901,NetBIOS-dgm,250,0 +1724184901,NTP,1170,1170 +1724184901,Advanced Packaging Tool,30910,28215 +1724184901,Windows Update,68847,1208115 +1724184901,HTTPS,205565,361714 +1724184901,Apple sites,4221,148968 +1724184901,SSL client,50951,237336 +1724184901,Ubuntu Update Manager,21013,19725 +1724184901,Yandex,5451,27556 +1724184901,MDNS,1632,0 +1724184901,Ubuntu,7122,6467 +1724184901,Microsoft CryptoAPI,4265,3572 +1724184901,Microsoft NCSI,454,487 +1724184901,uTorrent,1340,868 +1724184901,Google Play,4671,9318 +1724184901,ICMP,2093,0 +1724184901,ICMP for IPv6,630,0 +1724184901,IGMP,420,0 +1724184901,Telegram,5850,2640 +1724184901,Google Sign in,6213,4222 +1724184901,Edge Chromium,8325,24963 +1724184901,DNS over HTTPS,46189,150086 +1724185200,__unknown,81066,74078 +1724185200,TwitchTV,1720603,78730 +1724185200,HTTPS,1720603,78730 +1724185200,SSL client,1720603,78730 +1724185200,HTTPS,151097,479816 +1724185200,SSL client,102582,458495 +1724185200,Mail.Ru,102582,458495 +1724185200,Dropbox,68004,14742 +1724185200,HTTPS,68004,14742 +1724185200,SSL client,68004,14742 +1724185200,HTTPS,98476,136179 +1724185200,ICMP,26100,26100 +1724185200,HTTPS,14325,16648 +1724185200,__unknown,9946,6158 +1724185200,VKontakte,30328,9650 +1724185200,HTTPS,52320,38964 +1724185200,SSL client,34449,15820 +1724185200,Google Play,4121,6170 +1724185200,Google APIs,4120,14667 +1724185200,HTTP,3880,200064 +1724185200,Advanced Packaging Tool,3880,200064 +1724185200,HTTPS,85254,111301 +1724185200,SSL client,55643,77045 +1724185200,Yandex,5867,27224 +1724185200,Google Play,45656,35154 +1724185200,__unknown,32096,24287 +1724185200,Google,8440,5661 +1724185200,Steam,65813,82443 +1724185200,HTTPS,148036,232348 +1724185200,Mozilla,13850,26385 +1724185200,Avast,2424,27430 +1724185200,SSL client,115211,182723 +1724185200,Microsoft,4307,7390 +1724185200,Mail.Ru,10586,7079 +1724185200,Yandex,2493,1864 +1724185200,Microsoft Azure,2478,9042 +1724185200,Apple Maps,2846,7554 +1724185200,Office 365,2867,8684 +1724185200,Apple News,1953,6745 +1724185200,__unknown,31973,18395 +1724185200,Bing,3522,6423 +1724185200,Dropbox,2926,1361 +1724185200,Gmail,5603,6497 +1724185200,HTTP,226791,5234064 +1724185200,Launchpad,1214,926 +1724185200,_err_742,224990,5232608 +1724185200,Skype,3374,7941 +1724185200,Odnoklassniki,1840,3391 +1724185200,Advanced Packaging Tool,1801,1456 +1724185200,IMAPS,5603,6497 +1724185200,HTTPS,420916,1280487 +1724185200,WhatsApp,3162,5622 +1724185200,Apple sites,1788,7993 +1724185200,iCloud,3244,8555 +1724185200,Mozilla,8805,14590 +1724185200,Avast,1182,13003 +1724185200,SSL client,217892,406207 +1724185200,Amazon Web Services,3379,21430 +1724185200,Microsoft,39394,85685 +1724185200,Mail.Ru,110453,99769 +1724185200,Yandex,21364,86131 +1724185200,Ubuntu,587,530 +1724185200,Office 365,9114,35372 +1724185200,Sharepoint Online,1904,8066 +1724185200,Telegram,745,180 +1724185200,HTTPS,36032,14254 +1724185200,HTTPS,27588,14768 +1724185200,__unknown,3058,75359 +1724185200,Google,23687,21552 +1724185200,HTTPS,23687,21552 +1724185200,SSL client,23687,21552 +1724185200,ICMP,1978,0 +1724185200,__unknown,554,1314 +1724185200,Google,17915,40979 +1724185200,Gmail,12185,10832 +1724185200,HTTPS,44449,78218 +1724185200,SSL client,30100,51811 +1724185200,__unknown,878176,833554 +1724185200,BitTorrent,310,496 +1724185200,DHCPv6,978,0 +1724185200,Google APIs,3701,1801 +1724185200,Google Drive,5982,9832 +1724185200,Google,41426,94190 +1724185200,DNS,21072,0 +1724185200,HTTP,1517,1247 +1724185200,Microsoft Update,641,507 +1724185200,NetBIOS-dgm,243,0 +1724185200,NTP,270,270 +1724185200,STUN,984,814 +1724185200,Odnoklassniki,3007,8147 +1724185200,HTTPS,116214,191766 +1724185200,Mozilla,5373,3451 +1724185200,SSL client,64965,134497 +1724185200,Microsoft CryptoAPI,1517,1247 +1724185200,Apple Maps,1583,4959 +1724185200,ICMP,2890,60 +1724185200,Telegram,1459,956 +1724185200,Grammarly,2167,7811 +1724185200,DNS over HTTPS,14053,41303 +1724185200,__unknown,213311,365216 +1724185200,DHCPv6,163,0 +1724185200,Google APIs,2826,8761 +1724185200,Google,145918,22405 +1724185200,Chrome,641,664 +1724185200,DNS,47439,43385 +1724185200,HTTP,64516,214398 +1724185200,Launchpad,3200,2480 +1724185200,Microsoft Update,1623,1330 +1724185200,NTP,37170,7920 +1724185200,SSL,797,7093 +1724185200,Advanced Packaging Tool,35155,160772 +1724185200,HTTPS,385410,18382398 +1724185200,iCloud,3555,8738 +1724185200,SSL client,169600,86059 +1724185200,Ubuntu Update Manager,28433,155112 +1724185200,Microsoft,573,7965 +1724185200,Yandex,3131,13212 +1724185200,Ubuntu,5779,5473 +1724185200,Microsoft CryptoAPI,7851,6737 +1724185200,Microsoft NCSI,454,487 +1724185200,Microsoft WNS,573,7965 +1724185200,Google Play,9027,19051 +1724185200,Google Hangouts,797,7093 +1724185200,ICMP,3096,0 +1724185200,Telegram,2095,669 +1724185200,Edge Chromium,6564,18945 +1724185200,DNS over TLS,2198,4931 +1724185200,DNS over HTTPS,44191,135761 +1724185500,__unknown,2052957,2096620 +1724185500,HTTPS,45245,63383 +1724185500,SSL client,45245,63383 +1724185500,Telegram,45245,63383 +1724185500,Google Analytics,5980,7259 +1724185500,HTTPS,5980,7259 +1724185500,SSL client,5980,7259 +1724185500,Skype,6869,17614 +1724185500,IMAPS,8719,570130 +1724185500,HTTPS,41143,287299 +1724185500,SSL client,21737,245469 +1724185500,Microsoft,12032,220663 +1724185500,Microsoft Teams,2836,7192 +1724185500,HTTPS,17656,7066 +1724185500,SSL client,17656,7066 +1724185500,Google Play,17656,7066 +1724185500,HTTPS,8765,12174 +1724185500,__unknown,26443,13151 +1724185500,Google APIs,2975,8557 +1724185500,Google,87754,58563 +1724185500,HTTPS,203412,3371588 +1724185500,Mozilla,11900,17330 +1724185500,Avast,2364,26668 +1724185500,SSL client,123921,147664 +1724185500,Microsoft,4177,7391 +1724185500,uTorrent,11230,19664 +1724185500,Apple Maps,3041,7003 +1724185500,Office 365,1514,1365 +1724185500,Sharepoint Online,2007,8126 +1724185500,__unknown,60445,44775 +1724185500,Bing,3453,6421 +1724185500,Dropbox,10214,223872 +1724185500,Google APIs,2617,6661 +1724185500,Google,4241830,1584262 +1724185500,MSN,3395,9501 +1724185500,HTTP,5827,114167 +1724185500,Microsoft Update,1632,2238 +1724185500,Steam,1992,4924 +1724185500,Advanced Packaging Tool,1561,1430 +1724185500,HTTPS,4704664,43196052 +1724185500,Mozilla,4865,11110 +1724185500,SSL client,4392972,2076625 +1724185500,CloudFront,1519,1072 +1724185500,Ubuntu Update Manager,1561,1430 +1724185500,Microsoft,32820,84461 +1724185500,Mail.Ru,30817,20451 +1724185500,Yandex,21277,42168 +1724185500,GitHub,1592,6130 +1724185500,Microsoft CryptoAPI,3467,10471 +1724185500,Office 365,2836,8709 +1724185500,Microsoft Windows Live Services Authentication,16211,33328 +1724185500,Telegram,120,120 +1724185500,Xiaomi,5006,23547 +1724185500,Grammarly,12528,10008 +1724185500,DNS over HTTPS,9932,38350 +1724185500,__unknown,294974,287818 +1724185500,HTTPS,65573,43111 +1724185500,HTTPS,32448,28623 +1724185500,ICMP,2666,0 +1724185500,__unknown,7094,5665 +1724185500,HTTPS,32354,45219 +1724185500,SSL client,25277,34394 +1724185500,ICMP,6480,6480 +1724185500,Telegram,25277,34394 +1724185500,__unknown,76718,380188 +1724185500,Google,5295,10883 +1724185500,HTTPS,16676,30508 +1724185500,SSL client,5295,10883 +1724185500,Apple Maps,1583,4893 +1724185500,ICMP,656,0 +1724185500,__unknown,561696,795745 +1724185500,BitTorrent,310,496 +1724185500,Google,62720,163163 +1724185500,DNS,14696,0 +1724185500,Gmail,29316,35774 +1724185500,NTP,12480,2730 +1724185500,STUN,984,888 +1724185500,Odnoklassniki,5522,10550 +1724185500,HTTPS,156045,299645 +1724185500,SSL client,116765,231165 +1724185500,Google Play,16896,13791 +1724185500,ICMP,31632,1440 +1724185500,Grammarly,2311,7887 +1724185500,DNS over HTTPS,2446,7823 +1724185500,__unknown,204002,848776 +1724185500,BitTorrent,153,198 +1724185500,DHCPv6,978,0 +1724185500,Google APIs,1885,6433 +1724185500,Google,4064,9350 +1724185500,Android browser,1434,1332 +1724185500,BitTorrent tracker,153,198 +1724185500,DNS,50175,46743 +1724185500,HTTP,65037,219804 +1724185500,Internet Explorer,762,660 +1724185500,Launchpad,3200,2480 +1724185500,Microsoft Update,642,496 +1724185500,NTP,13290,3540 +1724185500,Steam,4822,34868 +1724185500,Advanced Packaging Tool,28993,146067 +1724185500,HTTPS,115983,274820 +1724185500,SSL client,12199,27277 +1724185500,Ubuntu Update Manager,21492,139733 +1724185500,Yandex,5376,7928 +1724185500,Ubuntu,6067,5756 +1724185500,Microsoft CryptoAPI,3426,2659 +1724185500,Microsoft NCSI,931,1040 +1724185500,ICMP,7980,60 +1724185500,Edge Chromium,5270,13644 +1724185500,DNS over HTTPS,49047,164836 +1724185800,HTTPS,1979528,36066223 +1724185800,HTTPS,1082736,389010 +1724185800,SSL client,1082736,389010 +1724185800,Yandex,1082736,389010 +1724185800,HTTPS,76967,60075 +1724185800,HTTPS,98251,340518 +1724185800,SSL client,98251,340518 +1724185800,Yandex,98251,340518 +1724185800,__unknown,1492,3500 +1724185800,__unknown,12642,6580 +1724185800,HTTPS,3998,10370 +1724185800,HTTPS,94328,47545 +1724185800,SSL client,90438,42937 +1724185800,Yandex,90438,42937 +1724185800,HTTPS,108198,69913 +1724185800,SSL client,105145,68207 +1724185800,Dropbox Download,51208,6171 +1724185800,Telegram,53937,62036 +1724185800,__unknown,1749,0 +1724185800,HTTP,3434092,92199313 +1724185800,_err_742,3434092,92199313 +1724185800,HTTPS,44459,175079 +1724185800,SSL client,22388,24468 +1724185800,Google Play,22388,24468 +1724185800,Telegram,9652,137741 +1724185800,__unknown,30096,11768 +1724185800,Google APIs,3032,8915 +1724185800,Google,8376,5469 +1724185800,HTTPS,114867,238513 +1724185800,Mozilla,16334,46750 +1724185800,Avast,2364,24618 +1724185800,SSL client,56320,168128 +1724185800,Microsoft,18114,46936 +1724185800,Yandex,2536,7667 +1724185800,Office 365,3430,18445 +1724185800,GISMETEO,2134,9328 +1724185800,DNS over HTTPS,1296,6168 +1724185800,__unknown,91525,18915 +1724185800,Apple Update,1983,5148 +1724185800,Bing,2272,6069 +1724185800,Google APIs,2264,8017 +1724185800,Google,902694,452548 +1724185800,Dell,1051,4306 +1724185800,HTTP,949,2565 +1724185800,Skype,6764,100546 +1724185800,SSL,1496,1392 +1724185800,HTTPS,1418009,41745294 +1724185800,WhatsApp,3301,7341 +1724185800,Apple sites,3746,15245 +1724185800,iCloud,13600,14576 +1724185800,Mozilla,5422,14229 +1724185800,Avast,2244,21364 +1724185800,SSL client,1116309,942771 +1724185800,Amazon Web Services,3139,21490 +1724185800,Microsoft,38979,60899 +1724185800,Mail.Ru,52447,52369 +1724185800,Yandex,35696,77760 +1724185800,Microsoft Azure,2353,8751 +1724185800,Office 365,8057,24470 +1724185800,Microsoft Windows Live Services Authentication,33051,56157 +1724185800,Google Hangouts,1496,1392 +1724185800,Edge Chromium,587,1949 +1724185800,DNS over HTTPS,2847,9153 +1724185800,ICMP,7134,0 +1724185800,ICMP,5676,0 +1724185800,HTTPS,36725,51948 +1724185800,SSL client,36725,51948 +1724185800,Telegram,36725,51948 +1724185800,__unknown,187,228 +1724185800,HTTPS,27443,40065 +1724185800,SSL client,27443,40065 +1724185800,Telegram,27443,40065 +1724185800,HTTPS,10607,15514 +1724185800,SSL client,10607,15514 +1724185800,DNS over HTTPS,10607,15514 +1724185800,HTTPS,33753,46433 +1724185800,SSL client,33753,46433 +1724185800,Telegram,33753,46433 +1724185800,__unknown,11335,72817 +1724185800,HTTPS,26822,37800 +1724185800,SSL client,16017,25271 +1724185800,ICMP,738,0 +1724185800,Telegram,16017,25271 +1724185800,DNS over HTTPS,0,1736 +1724185800,__unknown,1748,3281 +1724185800,Google,35913,58388 +1724185800,HTTPS,132499,136838 +1724185800,SSL client,94096,113327 +1724185800,Google Play,28509,15549 +1724185800,ICMP,11206,0 +1724185800,Telegram,31025,40310 +1724185800,__unknown,601003,9015905 +1724185800,BitTorrent,310,496 +1724185800,DHCPv6,163,0 +1724185800,Google APIs,9179,25828 +1724185800,Google,66193,222399 +1724185800,DNS,16862,0 +1724185800,HTTP,1513,2956 +1724185800,Microsoft Update,947,815 +1724185800,NetBIOS-dgm,250,0 +1724185800,NTP,360,360 +1724185800,STUN,2844,4188 +1724185800,Odnoklassniki,2947,8205 +1724185800,HTTPS,159429,399184 +1724185800,SSL client,99513,298280 +1724185800,VeriSign,566,2141 +1724185800,Yandex,1191,6151 +1724185800,Microsoft CryptoAPI,1513,2956 +1724185800,ICMP,4874,0 +1724185800,Telegram,17755,30627 +1724185800,DNS over HTTPS,15688,46130 +1724185800,__unknown,202289,346632 +1724185800,DHCPv6,978,0 +1724185800,Google APIs,1496,6317 +1724185800,Google Drive,7517,10204 +1724185800,Google,15316,34356 +1724185800,Android browser,684,600 +1724185800,Chrome,1239,1337 +1724185800,DNS,45758,43291 +1724185800,Gmail,8634,15409 +1724185800,HTTP,53699,67417 +1724185800,Launchpad,3200,2480 +1724185800,Microsoft Update,1284,1011 +1724185800,NetBIOS-dgm,243,0 +1724185800,NTP,12660,2910 +1724185800,SSL,855,7032 +1724185800,Advanced Packaging Tool,28221,25607 +1724185800,HTTPS,191760,365912 +1724185800,SSL client,58511,120960 +1724185800,Ubuntu Update Manager,18372,17153 +1724185800,Yandex,4164,7573 +1724185800,Ubuntu,7074,6431 +1724185800,Microsoft CryptoAPI,3001,2529 +1724185800,Google Play,15671,28501 +1724185800,Google Hangouts,855,7032 +1724185800,ICMP,978,0 +1724185800,Telegram,7796,23310 +1724185800,Edge Chromium,5450,15571 +1724185800,DNS over HTTPS,41397,141782 +1724186100,__unknown,87006,51180 +1724186100,HTTPS,19535,20403 +1724186100,HTTPS,83351,32954 +1724186100,HTTPS,111331,134534 +1724186100,SSL client,107412,127479 +1724186100,Telegram,107412,127479 +1724186100,HTTPS,4338,3983 +1724186100,__unknown,800,590 +1724186100,HTTPS,78797,2569477 +1724186100,SSL client,21482,4573 +1724186100,Google Play,21482,4573 +1724186100,__unknown,834,0 +1724186100,HTTPS,36825,34598 +1724186100,SSL client,21445,18395 +1724186100,Google Play,21445,18395 +1724186100,__unknown,1316524,1355338 +1724186100,Google APIs,2712,8891 +1724186100,HTTPS,277901,17861059 +1724186100,Avast,2364,25152 +1724186100,SSL client,20776,65133 +1724186100,Microsoft,11007,18983 +1724186100,Yandex,2493,2427 +1724186100,Telegram,3582,15424 +1724186100,GISMETEO,2200,9680 +1724186100,__unknown,286258,95253 +1724186100,Bing,3140,6456 +1724186100,Dropbox,3142,1379 +1724186100,Google,1193,4797 +1724186100,MSN,3275,9504 +1724186100,Dell,1051,4368 +1724186100,HTTP,2430,2207 +1724186100,Advanced Packaging Tool,1861,1756 +1724186100,HTTPS,439795,5409346 +1724186100,WhatsApp,3165,5622 +1724186100,Avast,2364,25436 +1724186100,SSL client,169176,252644 +1724186100,Ubuntu Update Manager,1274,1226 +1724186100,Microsoft,51552,76554 +1724186100,Mail.Ru,73387,60219 +1724186100,Yandex,19559,42698 +1724186100,Ubuntu,1156,981 +1724186100,Apple Maps,2846,6728 +1724186100,Office 365,2846,9696 +1724186100,Microsoft Windows Live Services Authentication,7667,11537 +1724186100,__unknown,187,660 +1724186100,__unknown,171,660 +1724186100,HTTPS,32830,43422 +1724186100,SSL client,9964,14720 +1724186100,DNS over HTTPS,9964,14720 +1724186100,Google,10720,17830 +1724186100,HTTPS,10720,17830 +1724186100,SSL client,10720,17830 +1724186100,DNS over HTTPS,182521,418285 +1724186100,__unknown,7140,74 +1724186100,__unknown,0,1390 +1724186100,Google,8911,13581 +1724186100,HTTPS,151948,72446 +1724186100,SSL client,151948,72446 +1724186100,Google Play,143037,58865 +1724186100,__unknown,1879,69356 +1724186100,Google,73408,62321 +1724186100,HTTPS,91563,77809 +1724186100,SSL client,89048,71901 +1724186100,Google Play,15640,9580 +1724186100,ICMP,10022,1740 +1724186100,__unknown,359045,377005 +1724186100,BitTorrent,310,496 +1724186100,DHCPv6,163,0 +1724186100,Google APIs,8198,25375 +1724186100,Google,45492,111652 +1724186100,Android browser,684,600 +1724186100,DNS,16580,0 +1724186100,Gmail,17570,48705 +1724186100,HTTP,1856,1606 +1724186100,NTP,720,720 +1724186100,STUN,984,888 +1724186100,HTTPS,140755,314326 +1724186100,Mozilla,1942,4857 +1724186100,SSL client,94147,224635 +1724186100,Yandex,1251,6151 +1724186100,Microsoft CryptoAPI,1172,1006 +1724186100,Google Play,11218,18394 +1724186100,ICMP,5227,0 +1724186100,ICMP for IPv6,70,0 +1724186100,Telegram,975,552 +1724186100,Google Sign in,6228,4552 +1724186100,DNS over HTTPS,8482,23356 +1724186100,__unknown,197301,316485 +1724186100,Bing,6481,15416 +1724186100,BITS,3116,77764 +1724186100,BitTorrent,153,0 +1724186100,Google APIs,1115,5564 +1724186100,Google,43551,92815 +1724186100,Android browser,750,666 +1724186100,BitTorrent tracker,153,0 +1724186100,Chrome,830,1488 +1724186100,DNS,51997,51890 +1724186100,HTTP,88759,1079790 +1724186100,Launchpad,3200,2480 +1724186100,Microsoft Update,641,505 +1724186100,NTP,900,900 +1724186100,Advanced Packaging Tool,31985,29496 +1724186100,HTTPS,174953,605833 +1724186100,Apple sites,4238,14955 +1724186100,iCloud,13328,241653 +1724186100,SSL client,86266,455706 +1724186100,Ubuntu Update Manager,23358,22138 +1724186100,Microsoft,34684,1014294 +1724186100,Google Adsense,3308,2997 +1724186100,Yandex,7626,50386 +1724186100,Ubuntu,8008,16130 +1724186100,Microsoft CryptoAPI,1829,1518 +1724186100,Microsoft WNS,693,8125 +1724186100,ICMP,1651,0 +1724186100,Telegram,1939,629 +1724186100,Edge Chromium,4336,12207 +1724186100,DNS over TLS,8726,39319 +1724186100,DNS over HTTPS,47338,161180 +1724186400,__unknown,83846,66498 +1724186400,Google APIs,63430,73038 +1724186400,HTTPS,887805,287415 +1724186400,SSL client,887805,287415 +1724186400,Google Play,824375,214377 +1724186400,DNS over HTTPS,138195,320278 +1724186400,Windows Live,54070,12032 +1724186400,HTTPS,54070,12032 +1724186400,SSL client,54070,12032 +1724186400,HTTPS,95299,2665918 +1724186400,__unknown,3467,7660 +1724186400,HTTPS,27185,148999 +1724186400,SSL client,8369,124966 +1724186400,Microsoft,8369,124966 +1724186400,HTTPS,2612,3675 +1724186400,__unknown,101303,52399 +1724186400,Google Analytics,20833,18349 +1724186400,HTTP,1280,1121 +1724186400,YouTube,1817,12001 +1724186400,HTTPS,118018,252120 +1724186400,iCloud,7936,6381 +1724186400,Mozilla,2254,1698 +1724186400,Avast,2364,26470 +1724186400,SSL client,77487,187262 +1724186400,Microsoft,11174,23509 +1724186400,Mail.Ru,8542,11904 +1724186400,Yandex,4709,11730 +1724186400,Microsoft CryptoAPI,1280,1121 +1724186400,Google Play,13740,68867 +1724186400,Sharepoint Online,4118,6353 +1724186400,Telegram,1737,21580 +1724186400,__unknown,289120,208061 +1724186400,Dropbox,4208,5967 +1724186400,HTTP,1308,716 +1724186400,Skype,5677,85903 +1724186400,YouTube,1987,6239 +1724186400,Odnoklassniki,5520,10053 +1724186400,Steam,11159,19034 +1724186400,Advanced Packaging Tool,587,530 +1724186400,HTTPS,382519,922782 +1724186400,Apple sites,4207,21230 +1724186400,Avast,8359,27257 +1724186400,SSL client,256578,534028 +1724186400,Amazon Web Services,3265,21602 +1724186400,CloudFront,3772,1093 +1724186400,Microsoft,22614,51512 +1724186400,Mail.Ru,119360,108498 +1724186400,Yandex,30046,63980 +1724186400,Ubuntu,587,530 +1724186400,Microsoft Azure,2479,9042 +1724186400,Nvidia,2708,4922 +1724186400,Google Play,9776,19991 +1724186400,Office 365,8883,33271 +1724186400,Telegram,120,1062 +1724186400,Google Inbox,5464,23602 +1724186400,Grammarly,7094,20832 +1724186400,DNS over HTTPS,9836,36985 +1724186400,HTTPS,12340,17351 +1724186400,SSL client,12340,17351 +1724186400,DNS over HTTPS,12340,17351 +1724186400,Google Drive,205344,81649 +1724186400,HTTPS,205344,81649 +1724186400,SSL client,205344,81649 +1724186400,ICMP,3362,0 +1724186400,__unknown,5946,3428 +1724186400,__unknown,5180,11772 +1724186400,HTTPS,3581,3815 +1724186400,SSL client,3581,3815 +1724186400,Google Adsense,3581,3815 +1724186400,ICMP,1230,0 +1724186400,__unknown,945517,71096954 +1724186400,BitTorrent,310,496 +1724186400,Google APIs,56019,41595 +1724186400,Google,14245,28113 +1724186400,Android browser,678,996 +1724186400,DNS,23656,0 +1724186400,HTTP,2665,2699 +1724186400,Microsoft Update,1987,1703 +1724186400,NetBIOS-dgm,250,0 +1724186400,NTP,12930,3180 +1724186400,STUN,984,888 +1724186400,Odnoklassniki,3068,8266 +1724186400,HTTPS,126212,193051 +1724186400,SSL client,81987,101024 +1724186400,Microsoft,922,7532 +1724186400,Microsoft CryptoAPI,1987,1703 +1724186400,Google Play,3258,2565 +1724186400,ICMP,5171,120 +1724186400,Grammarly,2287,7946 +1724186400,DNS over HTTPS,13220,39347 +1724186400,__unknown,240834,295645 +1724186400,DHCPv6,1141,0 +1724186400,Google,11820,28027 +1724186400,Android browser,684,600 +1724186400,DNS,69750,63063 +1724186400,HTTP,52264,73566 +1724186400,Internet Explorer,762,660 +1724186400,Launchpad,3200,2480 +1724186400,Microsoft Update,1287,1003 +1724186400,NTP,15180,5430 +1724186400,SSL,855,7031 +1724186400,Advanced Packaging Tool,29000,26551 +1724186400,HTTPS,86911,130131 +1724186400,Avast,1874,8916 +1724186400,SSL client,22269,66092 +1724186400,Ubuntu Update Manager,22278,20891 +1724186400,Microsoft,633,8125 +1724186400,VeriSign,1132,4282 +1724186400,Yandex,7336,23612 +1724186400,Ubuntu,4438,4098 +1724186400,Microsoft CryptoAPI,6111,10027 +1724186400,Microsoft WNS,633,8125 +1724186400,Office 365,940,2337 +1724186400,Google Hangouts,855,7031 +1724186400,ICMP,4858,0 +1724186400,Telegram,1230,407 +1724186400,DNS over TLS,2614,9178 +1724186400,DNS over HTTPS,37352,122689 +1724186699,__unknown,53520,41426 +1724186699,HTTPS,6050,8550 +1724186699,SSL client,6050,8550 +1724186699,Sharepoint Online,6050,8550 +1724186699,__unknown,480,486 +1724186699,HTTPS,108318,12789 +1724186699,SSL client,48283,5942 +1724186699,Dropbox Download,48283,5942 +1724186699,__unknown,44036,44197 +1724186699,Google APIs,2362,6178 +1724186699,HTTPS,26239,32075 +1724186699,SSL client,2362,6178 +1724186699,__unknown,638161,638397 +1724186699,HTTPS,974234,345686 +1724186699,Avast,2244,16510 +1724186699,SSL client,930194,289183 +1724186699,Microsoft,10366,24020 +1724186699,Mail.Ru,10466,7081 +1724186699,Google Play,902197,224856 +1724186699,Samsung Push Notification,2025,10067 +1724186699,Office 365,2693,8828 +1724186699,Grammarly,2228,7888 +1724186699,__unknown,48671270,1159673 +1724186699,Google APIs,198647794,4740553 +1724186699,Google,45905,73174 +1724186699,Gmail,1618,5744 +1724186699,HTTP,1274,1193 +1724186699,Odnoklassniki,9272,16895 +1724186699,Advanced Packaging Tool,1274,1193 +1724186699,IMAPS,1618,5744 +1724186699,HTTPS,199391405,5922281 +1724186699,WhatsApp,3301,7477 +1724186699,Opera,9821,6073 +1724186699,SSL client,198902724,5108616 +1724186699,Ubuntu Update Manager,1274,1193 +1724186699,Microsoft,33336,50167 +1724186699,Mail.Ru,96695,92142 +1724186699,Yandex,12482,29381 +1724186699,GitHub,1592,5976 +1724186699,Nvidia,3419,5332 +1724186699,Office 365,7318,25385 +1724186699,Microsoft Windows Live Services Authentication,24483,45233 +1724186699,ICMP,13366,0 +1724186699,Sberbank of Russia,6329,8713 +1724186699,Grammarly,12481,9921 +1724186699,DNS over HTTPS,3030,9615 +1724186699,__unknown,875,568 +1724186699,ICMP,43378,0 +1724186699,__unknown,1773,1034 +1724186699,ICMP,6220,5220 +1724186699,__unknown,14161,5124 +1724186699,Google,25060,23773 +1724186699,HTTPS,63309,114840 +1724186699,SSL client,25060,23773 +1724186699,ICMP,492,0 +1724186699,Telegram,1203,580 +1724186699,DNS over HTTPS,6332,16079 +1724186699,__unknown,343218,358570 +1724186699,BitTorrent,310,496 +1724186699,Google APIs,2761,9085 +1724186699,Google,35450,66793 +1724186699,DNS,25116,0 +1724186699,Gmail,6981,4012 +1724186699,HTTP,1130,1017 +1724186699,NetBIOS-dgm,243,0 +1724186699,NTP,20000,4365 +1724186699,STUN,984,888 +1724186699,Odnoklassniki,3007,8148 +1724186699,HTTPS,94360,167730 +1724186699,SSL client,58883,108126 +1724186699,Microsoft CryptoAPI,1130,1017 +1724186699,ICMP,26081,3240 +1724186699,Google Sign in,6234,4320 +1724186699,Grammarly,4450,15768 +1724186699,__unknown,243426,205776 +1724186699,BitTorrent,153,198 +1724186699,DHCPv6,978,0 +1724186699,Google APIs,5794,60783 +1724186699,Google,49081,94922 +1724186699,BitTorrent tracker,153,198 +1724186699,DNS,44471,44107 +1724186699,HTTP,50015,69268 +1724186699,Launchpad,3200,2480 +1724186699,Microsoft Update,2603,2145 +1724186699,NTP,17710,4095 +1724186699,Advanced Packaging Tool,25203,23545 +1724186699,HTTPS,160199,311787 +1724186699,SSL client,87907,192832 +1724186699,Ubuntu Update Manager,19020,18379 +1724186699,Yandex,7939,20914 +1724186699,Ubuntu,3408,3143 +1724186699,Microsoft CryptoAPI,2603,2145 +1724186699,Google Play,25198,20764 +1724186699,ICMP,1680,0 +1724186699,Telegram,1894,577 +1724186699,Edge Chromium,7798,22428 +1724186699,DNS over HTTPS,38396,122431 +1724187001,Gmail,56741,77755 +1724187001,IMAPS,56741,77755 +1724187001,SSL client,56741,77755 +1724187001,__unknown,2949,2466 +1724187001,HTTPS,45311,65573 +1724187001,SSL client,45311,65573 +1724187001,Telegram,45311,65573 +1724187001,HTTPS,3169,2279 +1724187001,HTTPS,15662,25460 +1724187001,HTTPS,187905,3057544 +1724187001,__unknown,997493,1511356 +1724187001,Dropbox,1638,1266 +1724187001,Google,8438,5280 +1724187001,Gmail,6070,3601 +1724187001,HTTP,1601,2269 +1724187001,HTTPS,107861,153619 +1724187001,Mozilla,2119,5211 +1724187001,Avast,3366,28440 +1724187001,SSL client,32542,65015 +1724187001,Microsoft,6313,11056 +1724187001,VeriSign,1075,1826 +1724187001,Mail.Ru,2045,8178 +1724187001,Yandex,2553,1983 +1724187001,Microsoft CryptoAPI,1601,2269 +1724187001,__unknown,164795,203973 +1724187001,Bing,3548,6478 +1724187001,Google,4009,5009 +1724187001,DNS,333,513 +1724187001,HTTP,919,1449 +1724187001,Skype,3307,7977 +1724187001,SSL,1532,1392 +1724187001,Odnoklassniki,3680,6782 +1724187001,HTTPS,329126,1197100 +1724187001,WhatsApp,3165,5622 +1724187001,Apple sites,2045,9557 +1724187001,iCloud,6947,17936 +1724187001,Avast,2244,16858 +1724187001,SSL client,182289,285853 +1724187001,Microsoft,52816,70007 +1724187001,Mail.Ru,69782,59261 +1724187001,Yandex,5569,9413 +1724187001,Nvidia,4206,9098 +1724187001,Microsoft CryptoAPI,540,917 +1724187001,Apple Maps,6279,17023 +1724187001,Office 365,3173,15623 +1724187001,Microsoft Windows Live Services Authentication,19431,50462 +1724187001,Google Hangouts,1532,1392 +1724187001,DNS over HTTPS,4292,18149 +1724187001,CoAP,9604,7056 +1724187001,__unknown,133182,85426 +1724187001,Google,87192,57709 +1724187001,HTTPS,87192,57709 +1724187001,SSL client,87192,57709 +1724187001,ICMP,1978,0 +1724187001,__unknown,40199,29748 +1724187001,Windows Live,8404,28666 +1724187001,HTTPS,27261,45354 +1724187001,SSL client,8404,28666 +1724187001,__unknown,12244,185586 +1724187001,HTTPS,63249,47476 +1724187001,SSL client,55609,38790 +1724187001,Google Play,55609,38790 +1724187001,DNS over HTTPS,0,1251 +1724187001,__unknown,120,1572 +1724187001,HTTPS,13802,22806 +1724187001,ICMP,328,0 +1724187001,__unknown,280385,325208 +1724187001,BitTorrent,310,496 +1724187001,DHCPv6,163,0 +1724187001,Google APIs,13995,32691 +1724187001,Google,27078,125994 +1724187001,DNS,18466,0 +1724187001,NTP,540,540 +1724187001,STUN,2844,4188 +1724187001,Odnoklassniki,2606,7483 +1724187001,HTTPS,109210,221096 +1724187001,SSL client,50397,186891 +1724187001,ICMP,4666,0 +1724187001,Grammarly,4530,15774 +1724187001,DNS over HTTPS,3433,6628 +1724187001,__unknown,201885,703214 +1724187001,Apple Update,1793,5443 +1724187001,Google APIs,5314,15671 +1724187001,Google,16622,34588 +1724187001,DNS,56650,49885 +1724187001,Gmail,8688,15193 +1724187001,HTTP,64270,87068 +1724187001,Launchpad,3200,2480 +1724187001,Microsoft Update,2447,2393 +1724187001,NetBIOS-dgm,250,0 +1724187001,NTP,13110,3360 +1724187001,Advanced Packaging Tool,32184,29598 +1724187001,HTTPS,137693,245961 +1724187001,Avast,382,391 +1724187001,SSL client,38711,89968 +1724187001,Ubuntu Update Manager,24240,22842 +1724187001,Microsoft,573,8129 +1724187001,Yandex,3522,12047 +1724187001,Ubuntu,5594,5194 +1724187001,Microsoft CryptoAPI,8480,7412 +1724187001,Microsoft WNS,573,8129 +1724187001,ICMP,1552,0 +1724187001,Edge Chromium,8265,24327 +1724187001,DNS over TLS,2290,9541 +1724187001,DNS over HTTPS,34671,110653 +1724187300,HTTPS,28575,44184 +1724187300,SSL client,28575,44184 +1724187300,Sharepoint Online,28575,44184 +1724187300,__unknown,28910,57285 +1724187300,HTTPS,13467,18869 +1724187300,SSL client,13467,18869 +1724187300,DNS over HTTPS,13467,18869 +1724187300,HTTPS,22095,146853 +1724187300,Mozilla,2171,7319 +1724187300,SSL client,10271,132373 +1724187300,Microsoft,8100,125054 +1724187300,__unknown,20370,1726 +1724187300,HTTPS,40971,23410 +1724187300,SSL client,28633,11077 +1724187300,Google Play,1190,6034 +1724187300,Dropbox Download,27443,5043 +1724187300,__unknown,16893,13120 +1724187300,Google APIs,2267,7077 +1724187300,Google,8438,5164 +1724187300,HTTPS,71585,117795 +1724187300,Avast,2244,16992 +1724187300,SSL client,43058,83141 +1724187300,Microsoft,9779,14700 +1724187300,Yandex,9135,19473 +1724187300,Office 365,1919,8138 +1724187300,Yandex Market,9276,11597 +1724187300,__unknown,362675,314067 +1724187300,Google APIs,3065,7093 +1724187300,HTTP,1266,58221 +1724187300,Steam,2052,4916 +1724187300,HTTPS,652640,1257533 +1724187300,WhatsApp,3768,15853 +1724187300,Mozilla,2177,5091 +1724187300,Avast,126160,255559 +1724187300,Opera,9017,6132 +1724187300,SSL client,276558,593371 +1724187300,Microsoft,22012,36043 +1724187300,Mail.Ru,76668,64927 +1724187300,Yandex,18299,164503 +1724187300,Microsoft CryptoAPI,587,503 +1724187300,uTorrent,10936,19458 +1724187300,Apple Maps,2966,6551 +1724187300,Google Play,3904,8608 +1724187300,Office 365,3558,15576 +1724187300,Microsoft Windows Live Services Authentication,7727,11597 +1724187300,Telegram,120,120 +1724187300,DNS over HTTPS,2380,9351 +1724187300,HTTPS,14728,18626 +1724187300,SSL client,14728,18626 +1724187300,DNS over HTTPS,14728,18626 +1724187300,HTTPS,490534,158595 +1724187300,HTTPS,45854,22094 +1724187300,DNS over HTTPS,119439,277109 +1724187300,__unknown,3465,1928 +1724187300,__unknown,1688,1306 +1724187300,HTTPS,10500,17557 +1724187300,ICMP,1680,0 +1724187300,Telegram,1267,984 +1724187300,__unknown,426061,943085 +1724187300,BITS,5109,32071 +1724187300,BitTorrent,310,496 +1724187300,Google,25371,83239 +1724187300,Chrome,1275,869 +1724187300,DNS,14618,0 +1724187300,Gmail,34534,30852 +1724187300,HTTP,8199,63873 +1724187300,NetBIOS-dgm,243,0 +1724187300,NTP,13200,3450 +1724187300,STUN,984,888 +1724187300,Odnoklassniki,3007,8206 +1724187300,Steam,1815,30933 +1724187300,HTTPS,123633,195422 +1724187300,SSL client,86780,135318 +1724187300,Google Play,23868,13021 +1724187300,ICMP,26722,0 +1724187300,ICMP for IPv6,70,0 +1724187300,DNS over HTTPS,4213,14527 +1724187300,__unknown,195100,434606 +1724187300,BitTorrent,153,537 +1724187300,DHCPv6,1141,0 +1724187300,Google APIs,5428,15513 +1724187300,Google,17652,39761 +1724187300,BitTorrent tracker,153,537 +1724187300,DNS,47012,46733 +1724187300,HTTP,56731,76826 +1724187300,Internet Explorer,1189,1342 +1724187300,Launchpad,3200,2480 +1724187300,Microsoft Update,981,1103 +1724187300,NTP,900,900 +1724187300,Advanced Packaging Tool,28004,25891 +1724187300,HTTPS,144398,221576 +1724187300,SSL client,33686,73018 +1724187300,Ubuntu Update Manager,20647,19665 +1724187300,Mail.Ru,5292,4820 +1724187300,Yandex,6070,15348 +1724187300,Ubuntu,4582,4207 +1724187300,Microsoft CryptoAPI,2742,2612 +1724187300,ICMP,1927,0 +1724187300,ICMP for IPv6,70,0 +1724187300,Telegram,2135,697 +1724187300,Edge Chromium,9313,27688 +1724187300,Grammarly,1861,7329 +1724187300,DNS over HTTPS,70414,230991 +1724187600,Gmail,116391,244365 +1724187600,IMAPS,116391,244365 +1724187600,SSL client,116391,244365 +1724187600,HTTPS,341427,3212493 +1724187600,DNS over HTTPS,373378,878433 +1724187600,Windows Live,37784,17748 +1724187600,HTTPS,37784,17748 +1724187600,SSL client,37784,17748 +1724187600,HTTPS,250195,135666 +1724187600,SSL client,45753,63952 +1724187600,Telegram,45753,63952 +1724187600,Gmail,6582,14589 +1724187600,IMAPS,6582,14589 +1724187600,HTTPS,7898,25091 +1724187600,SSL client,14480,39680 +1724187600,Yandex,7898,25091 +1724187600,__unknown,775,0 +1724187600,__unknown,37272,5501 +1724187600,HTTPS,55636,59029 +1724187600,SSL client,47803,50645 +1724187600,Yandex,3326,8053 +1724187600,Google Play,44477,42592 +1724187600,__unknown,3611,7680 +1724187600,Google APIs,3767,9346 +1724187600,HTTP,561,443 +1724187600,Microsoft Update,561,443 +1724187600,Odnoklassniki,3007,8222 +1724187600,HTTPS,94459,151617 +1724187600,Mozilla,2117,5151 +1724187600,Avast,2244,17444 +1724187600,SSL client,32347,76644 +1724187600,Microsoft,10626,29340 +1724187600,Mail.Ru,10586,7141 +1724187600,Microsoft CryptoAPI,561,443 +1724187600,__unknown,27738,32247 +1724187600,Bing,3373,6424 +1724187600,Dropbox,7785,227108 +1724187600,Google,1721,5276 +1724187600,MSN,2776,20922 +1724187600,Dell,1051,4303 +1724187600,Gmail,7089,12503 +1724187600,HTTP,493,2679 +1724187600,IMAPS,7089,12503 +1724187600,HTTPS,1836043,5274332 +1724187600,WhatsApp,3301,7265 +1724187600,Mozilla,2702,4610 +1724187600,Avast,2244,18026 +1724187600,SSL client,416359,1811800 +1724187600,Microsoft,138221,259439 +1724187600,Mail.Ru,159640,1004425 +1724187600,Yandex,34937,96439 +1724187600,Microsoft CryptoAPI,493,2679 +1724187600,Apple Maps,2152,7569 +1724187600,Rambler,570,4592 +1724187600,Office 365,36475,82241 +1724187600,Microsoft Windows Live Services Authentication,16112,23178 +1724187600,Microsoft Teams,2156,44993 +1724187600,DNS over HTTPS,2146,10786 +1724187600,Google,88716,89064 +1724187600,HTTPS,88716,89064 +1724187600,SSL client,88716,89064 +1724187600,Google,51203,38914 +1724187600,HTTPS,51203,38914 +1724187600,SSL client,51203,38914 +1724187600,__unknown,187,228 +1724187600,__unknown,2925,22117 +1724187600,__unknown,5714,3778 +1724187600,__unknown,120,1086 +1724187600,Google,110774,102148 +1724187600,Skype Auth,820,530 +1724187600,Gmail,12130,10821 +1724187600,Skype,820,530 +1724187600,HTTPS,141310,144165 +1724187600,SSL client,127212,124187 +1724187600,Google Play,4308,11218 +1724187600,ICMP,7402,4440 +1724187600,CoAP,1764,1296 +1724187600,__unknown,318685,338312 +1724187600,BitTorrent,310,496 +1724187600,Google APIs,33908,23680 +1724187600,Google,194561,101798 +1724187600,DNS,20261,0 +1724187600,Gmail,22364,32419 +1724187600,HTTP,1130,1016 +1724187600,NTP,13470,3720 +1724187600,STUN,984,888 +1724187600,HTTPS,348804,357738 +1724187600,Avast,901,9131 +1724187600,SSL client,263253,218787 +1724187600,Doubleclick,2183,7239 +1724187600,Microsoft CryptoAPI,1130,1016 +1724187600,Google Play,4920,31623 +1724187600,ICMP,7332,2760 +1724187600,Grammarly,2228,7948 +1724187600,DNS over HTTPS,12139,36484 +1724187600,__unknown,132240,170502 +1724187600,DHCPv6,978,0 +1724187600,Google APIs,21433,35043 +1724187600,Google,16053,42258 +1724187600,QQ,414,1584 +1724187600,Chrome,1073,3264 +1724187600,DNS,45415,41153 +1724187600,HTTP,130425,1335931 +1724187600,Launchpad,3200,2480 +1724187600,Microsoft Update,68363,1239214 +1724187600,NTP,1260,1260 +1724187600,SSL,855,7031 +1724187600,STUN,1860,3300 +1724187600,Advanced Packaging Tool,35106,32297 +1724187600,Windows Update,66741,1237895 +1724187600,HTTPS,184105,353181 +1724187600,SSL client,71606,139560 +1724187600,Ubuntu Update Manager,27701,26035 +1724187600,Mail.Ru,5508,5477 +1724187600,Yandex,9218,35058 +1724187600,Ubuntu,5055,4700 +1724187600,Microsoft CryptoAPI,3331,2746 +1724187600,Google Play,18859,20854 +1724187600,Google Hangouts,855,7031 +1724187600,ICMP,1875,0 +1724187600,Telegram,3062,7796 +1724187600,Edge Chromium,9966,29704 +1724187600,DNS over HTTPS,86519,259211 +1724187899,__unknown,97320,121177 +1724187899,HTTPS,145285,761047 +1724187899,DNS over HTTPS,27210,72821 +1724187899,HTTPS,4438,8804 +1724187899,SSL client,4438,8804 +1724187899,Yandex,4438,8804 +1724187899,HTTPS,6770,8356 +1724187899,__unknown,581,300 +1724187899,HTTPS,66265,77440 +1724187899,SSL client,54535,62467 +1724187899,Telegram,54535,62467 +1724187899,HTTPS,64319,64036 +1724187899,SSL client,44939,42530 +1724187899,Google Play,44939,42530 +1724187899,__unknown,38306,21607 +1724187899,Google APIs,42852,8127 +1724187899,Google,8379,5304 +1724187899,HTTP,1426,5941 +1724187899,HTTPS,337128,2322465 +1724187899,Mozilla,13699,33777 +1724187899,Avast,2244,16978 +1724187899,SSL client,155180,1627580 +1724187899,Microsoft,19628,19120 +1724187899,Mail.Ru,29451,1467202 +1724187899,Yandex,2433,1965 +1724187899,Microsoft CryptoAPI,1426,5941 +1724187899,Google Play,26414,19729 +1724187899,Office 365,937,3262 +1724187899,Sberbank of Russia,7575,9182 +1724187899,Microsoft Teams,2994,48875 +1724187899,__unknown,80005,35848 +1724187899,Google APIs,5539,13948 +1724187899,Google,2982,3194 +1724187899,Dell,1051,4307 +1724187899,HTTP,3705,138617 +1724187899,Skype,4427,87888 +1724187899,SSL,1507,1492 +1724187899,YouTube,5450,4985 +1724187899,TeamViewer,1524,9022 +1724187899,Odnoklassniki,5520,10173 +1724187899,HTTPS,6303910,2560607 +1724187899,WhatsApp,3368,12046 +1724187899,Apple sites,1807,4578 +1724187899,Mozilla,5291,16232 +1724187899,Avast,4248,22396 +1724187899,SSL client,280694,645946 +1724187899,CloudFront,3742,1153 +1724187899,Microsoft,63916,112244 +1724187899,Mail.Ru,81613,96510 +1724187899,Yandex,18144,45847 +1724187899,Nvidia,2183,4549 +1724187899,Rambler,15781,8393 +1724187899,New Relic,698,5600 +1724187899,Office 365,10735,86542 +1724187899,Microsoft Windows Live Services Authentication,42274,98658 +1724187899,Google Hangouts,1507,1492 +1724187899,Sway,2262,8235 +1724187899,DNS over HTTPS,6758,27963 +1724187899,__unknown,120022,532456 +1724187899,HTTPS,53789,64036 +1724187899,SSL client,53789,64036 +1724187899,Telegram,53789,64036 +1724187899,HTTPS,22804,28706 +1724187899,__unknown,66070,42571 +1724187899,HTTPS,31132,27791 +1724187899,__unknown,50794,34665 +1724187899,Google,29479,75555 +1724187899,HTTPS,29479,75555 +1724187899,SSL client,29479,75555 +1724187899,__unknown,1083,670 +1724187899,HTTPS,7744,18148 +1724187899,ICMP,328,0 +1724187899,Telegram,939,592 +1724187899,DNS over HTTPS,0,1736 +1724187899,__unknown,527848,688969 +1724187899,BITS,2683,20733 +1724187899,BitTorrent,310,496 +1724187899,DHCPv6,163,0 +1724187899,Google APIs,56851,35576 +1724187899,Google Drive,42259,36487 +1724187899,Google,33059,109348 +1724187899,DNS,14637,0 +1724187899,Gmail,25676,42033 +1724187899,HTTP,4107,29773 +1724187899,Microsoft Update,731,916 +1724187899,NetBIOS-dgm,250,0 +1724187899,NTP,25320,5820 +1724187899,STUN,984,888 +1724187899,Odnoklassniki,3007,8221 +1724187899,HTTPS,198210,309192 +1724187899,SSL client,170364,247593 +1724187899,Microsoft,693,8124 +1724187899,Microsoft WNS,693,8124 +1724187899,Google Play,7324,10977 +1724187899,ICMP,2739,0 +1724187899,DNS over HTTPS,45699,112795 +1724187899,__unknown,271729,740614 +1724187899,Apple Update,1781,5542 +1724187899,BITS,1195,852 +1724187899,BitTorrent,153,198 +1724187899,Google APIs,8666,65930 +1724187899,Google,47850,113037 +1724187899,BitTorrent tracker,153,198 +1724187899,DNS,60899,54471 +1724187899,Gmail,8690,15278 +1724187899,HTTP,52659,68997 +1724187899,Launchpad,2856,1984 +1724187899,NetBIOS-dgm,243,0 +1724187899,NTP,13290,3540 +1724187899,Advanced Packaging Tool,28613,25925 +1724187899,HTTPS,197199,423980 +1724187899,SSL client,84114,264303 +1724187899,Ubuntu Update Manager,21013,19665 +1724187899,Yandex,11515,40831 +1724187899,Ubuntu,6741,6260 +1724187899,Microsoft CryptoAPI,2404,2202 +1724187899,ICMP,2223,0 +1724187899,Telegram,1814,661 +1724187899,Edge Chromium,6744,20863 +1724187899,DNS over TLS,6540,28622 +1724187899,DNS over HTTPS,43730,145495 +1724188201,HTTPS,53738,67858 +1724188201,SSL client,53738,67858 +1724188201,Telegram,53738,67858 +1724188201,HTTPS,18807,17445 +1724188201,__unknown,39774,40778 +1724188201,Google,5232,5104 +1724188201,HTTPS,91243,207720 +1724188201,WhatsApp,3442,63614 +1724188201,Avast,2244,18106 +1724188201,SSL client,27879,74069 +1724188201,Microsoft,8305,18250 +1724188201,Mail.Ru,7064,17277 +1724188201,Yandex,2900,5927 +1724188201,GISMETEO,2134,9405 +1724188201,DNS over HTTPS,2732,7967 +1724188201,__unknown,19300,11250 +1724188201,Google,1912133,907580 +1724188201,HTTP,1673,1557 +1724188201,Microsoft Update,1280,3487 +1724188201,Odnoklassniki,9113,16498 +1724188201,Advanced Packaging Tool,1274,1226 +1724188201,HTTPS,2229384,1564440 +1724188201,Apple sites,8219,28196 +1724188201,Avast,7383,26055 +1724188201,SSL client,2127628,1282224 +1724188201,Ubuntu Update Manager,1274,1226 +1724188201,Microsoft,36660,52387 +1724188201,Mail.Ru,82550,68164 +1724188201,Yandex,25856,57229 +1724188201,Apple Maps,1999,7494 +1724188201,Office 365,6823,31541 +1724188201,Sharepoint Online,5432,10152 +1724188201,Microsoft Windows Live Services Authentication,30459,76202 +1724188201,DNS over HTTPS,6119,21935 +1724188201,__unknown,1844,720 +1724188201,HTTPS,39586,17440 +1724188201,HTTPS,52632,33451 +1724188201,__unknown,7140,74 +1724188201,SSL,10395,28318 +1724188201,HTTPS,139815,69157 +1724188201,iCloud,127111,46785 +1724188201,SSL client,132013,60248 +1724188201,Apple Music,4902,13463 +1724188201,__unknown,1071,1934 +1724188201,DNS over HTTPS,29316,66548 +1724188201,__unknown,277,244 +1724188201,Chrome,875,3310 +1724188201,Gmail,12190,10728 +1724188201,HTTP,875,3310 +1724188201,HTTPS,21196,108273 +1724188201,SSL client,12190,10728 +1724188201,ICMP,408,0 +1724188201,CoAP,1960,1440 +1724188201,__unknown,358118,529642 +1724188201,BitTorrent,310,496 +1724188201,DHCPv6,978,0 +1724188201,Google APIs,37157,16282 +1724188201,Google,17864,68420 +1724188201,DNS,18852,213 +1724188201,HTTP,4194,39523 +1724188201,NTP,25140,5640 +1724188201,STUN,984,888 +1724188201,Steam,1456,11525 +1724188201,HTTPS,135361,232189 +1724188201,SSL client,60740,99854 +1724188201,Microsoft,1728,27042 +1724188201,Microsoft CryptoAPI,1010,956 +1724188201,Google Play,3531,10203 +1724188201,ICMP,35047,3000 +1724188201,DNS over HTTPS,16009,43691 +1724188201,__unknown,351304,461928 +1724188201,DHCPv6,163,0 +1724188201,Google APIs,11132,30855 +1724188201,Google,21242,61111 +1724188201,Windows Live,3423,19587 +1724188201,DNS,71779,57801 +1724188201,HTTP,66352,88548 +1724188201,Internet Explorer,6284,2106 +1724188201,Launchpad,3200,2480 +1724188201,Microsoft Update,642,511 +1724188201,NTP,990,990 +1724188201,SSL,797,7092 +1724188201,Advanced Packaging Tool,32115,29333 +1724188201,HTTPS,370532,478229 +1724188201,Apple sites,1608,8188 +1724188201,SSL client,45553,147019 +1724188201,Ubuntu Update Manager,22362,20951 +1724188201,Microsoft,693,8045 +1724188201,Yandex,13153,24911 +1724188201,Ubuntu,8744,8207 +1724188201,Microsoft CryptoAPI,5823,7735 +1724188201,Microsoft WNS,693,8045 +1724188201,Office 365,619,1199 +1724188201,Google Hangouts,797,7092 +1724188201,ICMP,1542,0 +1724188201,Edge Chromium,6684,20281 +1724188201,DNS over HTTPS,32587,100972 +1724188500,__unknown,323997,310527 +1724188500,HTTPS,150988,673687 +1724188500,SSL client,150988,673687 +1724188500,Mail.Ru,150988,673687 +1724188500,TwitchTV,1532397,69959 +1724188500,HTTPS,1578084,133911 +1724188500,SSL client,1578084,133911 +1724188500,Telegram,45687,63952 +1724188500,__unknown,1268,1778 +1724188500,Windows Live,32445,8624 +1724188500,HTTPS,102744,717099 +1724188500,Apple sites,44008,382892 +1724188500,SSL client,88908,626576 +1724188500,Microsoft,12455,235060 +1724188500,HTTPS,12915,7055 +1724188500,HTTPS,36867,39030 +1724188500,SSL client,23131,24395 +1724188500,Google Play,23131,24395 +1724188500,DNS over HTTPS,5537,13735 +1724188500,__unknown,24352,10063 +1724188500,Google APIs,12111,50130 +1724188500,Google,8624,5474 +1724188500,YouTube,1298,5988 +1724188500,HTTPS,131701,236873 +1724188500,Mozilla,2414,1744 +1724188500,Avast,2244,17062 +1724188500,SSL client,80379,164677 +1724188500,Microsoft,36091,45175 +1724188500,Mail.Ru,10121,11258 +1724188500,Yandex,1133,907 +1724188500,Apple Maps,2714,7474 +1724188500,Office 365,1418,7259 +1724188500,OneDrive,2785,9983 +1724188500,GISMETEO,2140,9697 +1724188500,__unknown,49976,67795 +1724188500,Dropbox,1845,1894 +1724188500,Google APIs,3133,6944 +1724188500,Google,1848,11689 +1724188500,MSN,2069,11722 +1724188500,Microsoft Update,89021,233381 +1724188500,TeamViewer,1518,8847 +1724188500,HTTPS,460494,1525135 +1724188500,WhatsApp,1919,5921 +1724188500,Apple sites,2096,11674 +1724188500,iCloud,4116,9073 +1724188500,Avast,2244,16422 +1724188500,SSL client,312764,1226722 +1724188500,Microsoft,22305,33707 +1724188500,Mail.Ru,87048,69789 +1724188500,Yandex,37758,657675 +1724188500,GitHub,1658,6064 +1724188500,Exchange Online,2598,14315 +1724188500,Office 365,3899,17877 +1724188500,Microsoft Windows Live Services Authentication,41927,99005 +1724188500,Telegram,537,325 +1724188500,Sberbank of Russia,7681,16644 +1724188500,DNS over HTTPS,877,4585 +1724188500,__unknown,2708,15098 +1724188500,__unknown,2140,29354 +1724188500,HTTPS,22102,8694 +1724188500,__unknown,2078,1263 +1724188500,Google,30528,34606 +1724188500,HTTPS,41891,55694 +1724188500,SSL client,30528,34606 +1724188500,ICMP,1034,0 +1724188500,Telegram,1119,516 +1724188500,DNS over HTTPS,5470,14051 +1724188500,__unknown,219498,258119 +1724188500,BitTorrent,310,496 +1724188500,Google APIs,8459,24330 +1724188500,Google,80098,180387 +1724188500,DNS,20758,0 +1724188500,Gmail,6375,8737 +1724188500,HTTP,3705,3061 +1724188500,Microsoft Update,1928,1542 +1724188500,NTP,14010,4260 +1724188500,STUN,2926,4262 +1724188500,HTTPS,143020,298204 +1724188500,SSL client,104595,231637 +1724188500,Yandex,1191,6091 +1724188500,Microsoft CryptoAPI,3705,3061 +1724188500,ICMP,15248,0 +1724188500,Google Sign in,6230,4205 +1724188500,Grammarly,2242,7887 +1724188500,DNS over HTTPS,7335,19600 +1724188500,__unknown,143060,280110 +1724188500,BitTorrent,153,537 +1724188500,DHCPv6,978,0 +1724188500,Google APIs,4374,14753 +1724188500,Google,21102,33225 +1724188500,BitTorrent tracker,153,537 +1724188500,DNS,56265,50658 +1724188500,HTTP,154570,1784416 +1724188500,Launchpad,3200,2480 +1724188500,Microsoft Update,75680,1699410 +1724188500,NetBIOS-dgm,250,0 +1724188500,NTP,26040,6540 +1724188500,STUN,1312,1184 +1724188500,Advanced Packaging Tool,34729,32021 +1724188500,Windows Update,75680,1699410 +1724188500,HTTPS,113277,207455 +1724188500,Apple sites,614,620 +1724188500,SSL client,41052,94159 +1724188500,Ubuntu Update Manager,27420,25831 +1724188500,Microsoft,1454,1932 +1724188500,Yandex,1900,2913 +1724188500,Ubuntu,5450,5085 +1724188500,Microsoft CryptoAPI,4969,4230 +1724188500,Google Play,4021,16910 +1724188500,ICMP,814,0 +1724188500,Telegram,45200,32126 +1724188500,Edge Chromium,5857,15648 +1724188500,DNS over HTTPS,58772,199421 +1724188799,HTTPS,109786,44980 +1724188799,Google,1536464,950411 +1724188799,HTTPS,1885915,1061989 +1724188799,SSL client,1536464,950411 +1724188799,HTTPS,18918,241823 +1724188799,HTTPS,156302,113651 +1724188799,SSL client,136261,100922 +1724188799,Google Play,81792,38886 +1724188799,Telegram,54469,62036 +1724188799,Google APIs,4054,14722 +1724188799,HTTPS,28192,101434 +1724188799,SSL client,23937,33072 +1724188799,Google Play,19883,18350 +1724188799,__unknown,150286,20010 +1724188799,HTTPS,120508,212107 +1724188799,Mozilla,2532,1838 +1724188799,Avast,3498,27016 +1724188799,SSL client,32309,63383 +1724188799,Microsoft,4616,11681 +1724188799,Mail.Ru,10586,7080 +1724188799,Yandex,8423,6058 +1724188799,Office 365,2654,9710 +1724188799,__unknown,35440,28352 +1724188799,Dropbox,1254,4587 +1724188799,Google APIs,15770,8378 +1724188799,Google,1512331,633057 +1724188799,HTTP,4340,10370 +1724188799,Steam,7180,15423 +1724188799,HTTPS,2133085,1510242 +1724188799,WhatsApp,3108,5682 +1724188799,Apple sites,5935,12503 +1724188799,iCloud,853,6552 +1724188799,Avast,2244,16806 +1724188799,SSL client,1997022,1191396 +1724188799,Amazon Web Services,5124,29577 +1724188799,Microsoft,51909,74794 +1724188799,Mail.Ru,81506,68285 +1724188799,Yandex,298560,207525 +1724188799,Google Update,4340,10370 +1724188799,Office 365,7236,92895 +1724188799,Sharepoint Online,2680,5139 +1724188799,Firebase Crashlytics,4440,15875 +1724188799,Telegram,4297,17775 +1724188799,DNS over HTTPS,6329,40228 +1724188799,HTTPS,62630,37754 +1724188799,SSL client,62630,37754 +1724188799,Google Play,62630,37754 +1724188799,__unknown,6309,17458 +1724188799,ICMP,1376,0 +1724188799,__unknown,149943,8312629 +1724188799,Google,24023,21870 +1724188799,HTTPS,46680,117562 +1724188799,SSL client,24023,21870 +1724188799,ICMP,1148,0 +1724188799,__unknown,353557,554073 +1724188799,BitTorrent,310,496 +1724188799,DHCPv6,163,0 +1724188799,Google APIs,43029,17071 +1724188799,Google Drive,5920,10092 +1724188799,Google,46361,136117 +1724188799,DNS,18784,0 +1724188799,Gmail,8688,15310 +1724188799,HTTP,91803,7201519 +1724188799,Microsoft Update,91803,7201519 +1724188799,NetBIOS-dgm,243,0 +1724188799,NTP,630,630 +1724188799,STUN,984,888 +1724188799,Odnoklassniki,5613,15642 +1724188799,HTTPS,162586,272046 +1724188799,Mozilla,5373,3451 +1724188799,SSL client,117225,205570 +1724188799,MDNS,364,0 +1724188799,Microsoft CryptoAPI,646,506 +1724188799,ICMP,3324,0 +1724188799,Grammarly,2241,7887 +1724188799,DNS over HTTPS,5380,16232 +1724188799,__unknown,113717,155012 +1724188799,DHCPv6,978,0 +1724188799,Google APIs,10056,29408 +1724188799,Google,18651,48356 +1724188799,DNS,56052,48343 +1724188799,HTTP,51631,67777 +1724188799,Launchpad,3200,2480 +1724188799,NTP,1800,1800 +1724188799,Advanced Packaging Tool,33555,30917 +1724188799,HTTPS,141132,310643 +1724188799,Apple sites,7137,9379 +1724188799,Avast,1299,9311 +1724188799,SSL client,48250,138837 +1724188799,Ubuntu Update Manager,24976,23595 +1724188799,Microsoft,573,8105 +1724188799,Yandex,5666,29610 +1724188799,Ubuntu,7079,6686 +1724188799,Microsoft CryptoAPI,2523,2168 +1724188799,Microsoft WNS,573,8105 +1724188799,ICMP,1452,0 +1724188799,Edge Chromium,2108,5458 +1724188799,DNS over HTTPS,41315,126371 +1724189100,__unknown,207463,241441 +1724189100,__unknown,10997,60770 +1724189100,HTTPS,53723,63952 +1724189100,SSL client,53723,63952 +1724189100,Telegram,53723,63952 +1724189100,HTTPS,22837,24678 +1724189100,SSL client,8199,7114 +1724189100,Yandex,8199,7114 +1724189100,Google APIs,2347,28930 +1724189100,HTTPS,3537,34955 +1724189100,SSL client,3537,34955 +1724189100,Google Play,1190,6025 +1724189100,__unknown,63637,50358 +1724189100,Dropbox,22575,37936 +1724189100,Google APIs,2329,6916 +1724189100,Google,11043,26070 +1724189100,HTTPS,140812,239091 +1724189100,Avast,2244,16790 +1724189100,SSL client,123364,214958 +1724189100,Microsoft,8396,22103 +1724189100,Mail.Ru,10484,2511 +1724189100,Yandex,61203,98625 +1724189100,ICMP,10664,0 +1724189100,Google Sign in,5090,4007 +1724189100,__unknown,9521,4637 +1724189100,Bing,6473,12886 +1724189100,Google,4786304,1940667 +1724189100,HTTP,5334,107528 +1724189100,Advanced Packaging Tool,4093,105424 +1724189100,HTTPS,4982587,2485690 +1724189100,WhatsApp,10367,180022 +1724189100,Apple sites,1614,7888 +1724189100,SSL client,4888436,2126770 +1724189100,Amazon Web Services,3379,21430 +1724189100,Ubuntu Update Manager,3506,104894 +1724189100,Microsoft,23943,42133 +1724189100,Mail.Ru,54221,61677 +1724189100,Yandex,2182,4373 +1724189100,GitHub,1526,5977 +1724189100,Ubuntu,587,530 +1724189100,Exchange Online,1240,6467 +1724189100,Office 365,1339,5944 +1724189100,Microsoft Windows Live Services Authentication,6215,17328 +1724189100,DNS over HTTPS,1990,9169 +1724189100,__unknown,187,228 +1724189100,__unknown,6403,12578 +1724189100,Windows Live,5101,9494 +1724189100,HTTPS,17604,25580 +1724189100,SSL client,5101,9494 +1724189100,ICMP,738,0 +1724189100,DNS over HTTPS,0,1390 +1724189100,CoAP,2940,2160 +1724189100,__unknown,9748,14373 +1724189100,Google,5289,10853 +1724189100,HTTPS,71229,73349 +1724189100,SSL client,47956,25150 +1724189100,Google Play,42667,14297 +1724189100,ICMP,4148,0 +1724189100,Telegram,2044,1328 +1724189100,__unknown,408909,914833 +1724189100,BitTorrent,310,496 +1724189100,DHCPv6,163,0 +1724189100,Google APIs,32209,4071 +1724189100,Google,8395,23549 +1724189100,DNS,19368,260 +1724189100,Gmail,8688,15564 +1724189100,HTTP,730,527 +1724189100,NTP,24690,5190 +1724189100,STUN,2844,4188 +1724189100,Odnoklassniki,5583,10550 +1724189100,HTTPS,120350,178152 +1724189100,SSL client,72220,87270 +1724189100,Yandex,1191,6091 +1724189100,Microsoft CryptoAPI,730,527 +1724189100,ICMP,4050,0 +1724189100,Google Sign in,6231,4242 +1724189100,Grammarly,2228,7886 +1724189100,DNS over HTTPS,2302,3630 +1724189100,Google Meet,7695,15317 +1724189100,__unknown,367968,463558 +1724189100,BITS,1255,852 +1724189100,BitTorrent,153,198 +1724189100,Google,11218,18124 +1724189100,BitTorrent tracker,153,198 +1724189100,DNS,54247,49866 +1724189100,HTTP,61637,274818 +1724189100,Internet Explorer,822,660 +1724189100,Launchpad,3200,2480 +1724189100,Microsoft Update,1258,1012 +1724189100,NTP,13650,3900 +1724189100,Steam,1898,75466 +1724189100,Advanced Packaging Tool,34971,162207 +1724189100,HTTPS,110212,188308 +1724189100,Apple sites,1267,7966 +1724189100,SSL client,34628,70166 +1724189100,Ubuntu Update Manager,26344,154789 +1724189100,Mail.Ru,5448,5479 +1724189100,Yandex,4794,13240 +1724189100,Ubuntu,7552,7235 +1724189100,Microsoft CryptoAPI,3903,3346 +1724189100,Microsoft NCSI,968,974 +1724189100,Google Play,3773,10701 +1724189100,ICMP,961,0 +1724189100,Telegram,3405,1073 +1724189100,Google Sign in,6222,4165 +1724189100,Edge Chromium,4743,12279 +1724189100,DNS over TLS,2224,9540 +1724189100,DNS over HTTPS,54837,194160 +1724189400,__unknown,4160875,3410961 +1724189400,Telegram,4160875,3410961 +1724189400,HTTPS,3943918,1746875 +1724189400,SSL client,3943918,1746875 +1724189400,Mail.Ru,770744,909856 +1724189400,Google Play,3173174,837019 +1724189400,__unknown,1222,1874 +1724189400,Windows Live,31146,12806 +1724189400,HTTPS,31146,12806 +1724189400,SSL client,31146,12806 +1724189400,HTTPS,50535,62873 +1724189400,HTTPS,3712,4450 +1724189400,Skype,4148,8801 +1724189400,HTTPS,26872,355671 +1724189400,SSL client,19152,237334 +1724189400,Microsoft,12168,221340 +1724189400,Microsoft Teams,2836,7193 +1724189400,HTTPS,71767,49649 +1724189400,SSL client,68763,45266 +1724189400,Google Play,68763,45266 +1724189400,__unknown,126841,121320 +1724189400,Google APIs,3846,9406 +1724189400,MSN,2896,29070 +1724189400,TeamViewer,1570,8838 +1724189400,HTTPS,73108,147964 +1724189400,Mozilla,2337,5191 +1724189400,Avast,2244,17860 +1724189400,SSL client,48687,114624 +1724189400,Microsoft,15910,12460 +1724189400,Mail.Ru,6241,5841 +1724189400,Google Play,9347,6556 +1724189400,Office 365,4296,19402 +1724189400,__unknown,13279,20010 +1724189400,Bing,1995,9268 +1724189400,Google,85727,104899 +1724189400,MSN,3417,9510 +1724189400,Dell,1111,4305 +1724189400,Skype,2029,87273 +1724189400,HTTPS,484050,838398 +1724189400,WhatsApp,1859,5981 +1724189400,Apple sites,5739,28454 +1724189400,Mozilla,2117,5091 +1724189400,Avast,3498,26070 +1724189400,SSL client,226880,546163 +1724189400,Amazon Web Services,3265,21542 +1724189400,Microsoft,21538,43215 +1724189400,Mail.Ru,57260,48589 +1724189400,Yandex,18766,80107 +1724189400,Apple Maps,2780,7434 +1724189400,Exchange Online,1197,8005 +1724189400,Office 365,11494,58298 +1724189400,Microsoft Windows Live Services Authentication,7727,11537 +1724189400,Telegram,1914,7450 +1724189400,DNS over HTTPS,13055,31265 +1724189400,ICMP,5084,0 +1724189400,__unknown,187728,4833956 +1724189400,ICMP,10680,10680 +1724189400,__unknown,5123,2716 +1724189400,HTTP,482,408 +1724189400,HTTPS,3211,5432 +1724189400,ICMP,2444,0 +1724189400,Google,5077,10249 +1724189400,HTTPS,27838,75217 +1724189400,Apple sites,7294,17920 +1724189400,SSL client,12371,28169 +1724189400,ICMP,962,0 +1724189400,__unknown,666228,708382 +1724189400,BitTorrent,310,496 +1724189400,Google APIs,95122,26080 +1724189400,Google,117061,256207 +1724189400,Kaspersky,608,607 +1724189400,DNS,20951,0 +1724189400,Gmail,12326,12907 +1724189400,HTTP,1174,2748 +1724189400,NetBIOS-dgm,250,0 +1724189400,NTP,12750,3000 +1724189400,SSL,2775,9562 +1724189400,STUN,984,888 +1724189400,Odnoklassniki,3007,8146 +1724189400,HTTPS,287128,810529 +1724189400,SSL client,240266,731470 +1724189400,VeriSign,566,2141 +1724189400,Microsoft CryptoAPI,566,2141 +1724189400,ICMP,4140,1620 +1724189400,JetBrains,8279,415311 +1724189400,Grammarly,2223,7887 +1724189400,DNS over HTTPS,13051,39360 +1724189400,__unknown,265850,520088 +1724189400,DHCPv6,1141,0 +1724189400,Google,41970,88503 +1724189400,DNS,52925,46593 +1724189400,HTTP,59141,347324 +1724189400,Launchpad,3200,2480 +1724189400,Microsoft Update,646,501 +1724189400,NetBIOS-dgm,243,0 +1724189400,NTP,900,900 +1724189400,SSL,855,7032 +1724189400,Advanced Packaging Tool,39090,295888 +1724189400,HTTPS,153705,241230 +1724189400,SSL client,48155,120573 +1724189400,Ubuntu Update Manager,24386,151066 +1724189400,Microsoft,693,8045 +1724189400,Yandex,4625,25592 +1724189400,Ubuntu,12911,143721 +1724189400,Microsoft CryptoAPI,646,501 +1724189400,Microsoft WNS,693,8045 +1724189400,Google Hangouts,855,7032 +1724189400,ICMP,2796,0 +1724189400,Telegram,1905,7285 +1724189400,Edge Chromium,6444,17664 +1724189400,DNS over HTTPS,35314,113791 +1724189700,HTTPS,509419,467673 +1724189700,Gmail,10900,22794 +1724189700,IMAPS,10900,22794 +1724189700,SSL client,10900,22794 +1724189700,HTTPS,13102,166336 +1724189700,SSL client,13102,166336 +1724189700,Yandex,8906,159894 +1724189700,Sharepoint Online,4196,6442 +1724189700,HTTPS,11531,33168 +1724189700,SSL client,5362,24135 +1724189700,Yandex,5362,24135 +1724189700,HTTPS,5414,8258 +1724189700,Google APIs,6141,21847 +1724189700,HTTPS,157320,92980 +1724189700,SSL client,146905,79850 +1724189700,Mail.Ru,107621,27570 +1724189700,Google Play,33143,30433 +1724189700,DNS over HTTPS,5625,13882 +1724189700,Google APIs,3067,7095 +1724189700,HTTPS,50277,80352 +1724189700,Avast,2244,16488 +1724189700,SSL client,22929,56408 +1724189700,Microsoft,6535,10594 +1724189700,Yandex,2433,1661 +1724189700,Office 365,1495,7344 +1724189700,GISMETEO,2194,9388 +1724189700,Google Sign in,4961,3838 +1724189700,__unknown,15395,21579 +1724189700,Bing,4483,11558 +1724189700,Google APIs,3018,6344 +1724189700,Google,6022,6462 +1724189700,Dell,1051,4309 +1724189700,Gmail,5651,6538 +1724189700,HTTP,2895,2683 +1724189700,Microsoft Update,53451,34718 +1724189700,SSL,7651,34384 +1724189700,Advanced Packaging Tool,2895,2683 +1724189700,IMAPS,5651,6538 +1724189700,HTTPS,640904,22397326 +1724189700,WhatsApp,3162,5622 +1724189700,Avast,2244,17390 +1724189700,SSL client,428232,996869 +1724189700,Ubuntu Update Manager,2895,2683 +1724189700,Microsoft,178649,268593 +1724189700,Mail.Ru,52162,43171 +1724189700,Yandex,47791,395001 +1724189700,Google Play,1563,1684 +1724189700,Exchange Online,2715,14532 +1724189700,Office 365,9801,28817 +1724189700,Microsoft Windows Live Services Authentication,44881,112962 +1724189700,Google Hangouts,7651,34384 +1724189700,Telegram,120,120 +1724189700,Google Sign in,5924,3911 +1724189700,DNS over TLS,706,7090 +1724189700,DNS over HTTPS,4544,21571 +1724189700,Discord,1175,6495 +1724189700,__unknown,206955,153591 +1724189700,HTTPS,10963,16816 +1724189700,SSL client,10963,16816 +1724189700,DNS over HTTPS,10963,16816 +1724189700,ICMP,10332,0 +1724189700,__unknown,2842,76376 +1724189700,__unknown,3394,2278 +1724189700,Telegram,4209,2796 +1724189700,DNS over HTTPS,5631,14362 +1724189700,CoAP,1960,1440 +1724189700,__unknown,615343,901958 +1724189700,BitTorrent,310,496 +1724189700,Google APIs,10506,32463 +1724189700,Google,43004,97241 +1724189700,Kaspersky,608,607 +1724189700,DNS,18266,0 +1724189700,Gmail,16366,14782 +1724189700,HTTP,608,607 +1724189700,NTP,37080,7830 +1724189700,STUN,2106,3522 +1724189700,Odnoklassniki,3007,8228 +1724189700,HTTPS,112253,222597 +1724189700,Mozilla,1876,4611 +1724189700,SSL client,83237,166461 +1724189700,ICMP,4768,0 +1724189700,ICMP for IPv6,70,0 +1724189700,Google Sign in,6290,4186 +1724189700,DNS over HTTPS,7382,19074 +1724189700,__unknown,247832,515090 +1724189700,BitTorrent,153,0 +1724189700,DHCPv6,978,0 +1724189700,Google,5276,6800 +1724189700,BitTorrent tracker,153,0 +1724189700,DNS,52723,51580 +1724189700,HTTP,61764,364250 +1724189700,Launchpad,3200,2480 +1724189700,Microsoft Update,4381,287636 +1724189700,NTP,720,720 +1724189700,STUN,738,666 +1724189700,Odnoklassniki,1840,3391 +1724189700,Advanced Packaging Tool,33581,30708 +1724189700,HTTPS,145454,243957 +1724189700,SSL client,52439,47658 +1724189700,Ubuntu Update Manager,23636,22182 +1724189700,Yandex,4425,21102 +1724189700,Ubuntu,9361,8800 +1724189700,Microsoft CryptoAPI,1288,1146 +1724189700,Google Play,33769,14631 +1724189700,ICMP,1140,0 +1724189700,Telegram,3720,1270 +1724189700,Google Sign in,6225,4216 +1724189700,Edge Chromium,8265,24321 +1724189700,DNS over HTTPS,35607,109341 +1724189999,Google,772127,391834 +1724189999,HTTPS,772127,391834 +1724189999,SSL client,772127,391834 +1724189999,DNS over HTTPS,157166,369807 +1724189999,HTTPS,45696,19335 +1724189999,HTTPS,49207,37813 +1724189999,SSL client,32289,21255 +1724189999,Google Play,32289,21255 +1724189999,__unknown,6820,7118 +1724189999,Gmail,5951,3883 +1724189999,Skype,2846,7907 +1724189999,HTTPS,90158,314331 +1724189999,Mozilla,2217,5251 +1724189999,Avast,2244,16792 +1724189999,SSL client,44888,84120 +1724189999,Microsoft,10952,20249 +1724189999,Mail.Ru,16795,12919 +1724189999,Office 365,1749,7788 +1724189999,GISMETEO,2134,9331 +1724189999,__unknown,4329,30064 +1724189999,Bing,2305,9795 +1724189999,Dropbox,1845,1895 +1724189999,Google Drive,425365,150685 +1724189999,Google,4461,4791 +1724189999,HTTP,2210,3354 +1724189999,Internet Explorer,546,809 +1724189999,Skype,5737,92336 +1724189999,SSL,1548,4789 +1724189999,Odnoklassniki,3680,6782 +1724189999,Advanced Packaging Tool,587,530 +1724189999,HTTPS,955061,857094 +1724189999,SSL client,879048,630705 +1724189999,Microsoft,26033,54197 +1724189999,Mail.Ru,61821,51175 +1724189999,Yandex,16188,40947 +1724189999,Ubuntu,587,530 +1724189999,Microsoft CryptoAPI,1077,2015 +1724189999,Google Play,297285,117424 +1724189999,Office 365,10253,36677 +1724189999,Microsoft Windows Live Services Authentication,17537,45186 +1724189999,BlueStacks,1599,5046 +1724189999,Grammarly,4939,13769 +1724189999,DNS over TLS,2054,8182 +1724189999,DNS over HTTPS,2145,7308 +1724189999,HTTPS,136990,79977 +1724189999,SSL client,136990,79977 +1724189999,Google Play,136990,79977 +1724189999,HTTPS,53723,63958 +1724189999,SSL client,53723,63958 +1724189999,Telegram,53723,63958 +1724189999,DNS over HTTPS,11055,29193 +1724189999,ICMP,1504,0 +1724189999,__unknown,1051,572 +1724189999,DNS over HTTPS,22006,50125 +1724189999,__unknown,277,244 +1724189999,Google,4904,10303 +1724189999,HTTPS,14322,25838 +1724189999,SSL client,4904,10303 +1724189999,ICMP,2050,0 +1724189999,__unknown,277669,350362 +1724189999,BitTorrent,310,496 +1724189999,DHCPv6,163,0 +1724189999,Google APIs,37259,16415 +1724189999,Google Drive,8895,10876 +1724189999,Google,25517,52946 +1724189999,DNS,24170,0 +1724189999,Gmail,5596,8183 +1724189999,NetBIOS-dgm,250,0 +1724189999,NTP,1170,1170 +1724189999,HTTPS,111738,147348 +1724189999,SSL client,79494,96307 +1724189999,ICMP,6670,1260 +1724189999,Grammarly,2227,7887 +1724189999,DNS over HTTPS,17345,48884 +1724189999,__unknown,142305,211826 +1724189999,BITS,5344,73835 +1724189999,Google APIs,4908,9708 +1724189999,Google,4623,12860 +1724189999,DNS,56040,47667 +1724189999,HTTP,69782,255665 +1724189999,Internet Explorer,762,660 +1724189999,Launchpad,3200,2480 +1724189999,Microsoft Update,947,1103 +1724189999,NTP,13380,3630 +1724189999,SSL,855,7033 +1724189999,STUN,984,888 +1724189999,Steam,3713,101140 +1724189999,Advanced Packaging Tool,32745,30086 +1724189999,HTTPS,98537,161482 +1724189999,Avast,382,391 +1724189999,SSL client,18679,57044 +1724189999,Ubuntu Update Manager,23627,22270 +1724189999,Microsoft,5977,81879 +1724189999,VeriSign,1132,4282 +1724189999,Yandex,4619,18206 +1724189999,Ubuntu,7685,7180 +1724189999,Microsoft CryptoAPI,3813,6853 +1724189999,Microsoft NCSI,1160,1407 +1724189999,Microsoft WNS,633,8044 +1724189999,Google Hangouts,855,7033 +1724189999,ICMP,842,0 +1724189999,Edge Chromium,5270,13643 +1724189999,DNS over HTTPS,32482,101709 +1724190300,HTTPS,61799,43924 +1724190300,SSL client,61799,43924 +1724190300,Google Play,57354,35120 +1724190300,Sharepoint Online,4445,8804 +1724190300,Google,16398,33147 +1724190300,HTTPS,29920,47912 +1724190300,SSL client,16398,33147 +1724190300,HTTPS,52713,47309 +1724190300,SSL client,42210,36671 +1724190300,Google Play,42210,36671 +1724190300,__unknown,0,1359 +1724190300,Google APIs,2809,9158 +1724190300,OpenSSH,1236396274,16453404 +1724190300,SSH,1236396274,16453404 +1724190300,HTTPS,39054,105374 +1724190300,Avast,3498,25378 +1724190300,SSL client,30124,93421 +1724190300,Microsoft,12009,27981 +1724190300,Mail.Ru,3876,5418 +1724190300,Yandex,4049,8368 +1724190300,Office 365,1689,7788 +1724190300,GISMETEO,2194,9330 +1724190300,DNS over HTTPS,4331,11668 +1724190300,__unknown,45841,1262750 +1724190300,Bing,3351,6544 +1724190300,Google,44294,71682 +1724190300,HTTP,2916,2429 +1724190300,Advanced Packaging Tool,1876,1816 +1724190300,HTTPS,251156,560125 +1724190300,WhatsApp,1859,5921 +1724190300,Avast,3258,25482 +1724190300,SSL client,134534,349994 +1724190300,Ubuntu Update Manager,1349,1286 +1724190300,Microsoft,20600,31385 +1724190300,Mail.Ru,35604,26569 +1724190300,Yandex,10530,36198 +1724190300,Ubuntu,527,530 +1724190300,Microsoft NCSI,411,427 +1724190300,Office 365,16897,152134 +1724190300,Telegram,120,120 +1724190300,HTTPS,20118,29212 +1724190300,SSL client,20118,29212 +1724190300,DNS over HTTPS,20118,29212 +1724190300,__unknown,171,660 +1724190300,__unknown,13130,4860 +1724190300,SSL,5680,18753 +1724190300,HTTPS,86119,316338 +1724190300,Apple sites,18889,251340 +1724190300,SSL client,18889,251340 +1724190300,ICMP,1880,0 +1724190300,__unknown,875,6006 +1724190300,ICMP,3360,0 +1724190300,DNS over HTTPS,0,1390 +1724190300,__unknown,1962,1886 +1724190300,Gmail,30320,133432 +1724190300,HTTPS,75772,233982 +1724190300,SSL client,30320,133432 +1724190300,ICMP,540,0 +1724190300,Telegram,1758,1068 +1724190300,__unknown,326074,360848 +1724190300,BitTorrent,310,496 +1724190300,DHCPv6,978,0 +1724190300,Google APIs,44681,32524 +1724190300,Google,44141,117496 +1724190300,DNS,16564,0 +1724190300,HTTP,1776,1521 +1724190300,Microsoft Update,646,505 +1724190300,NetBIOS-dgm,243,0 +1724190300,NTP,13290,3540 +1724190300,HTTPS,130431,224338 +1724190300,SSL client,100546,174803 +1724190300,Google Adsense,2446,2522 +1724190300,Microsoft CryptoAPI,1776,1521 +1724190300,Google Play,2502,9162 +1724190300,ICMP,34712,1800 +1724190300,Google Sign in,4528,8149 +1724190300,DNS over HTTPS,11759,32951 +1724190300,__unknown,239001,403845 +1724190300,BitTorrent,153,198 +1724190300,DHCPv6,163,0 +1724190300,Google APIs,41073510,1040984 +1724190300,Google,10903,39047 +1724190300,BitTorrent tracker,153,198 +1724190300,DNS,49135,50725 +1724190300,HTTP,47945,69018 +1724190300,Launchpad,3200,2480 +1724190300,Microsoft Update,981,817 +1724190300,NTP,13560,3810 +1724190300,STUN,984,888 +1724190300,Advanced Packaging Tool,30100,27882 +1724190300,HTTPS,41170440,1233180 +1724190300,SSL client,41095162,1095345 +1724190300,Ubuntu Update Manager,22108,21090 +1724190300,Yandex,5212,16061 +1724190300,Ubuntu,6067,5695 +1724190300,Microsoft CryptoAPI,981,817 +1724190300,ICMP,5703,0 +1724190300,Telegram,3592,1262 +1724190300,Google Sign in,6224,4281 +1724190300,Edge Chromium,3462,11400 +1724190300,DNS over HTTPS,38208,124180 +1724190599,HTTPS,204410,72615 +1724190599,DNS over HTTPS,48076,108583 +1724190599,__unknown,642,0 +1724190599,Windows Live,71579,19218 +1724190599,HTTPS,135779,206397 +1724190599,SSL client,135779,206397 +1724190599,Microsoft,9731,125143 +1724190599,Telegram,54469,62036 +1724190599,HTTPS,25132,22719 +1724190599,SSL client,20909,18358 +1724190599,Google Play,20909,18358 +1724190599,__unknown,88148,87826 +1724190599,Dropbox,3342,2538 +1724190599,Google APIs,2491,8034 +1724190599,Google,8377,5424 +1724190599,Gmail,15897,15720 +1724190599,HTTP,2172,2731 +1724190599,HTTPS,117455,170649 +1724190599,Mozilla,1972,5151 +1724190599,Avast,2244,17930 +1724190599,SSL client,91774,134870 +1724190599,Microsoft,16315,33884 +1724190599,VeriSign,1147,1886 +1724190599,Mail.Ru,16735,12920 +1724190599,Yandex,10399,12869 +1724190599,Microsoft CryptoAPI,2172,2731 +1724190599,uTorrent,14002,20400 +1724190599,__unknown,14703,13380 +1724190599,HTTP,2859,5597 +1724190599,Microsoft Update,1280,3486 +1724190599,OpenSSH,180636,7534 +1724190599,SSH,180636,7534 +1724190599,Advanced Packaging Tool,1561,1430 +1724190599,HTTPS,228525,1508790 +1724190599,WhatsApp,3165,5622 +1724190599,Apple sites,10859,86340 +1724190599,iCloud,3622,8633 +1724190599,Avast,2244,16670 +1724190599,SSL client,138846,1053405 +1724190599,Ubuntu Update Manager,1561,1430 +1724190599,Microsoft,39354,291677 +1724190599,Mail.Ru,41381,31148 +1724190599,Yandex,32906,605984 +1724190599,Apple Maps,4734,14147 +1724190599,Microsoft Windows Live Services Authentication,7727,11477 +1724190599,ICMP,13038,0 +1724190599,Edge Chromium,527,2010 +1724190599,DNS over HTTPS,2788,11026 +1724190599,HTTPS,33455,40217 +1724190599,__unknown,368799,93205 +1724190599,Google,76202,51716 +1724190599,HTTPS,76202,51716 +1724190599,SSL client,76202,51716 +1724190599,Steam,2536,3792 +1724190599,HTTPS,16390,24862 +1724190599,SSL client,4810,10220 +1724190599,ICMP,10146,0 +1724190599,DNS over HTTPS,2274,6428 +1724190599,__unknown,837269,32292218 +1724190599,BitTorrent,310,496 +1724190599,Google APIs,36136,16658 +1724190599,Google,31612,209966 +1724190599,DNS,20872,0 +1724190599,HTTP,560,462 +1724190599,NTP,1350,1350 +1724190599,STUN,1860,3300 +1724190599,HTTPS,145869,372345 +1724190599,SSL client,75119,281712 +1724190599,Doubleclick,2960,42249 +1724190599,Microsoft CryptoAPI,560,462 +1724190599,ICMP,5551,0 +1724190599,Grammarly,2223,7888 +1724190599,DNS over HTTPS,2188,4951 +1724190599,__unknown,182370,160599 +1724190599,DHCPv6,978,0 +1724190599,Google APIs,2411,6686 +1724190599,Google,19176,49593 +1724190599,DNS,52076,46744 +1724190599,HTTP,48442,137463 +1724190599,Launchpad,1920,1488 +1724190599,NetBIOS-dgm,250,0 +1724190599,NTP,1080,1080 +1724190599,SSL,797,7093 +1724190599,STUN,984,888 +1724190599,Steam,5379,76757 +1724190599,Advanced Packaging Tool,29266,27041 +1724190599,HTTPS,164290,264250 +1724190599,Mozilla,2460,5186 +1724190599,SSL client,49773,102906 +1724190599,Ubuntu Update Manager,22015,20747 +1724190599,Microsoft,573,8045 +1724190599,Yandex,3707,13593 +1724190599,Ubuntu,6181,5724 +1724190599,Microsoft CryptoAPI,1296,990 +1724190599,Microsoft WNS,573,8045 +1724190599,Google Play,17433,12859 +1724190599,Google Hangouts,797,7093 +1724190599,ICMP,1248,0 +1724190599,Edge Chromium,2695,7522 +1724190599,DNS over HTTPS,31386,95649 +1724190899,DNS over HTTPS,196247,440795 +1724190899,Google APIs,2300,23037 +1724190899,HTTPS,74679,86008 +1724190899,SSL client,46109,64375 +1724190899,Yandex,3634,9420 +1724190899,Google Play,40175,31918 +1724190899,__unknown,1828,1103 +1724190899,Google,7871,10490 +1724190899,SSL,3250,6295 +1724190899,HTTPS,73366,141348 +1724190899,Avast,3498,25518 +1724190899,SSL client,49895,121444 +1724190899,Microsoft,18189,49531 +1724190899,Mail.Ru,6343,10188 +1724190899,uTorrent,10744,19422 +1724190899,Hola,3250,6295 +1724190899,DNS over HTTPS,8789,21804 +1724190899,__unknown,3704553,1720765 +1724190899,Bing,1867,9389 +1724190899,Dropbox,10104,6305 +1724190899,Google,995,4567 +1724190899,OpenVPN,0,807 +1724190899,SSL,4130,1276 +1724190899,Odnoklassniki,5520,9817 +1724190899,HTTPS,729136,1784674 +1724190899,Avast,1644,6259 +1724190899,SSL client,132386,169348 +1724190899,Amazon Web Services,3505,21542 +1724190899,CloudFront,6147,1093 +1724190899,Microsoft,27393,33768 +1724190899,Mail.Ru,54077,39411 +1724190899,Yandex,843,5184 +1724190899,Exchange Online,1329,6451 +1724190899,Microsoft Windows Live Services Authentication,6450,15614 +1724190899,Grammarly,12512,9948 +1724190899,DNS over HTTPS,5715,24545 +1724190899,__unknown,169378,177755 +1724190899,HTTPS,6944728,1519580 +1724190899,SSL client,6944728,1519580 +1724190899,Google Play,6944728,1519580 +1724190899,DNS over HTTPS,305606,704030 +1724190899,__unknown,187,228 +1724190899,Google,3288126,1295368 +1724190899,HTTPS,3288126,1295368 +1724190899,SSL client,3288126,1295368 +1724190899,HTTPS,9829,12831 +1724190899,__unknown,120403,43424 +1724190899,DNS over HTTPS,24981,57766 +1724190899,__unknown,2027,1460 +1724190899,ICMP,8588,0 +1724190899,Telegram,1547,1072 +1724190899,__unknown,320125,453058 +1724190899,BITS,1215,852 +1724190899,BitTorrent,310,496 +1724190899,DHCPv6,163,0 +1724190899,Google APIs,2517,7545 +1724190899,Google,9674,28783 +1724190899,Chrome,1275,869 +1724190899,DNS,21521,0 +1724190899,Gmail,16306,15329 +1724190899,HTTP,3731,3343 +1724190899,Microsoft Update,641,645 +1724190899,NetBIOS-dgm,243,0 +1724190899,NTP,36720,7470 +1724190899,VKontakte,2623,5737 +1724190899,Odnoklassniki,5582,10620 +1724190899,HTTPS,90603,159129 +1724190899,SSL client,49629,88467 +1724190899,Yandex,1215,852 +1724190899,Microsoft CryptoAPI,1241,1622 +1724190899,ICMP,6045,0 +1724190899,Google Sign in,10764,12566 +1724190899,Grammarly,2163,7887 +1724190899,DNS over HTTPS,4386,10942 +1724190899,__unknown,231346,512295 +1724190899,BitTorrent,153,537 +1724190899,Google APIs,22479,36933 +1724190899,Google,13325,63690 +1724190899,BitTorrent tracker,153,537 +1724190899,DNS,49837,47180 +1724190899,HTTP,55628,75690 +1724190899,Internet Explorer,762,660 +1724190899,Launchpad,3200,2480 +1724190899,Microsoft Update,2995,2895 +1724190899,NTP,540,540 +1724190899,STUN,2926,4262 +1724190899,Odnoklassniki,2947,7859 +1724190899,Advanced Packaging Tool,30823,28107 +1724190899,HTTPS,184425,416606 +1724190899,SSL client,74439,158239 +1724190899,Ubuntu Update Manager,21070,19725 +1724190899,Yandex,11258,37266 +1724190899,Ubuntu,7404,6820 +1724190899,Microsoft CryptoAPI,5939,5437 +1724190899,Google Play,18714,11579 +1724190899,ICMP,892,0 +1724190899,Telegram,2579,862 +1724190899,Google Sign in,6224,4139 +1724190899,Edge Chromium,7798,23592 +1724190899,DNS over TLS,1157,4868 +1724190899,DNS over HTTPS,41946,143986 +1724191199,__unknown,30600,33891 +1724191199,Google,132866,158938 +1724191199,HTTPS,132866,158938 +1724191199,SSL client,132866,158938 +1724191199,HTTPS,120392,24434 +1724191199,HTTPS,204887,77465 +1724191199,Google APIs,2027,7238 +1724191199,OpenSSH,2622600914,33680332 +1724191199,SSH,2622600914,33680332 +1724191199,HTTPS,29845,31263 +1724191199,SSL client,23248,25271 +1724191199,Google Play,21221,18033 +1724191199,Google,19830,23064 +1724191199,Gmail,5956,3908 +1724191199,HTTPS,120671,159203 +1724191199,Mozilla,4234,10242 +1724191199,Avast,2376,18205 +1724191199,SSL client,70289,96809 +1724191199,Microsoft,14451,29501 +1724191199,Mail.Ru,3998,1898 +1724191199,Google Play,19444,9991 +1724191199,__unknown,11063,22917 +1724191199,Dell,1111,4305 +1724191199,HTTP,1060,1023 +1724191199,Microsoft Update,95196,281313 +1724191199,SSL,1482,1392 +1724191199,Odnoklassniki,9200,16955 +1724191199,Advanced Packaging Tool,635,566 +1724191199,HTTPS,461132,1661012 +1724191199,WhatsApp,1799,5943 +1724191199,Avast,3498,24960 +1724191199,SSL client,270231,802504 +1724191199,Amazon Web Services,5158,28767 +1724191199,Microsoft,33394,72028 +1724191199,Mail.Ru,71976,51918 +1724191199,Yandex,26146,59680 +1724191199,Ubuntu,1060,1023 +1724191199,Office 365,23070,261186 +1724191199,Google Hangouts,1482,1392 +1724191199,DNS over HTTPS,2366,7458 +1724191199,HTTPS,19546,28049 +1724191199,SSL client,19546,28049 +1724191199,DNS over HTTPS,19546,28049 +1724191199,__unknown,461,180 +1724191199,__unknown,9922,203372 +1724191199,__unknown,2733,37492 +1724191199,Google,17367,20134 +1724191199,Windows Live,8464,29081 +1724191199,HTTPS,38786,69081 +1724191199,SSL client,25831,49215 +1724191199,ICMP,820,0 +1724191199,Telegram,1263,548 +1724191199,__unknown,277,1864 +1724191199,HTTPS,30600,20710 +1724191199,Avast,7561,2841 +1724191199,SSL client,7561,2841 +1724191199,ICMP,1496,0 +1724191199,__unknown,372512,694276 +1724191199,BitTorrent,310,496 +1724191199,DHCPv6,978,0 +1724191199,Google APIs,2246,7092 +1724191199,Google,41386,85544 +1724191199,DNS,19164,0 +1724191199,Gmail,8694,15430 +1724191199,NTP,25320,5820 +1724191199,STUN,1860,3300 +1724191199,HTTPS,134702,229415 +1724191199,SSL client,55827,113908 +1724191199,Yandex,1253,907 +1724191199,ICMP,3640,0 +1724191199,ICMP for IPv6,140,0 +1724191199,DNS over HTTPS,11059,31287 +1724191199,__unknown,189855,509447 +1724191199,Apple Update,3545,11478 +1724191199,DHCPv6,163,0 +1724191199,Google APIs,1880,6434 +1724191199,Google,11994,28399 +1724191199,QQ,414,1584 +1724191199,DNS,53762,48864 +1724191199,HTTP,52746,64790 +1724191199,Launchpad,3200,2480 +1724191199,Microsoft Update,3245,2637 +1724191199,NTP,1710,1710 +1724191199,SSL,1710,14063 +1724191199,STUN,984,888 +1724191199,VKontakte,2682,5852 +1724191199,Advanced Packaging Tool,31077,28463 +1724191199,HTTPS,114219,220207 +1724191199,Mozilla,2816,5802 +1724191199,SSL client,53517,120337 +1724191199,Ubuntu Update Manager,23720,22237 +1724191199,Yandex,4999,20257 +1724191199,Ubuntu,5857,5582 +1724191199,Microsoft Azure,817,339 +1724191199,Microsoft CryptoAPI,5566,4609 +1724191199,Google Play,17315,13489 +1724191199,Google Hangouts,855,7032 +1724191199,ICMP,2069,0 +1724191199,Telegram,4084,8195 +1724191199,DNS over TLS,3221,14351 +1724191199,DNS over HTTPS,50544,170035 +1724191500,__unknown,313418,276587 +1724191500,DNS over HTTPS,151166,286078 +1724191500,HTTPS,126772,172938 +1724191500,__unknown,1608,0 +1724191500,HTTPS,107478,134570 +1724191500,SSL client,107478,134570 +1724191500,Telegram,107478,134570 +1724191500,__unknown,150797,3384541 +1724191500,HTTPS,54409,62102 +1724191500,SSL client,54409,62102 +1724191500,Telegram,54409,62102 +1724191500,__unknown,18407,2831 +1724191500,HTTPS,5235,13887 +1724191500,SSL client,2821,12101 +1724191500,Google Play,2821,12101 +1724191500,__unknown,21346,12283 +1724191500,Google,8439,5172 +1724191500,HTTPS,91024,207129 +1724191500,Avast,4692,35696 +1724191500,SSL client,65191,168043 +1724191500,Microsoft,14755,43331 +1724191500,Mail.Ru,10466,7021 +1724191500,Yandex,6959,8165 +1724191500,Google Play,15131,10867 +1724191500,Office 365,1749,7788 +1724191500,Microsoft Teams,3000,50003 +1724191500,__unknown,1218188,2574274 +1724191500,Bing,3350,6482 +1724191500,Dropbox,8567,223547 +1724191500,MSN,6493,39474 +1724191500,Dell,1051,4309 +1724191500,HTTP,4022,4941 +1724191500,iTunes,2040,6578 +1724191500,Launchpad,640,496 +1724191500,Skype,5929,89234 +1724191500,Odnoklassniki,9200,16955 +1724191500,Advanced Packaging Tool,3206,3134 +1724191500,HTTPS,316439,1169441 +1724191500,WhatsApp,3222,5682 +1724191500,Apple sites,2044,9627 +1724191500,Bing Maps,8725,174282 +1724191500,Mozilla,13623,15108 +1724191500,Avast,5508,29352 +1724191500,SSL client,200604,848822 +1724191500,Ubuntu Update Manager,2566,2638 +1724191500,Microsoft,57269,61226 +1724191500,Mail.Ru,38480,45719 +1724191500,Yandex,16997,35292 +1724191500,GitHub,1592,5976 +1724191500,Rambler,15717,8573 +1724191500,Office 365,4019,77088 +1724191500,Telegram,120,120 +1724191500,Edge Chromium,527,1298 +1724191500,DNS over HTTPS,8447,45260 +1724191500,ICMP,3784,0 +1724191500,DNS over HTTPS,12729,34256 +1724191500,__unknown,8522,9805 +1724191500,HTTPS,29276,12166 +1724191500,__unknown,23909,22577 +1724191500,HTTPS,137202,63377 +1724191500,SSL client,137202,63377 +1724191500,Google Play,137202,63377 +1724191500,__unknown,144,78 +1724191500,HTTPS,7662,30805 +1724191500,ICMP,1440,1440 +1724191500,DNS over HTTPS,18539,45444 +1724191500,__unknown,388447,727518 +1724191500,BitTorrent,310,496 +1724191500,Google APIs,5729,18444 +1724191500,Google,63008,152700 +1724191500,DNS,20700,0 +1724191500,Gmail,16078,15083 +1724191500,NetBIOS-dgm,250,0 +1724191500,NTP,13110,3360 +1724191500,STUN,1860,3300 +1724191500,Odnoklassniki,3067,8205 +1724191500,HTTPS,165024,300232 +1724191500,SSL client,89135,195339 +1724191500,Yandex,1253,907 +1724191500,ICMP,5302,0 +1724191500,__unknown,175880,443489 +1724191500,BitTorrent,153,198 +1724191500,DHCPv6,978,0 +1724191500,Google APIs,2350,6747 +1724191500,Google,19295,89003 +1724191500,BitTorrent tracker,153,198 +1724191500,DNS,62070,53466 +1724191500,HTTP,612026,16180581 +1724191500,Launchpad,3274,2480 +1724191500,Microsoft Update,1284,1010 +1724191500,NetBIOS-dgm,243,0 +1724191500,NTP,26310,6810 +1724191500,STUN,2844,4188 +1724191500,Advanced Packaging Tool,32481,30099 +1724191500,HTTPS,178628,389081 +1724191500,Mozilla,2875,5740 +1724191500,SSL client,67864,153039 +1724191500,Ubuntu Update Manager,23636,22435 +1724191500,Microsoft,569232,16133553 +1724191500,Yandex,1987,10602 +1724191500,Ubuntu,7696,7489 +1724191500,Microsoft CryptoAPI,2160,1750 +1724191500,Microsoft NCSI,1100,1106 +1724191500,Google Play,37041,30987 +1724191500,ICMP,1950,0 +1724191500,DNS over HTTPS,39235,124385 +1724191800,DNS over HTTPS,27463,71826 +1724191800,HTTPS,559752,139645 +1724191800,SSL client,559752,139645 +1724191800,Mail.Ru,559752,139645 +1724191800,Gmail,6516,14589 +1724191800,IMAPS,6516,14589 +1724191800,SSL client,6516,14589 +1724191800,HTTPS,4134,6380 +1724191800,SSL client,4134,6380 +1724191800,Sharepoint Online,4134,6380 +1724191800,HTTPS,30013,8760 +1724191800,SSL client,30013,8760 +1724191800,Microsoft,30013,8760 +1724191800,HTTPS,34689,16956 +1724191800,SSL client,28060,10699 +1724191800,Yandex,26614,4630 +1724191800,Google Play,1446,6069 +1724191800,__unknown,2784,9306 +1724191800,Dropbox,2705,1343 +1724191800,Windows Live,31035,11965 +1724191800,Gmail,6071,3490 +1724191800,TeamViewer,20945,33953 +1724191800,Steam,9807,21258 +1724191800,HTTPS,216505,278641 +1724191800,Mozilla,16240,48529 +1724191800,Avast,3438,25170 +1724191800,SSL client,126191,224595 +1724191800,Microsoft,30576,66434 +1724191800,Yandex,3998,5993 +1724191800,Apple Maps,2846,6484 +1724191800,Office 365,1749,7788 +1724191800,GISMETEO,2074,9391 +1724191800,DNS over HTTPS,25756,41599 +1724191800,__unknown,36375,107681 +1724191800,Google APIs,2727,8520 +1724191800,Google,472847,345801 +1724191800,Windows Live,5206,7254 +1724191800,Adobe Software,1592,10212 +1724191800,Google Analytics,2396,6439 +1724191800,HTTPS,785377,911649 +1724191800,Apple sites,5210,22123 +1724191800,Mozilla,2450,9148 +1724191800,SSL client,669988,640562 +1724191800,CloudFront,8472,2960 +1724191800,Microsoft,28106,58068 +1724191800,Mail.Ru,84944,65516 +1724191800,Yandex,5507,14276 +1724191800,Apple Maps,10913,40210 +1724191800,Office 365,6790,30061 +1724191800,Microsoft Windows Live Services Authentication,31195,50397 +1724191800,Grammarly,12546,9787 +1724191800,DNS over HTTPS,4438,15429 +1724191800,HTTPS,45885,63958 +1724191800,SSL client,45885,63958 +1724191800,Telegram,45885,63958 +1724191800,__unknown,1382,540 +1724191800,CoAP,7056,5184 +1724191800,HTTPS,165339,161759 +1724191800,SSL client,165339,161759 +1724191800,Google Play,59226,32301 +1724191800,Telegram,106113,129458 +1724191800,ICMP,940,0 +1724191800,__unknown,10019,202146 +1724191800,ICMP,2068,0 +1724191800,__unknown,960,1708 +1724191800,HTTPS,6930,18515 +1724191800,ICMP,4712,3960 +1724191800,__unknown,381763,751902 +1724191800,BitTorrent,310,496 +1724191800,DHCPv6,163,0 +1724191800,Google APIs,35244,15111 +1724191800,Google,28414,76067 +1724191800,DNS,22028,0 +1724191800,HTTP,5301,26013 +1724191800,NTP,1980,1980 +1724191800,VKontakte,2743,5967 +1724191800,Odnoklassniki,3007,8206 +1724191800,HTTPS,165967,194241 +1724191800,SSL client,119464,134825 +1724191800,Microsoft,3303,24751 +1724191800,Atlassian,45571,18290 +1724191800,Microsoft CryptoAPI,2982,6178 +1724191800,Google Play,1253,1318 +1724191800,ICMP,3971,0 +1724191800,DNS over HTTPS,30564,82872 +1724191800,__unknown,157632,392453 +1724191800,DHCPv6,978,0 +1724191800,Google APIs,5479,14233 +1724191800,Google Drive,23608,115470 +1724191800,Google,10122,62881 +1724191800,DNS,54378,48467 +1724191800,HTTP,55968,101062 +1724191800,Internet Explorer,6280,2100 +1724191800,Launchpad,3200,2480 +1724191800,Microsoft Update,1928,1514 +1724191800,NTP,2340,2340 +1724191800,SSL,797,7093 +1724191800,STUN,984,888 +1724191800,Steam,2211,25215 +1724191800,Advanced Packaging Tool,27306,24866 +1724191800,HTTPS,143580,352824 +1724191800,Apple sites,1868,4444 +1724191800,SSL client,75771,247872 +1724191800,Ubuntu Update Manager,19805,18532 +1724191800,Microsoft,1326,15894 +1724191800,Mail.Ru,8542,9730 +1724191800,Yandex,9928,13302 +1724191800,Ubuntu,6001,5694 +1724191800,Microsoft CryptoAPI,8748,11325 +1724191800,Microsoft WNS,1326,15894 +1724191800,Google Play,17331,12934 +1724191800,Google Hangouts,797,7093 +1724191800,ICMP,1507,0 +1724191800,Telegram,3805,8197 +1724191800,Edge Chromium,2635,6822 +1724191800,DNS over HTTPS,40328,131358 +1724192101,ICMP,42240,42360 +1724192101,__unknown,1522,2090 +1724192101,HTTPS,8303,12766 +1724192101,SSL client,8303,12766 +1724192101,Sharepoint Online,8303,12766 +1724192101,HTTPS,34388,33361 +1724192101,__unknown,13242,1452 +1724192101,MSN,2069,13014 +1724192101,Skype,2654,14095 +1724192101,HTTPS,73424,221523 +1724192101,Mozilla,2475,1798 +1724192101,Avast,3498,25438 +1724192101,SSL client,28933,97149 +1724192101,Microsoft,4292,10918 +1724192101,Mail.Ru,3876,5419 +1724192101,Yandex,4949,8401 +1724192101,Office 365,3181,15132 +1724192101,GISMETEO,1939,2934 +1724192101,__unknown,9628,8949 +1724192101,Bing,5479,15809 +1724192101,Google APIs,2726,12021 +1724192101,Google,1319,1700 +1724192101,HTTP,3145,2644 +1724192101,Microsoft Update,274066,756076 +1724192101,Advanced Packaging Tool,1621,1490 +1724192101,HTTPS,524688,1649770 +1724192101,WhatsApp,1919,5981 +1724192101,iCloud,5539,8991 +1724192101,Bing Maps,1417,8805 +1724192101,Avast,5646,39161 +1724192101,SSL client,395042,1031502 +1724192101,Amazon Web Services,3385,21602 +1724192101,Ubuntu Update Manager,1621,1490 +1724192101,Microsoft,38769,76397 +1724192101,Mail.Ru,33328,25772 +1724192101,Yandex,5527,15772 +1724192101,GitHub,1592,5988 +1724192101,Office 365,9295,32807 +1724192101,Microsoft Windows Live Services Authentication,7681,11569 +1724192101,Telegram,1358,547 +1724192101,DNS over HTTPS,5043,19649 +1724192101,__unknown,923,520 +1724192101,Google,60420,41627 +1724192101,HTTPS,410633,706606 +1724192101,SSL client,60420,41627 +1724192101,__unknown,1203,508 +1724192101,HTTPS,4958,14138 +1724192101,Apple sites,1659,8753 +1724192101,SSL client,1659,8753 +1724192101,__unknown,144,4248 +1724192101,Google,10998,19706 +1724192101,Gmail,47418,34992 +1724192101,HTTPS,69999,75039 +1724192101,SSL client,58416,54698 +1724192101,ICMP,1066,0 +1724192101,__unknown,311851,321446 +1724192101,BITS,6688,81486 +1724192101,BitTorrent,310,496 +1724192101,DHCPv6,163,0 +1724192101,Google APIs,14463,88726 +1724192101,Google Drive,26277,15444 +1724192101,Google,30206,57646 +1724192101,DNS,19367,364 +1724192101,HTTP,7859,82516 +1724192101,NTP,2340,2340 +1724192101,STUN,3844,6380 +1724192101,Steam,585,527 +1724192101,HTTPS,119049,240914 +1724192101,SSL client,90544,186974 +1724192101,Microsoft,6688,81486 +1724192101,Yandex,1313,907 +1724192101,Microsoft CryptoAPI,586,503 +1724192101,Google Play,12052,19721 +1724192101,ICMP,2650,0 +1724192101,Google Sign in,6233,4530 +1724192101,DNS over HTTPS,23258,62329 +1724192101,__unknown,255278,297791 +1724192101,BITS,12948,443756 +1724192101,BitTorrent,153,537 +1724192101,Google APIs,5464,14513 +1724192101,Google,8212,22873 +1724192101,BitTorrent tracker,153,537 +1724192101,Chrome,7547,9153 +1724192101,DNS,53949,50939 +1724192101,Firefox,822,1129 +1724192101,HTTP,568961,47725812 +1724192101,Internet Explorer,595,1061 +1724192101,Kerberos,155,0 +1724192101,Launchpad,2626,1984 +1724192101,Microsoft Update,497432,47203592 +1724192101,NetBIOS-dgm,250,0 +1724192101,NTP,13290,3540 +1724192101,STUN,1066,962 +1724192101,Steam,585,527 +1724192101,Advanced Packaging Tool,28338,25901 +1724192101,HTTPS,149757,237260 +1724192101,Mozilla,4382,5969 +1724192101,SSL client,62405,129841 +1724192101,Ubuntu Update Manager,20920,19605 +1724192101,Yandex,6993,35523 +1724192101,Ubuntu,6067,5691 +1724192101,Microsoft CryptoAPI,3527,2935 +1724192101,Microsoft NCSI,985,974 +1724192101,Google Play,37271,52342 +1724192101,ICMP,2244,0 +1724192101,Telegram,2436,942 +1724192101,Edge Chromium,5043,15544 +1724192101,DNS over HTTPS,39550,124363 +1724192401,HTTPS,347739,94481 +1724192401,__unknown,45557,64743 +1724192401,HTTPS,91064,127904 +1724192401,SSL client,91064,127904 +1724192401,Telegram,91064,127904 +1724192401,ICMP,22176,0 +1724192401,HTTPS,53937,61976 +1724192401,SSL client,53937,61976 +1724192401,Telegram,53937,61976 +1724192401,HTTPS,148380,101230 +1724192401,SSL client,148380,101230 +1724192401,Google Play,148380,101230 +1724192401,__unknown,6797,2858 +1724192401,HTTPS,83057,151658 +1724192401,Mozilla,2467,1772 +1724192401,Avast,3564,27265 +1724192401,SSL client,24871,84231 +1724192401,Microsoft,10010,26507 +1724192401,Mail.Ru,3816,5419 +1724192401,Yandex,1131,6091 +1724192401,Office 365,1689,7788 +1724192401,GISMETEO,2194,9389 +1724192401,__unknown,11066,20378 +1724192401,Google APIs,6927,14656 +1724192401,Google,1489879,619904 +1724192401,HTTP,4341,10370 +1724192401,Microsoft Update,2764,7132 +1724192401,Skype,5781,23527 +1724192401,Steam,12600,20053 +1724192401,HTTPS,1775462,1648918 +1724192401,WhatsApp,3222,5622 +1724192401,Apple sites,2229,4755 +1724192401,Mozilla,5536,2138 +1724192401,Avast,1122,9065 +1724192401,SSL client,1618922,857382 +1724192401,Amazon Web Services,3199,21490 +1724192401,Microsoft,27974,48495 +1724192401,Mail.Ru,44230,36839 +1724192401,Yandex,8986,17551 +1724192401,Google Update,4341,10370 +1724192401,Office 365,7695,31777 +1724192401,__unknown,187,228 +1724192401,Google,15358,17564 +1724192401,HTTPS,15358,17564 +1724192401,SSL client,15358,17564 +1724192401,__unknown,927,552 +1724192401,Google,42462,27204 +1724192401,Gmail,129378,158658 +1724192401,SSL,5585,18381 +1724192401,HTTPS,176073,192905 +1724192401,SSL client,171840,185862 +1724192401,HTTPS,7548,8684 +1724192401,ICMP,1560,0 +1724192401,__unknown,16209,10069 +1724192401,Google,54585,45599 +1724192401,HTTPS,54585,45599 +1724192401,SSL client,54585,45599 +1724192401,ICMP,450,0 +1724192401,DNS over HTTPS,8920,23882 +1724192401,CoAP,1568,1152 +1724192401,__unknown,357665,685184 +1724192401,BitTorrent,310,496 +1724192401,Google APIs,18436,31637 +1724192401,Google Drive,6039,9917 +1724192401,Google,121270,876054 +1724192401,DNS,21562,0 +1724192401,Gmail,5596,7986 +1724192401,HTTP,1953,8114 +1724192401,NetBIOS-dgm,243,0 +1724192401,NTP,25950,6450 +1724192401,Odnoklassniki,3067,8162 +1724192401,HTTPS,252778,1099805 +1724192401,Mozilla,5373,3451 +1724192401,SSL client,180640,993641 +1724192401,Microsoft,1953,8114 +1724192401,Mail.Ru,7172,27874 +1724192401,Yandex,5041,3699 +1724192401,Google Play,4568,9504 +1724192401,ICMP,3546,0 +1724192401,Grammarly,4078,15357 +1724192401,DNS over HTTPS,4820,15827 +1724192401,__unknown,281262,557012 +1724192401,DHCPv6,1141,0 +1724192401,Google APIs,2351,6747 +1724192401,Google,12377,20856 +1724192401,DNS,53967,48301 +1724192401,HTTP,2883523,330926013 +1724192401,Launchpad,3340,2554 +1724192401,NTP,990,990 +1724192401,Skype,1149,6910 +1724192401,SSL,789,7032 +1724192401,Advanced Packaging Tool,29429,27020 +1724192401,HTTPS,210568,247613 +1724192401,Apple sites,2033,7171 +1724192401,iCloud,4120,8649 +1724192401,SSL client,32558,113746 +1724192401,Ubuntu Update Manager,21932,20720 +1724192401,Microsoft,2833835,330858768 +1724192401,Yandex,10673,63341 +1724192401,Ubuntu,5989,5578 +1724192401,Microsoft CryptoAPI,4431,3734 +1724192401,Microsoft NCSI,1542,1461 +1724192401,Microsoft WNS,633,7948 +1724192401,Google Hangouts,789,7032 +1724192401,ICMP,1694,0 +1724192401,Edge Chromium,5750,18839 +1724192401,DNS over HTTPS,27757,89434 +1724192700,HTTP,717282,493033 +1724192700,HTTPS,292917,363857 +1724192700,HTTPS,3090,3895 +1724192700,HTTPS,21415,8220 +1724192700,SSL client,21415,8220 +1724192700,Microsoft,21415,8220 +1724192700,DNS over HTTPS,19282,43517 +1724192700,__unknown,1479,0 +1724192700,HTTP,668,2109 +1724192700,Microsoft Update,668,2109 +1724192700,HTTPS,20689,26032 +1724192700,SSL client,2148,8628 +1724192700,Microsoft,2148,8628 +1724192700,Google APIs,4044,28275 +1724192700,Google,3357,7925 +1724192700,HTTPS,75827,137411 +1724192700,Avast,3498,25600 +1724192700,SSL client,33004,92682 +1724192700,Microsoft,4242,7450 +1724192700,Mail.Ru,3876,5419 +1724192700,Google Play,11787,8336 +1724192700,GISMETEO,2200,9677 +1724192700,__unknown,9654,16731 +1724192700,Google APIs,2680,9155 +1724192700,Gmail,7161,12235 +1724192700,HTTP,3914,2775 +1724192700,Microsoft Update,2028,1396 +1724192700,Skype,2522,8217 +1724192700,Advanced Packaging Tool,1274,1193 +1724192700,IMAPS,7161,12235 +1724192700,HTTPS,267046,677424 +1724192700,Bing Maps,2748,19046 +1724192700,SSL client,172138,223455 +1724192700,CloudFront,6206,1093 +1724192700,Ubuntu Update Manager,1274,1193 +1724192700,Microsoft,45765,58181 +1724192700,Mail.Ru,52737,48500 +1724192700,Yandex,3926,6754 +1724192700,GitHub,1592,6065 +1724192700,Microsoft CryptoAPI,2028,1396 +1724192700,Apple Maps,2978,6588 +1724192700,Google Play,34558,20873 +1724192700,Office 365,4513,21767 +1724192700,Microsoft Windows Live Services Authentication,7730,11569 +1724192700,Telegram,120,120 +1724192700,DNS over HTTPS,5429,24778 +1724192700,ICMP,43296,0 +1724192700,HTTPS,60304,38202 +1724192700,__unknown,2387,1984 +1724192700,HTTP,2414,1851 +1724192700,HTTPS,49416,26032 +1724192700,SSL client,49416,26032 +1724192700,Google Play,49416,26032 +1724192700,Telegram,1823,1168 +1724192700,__unknown,421,322 +1724192700,Google,4967,10184 +1724192700,Gmail,32097,69694 +1724192700,HTTPS,37064,79878 +1724192700,SSL client,37064,79878 +1724192700,ICMP,1312,0 +1724192700,__unknown,425192,351100 +1724192700,BitTorrent,310,496 +1724192700,Google APIs,3326,7799 +1724192700,Google,24718,50947 +1724192700,Skype Auth,700,472 +1724192700,DNS,23576,0 +1724192700,Gmail,30472,75882 +1724192700,NTP,24490,5526 +1724192700,Skype,700,472 +1724192700,STUN,1066,962 +1724192700,Odnoklassniki,3007,8161 +1724192700,HTTPS,118025,232501 +1724192700,SSL client,87924,161317 +1724192700,Microsoft,2114,3665 +1724192700,Google Play,24287,14863 +1724192700,ICMP,2068,0 +1724192700,DNS over HTTPS,12506,40489 +1724192700,CoAP,1372,1008 +1724192700,__unknown,185109,556517 +1724192700,BitTorrent,153,198 +1724192700,DHCPv6,978,0 +1724192700,Google,158521,55765 +1724192700,BitTorrent tracker,153,198 +1724192700,DNS,50789,47417 +1724192700,HTTP,64271,439091 +1724192700,Internet Explorer,822,660 +1724192700,Launchpad,3200,2480 +1724192700,Microsoft Update,1959,1631 +1724192700,NTP,19640,4005 +1724192700,STUN,1984,3300 +1724192700,Steam,78,86 +1724192700,Advanced Packaging Tool,38797,394268 +1724192700,HTTPS,313142,283249 +1724192700,Avast,977,11912 +1724192700,SSL client,172733,93041 +1724192700,Ubuntu Update Manager,30805,387476 +1724192700,Yandex,13730,30165 +1724192700,Ubuntu,6558,6140 +1724192700,Microsoft CryptoAPI,2775,2370 +1724192700,Microsoft NCSI,520,619 +1724192700,ICMP,1345,0 +1724192700,Telegram,2408,846 +1724192700,Edge Chromium,7798,23596 +1724192700,DNS over HTTPS,52156,166879 +1724192999,__unknown,1222,1874 +1724192999,HTTPS,98034,308671 +1724192999,SSL client,98034,308671 +1724192999,Yandex,98034,308671 +1724192999,HTTPS,27424,41284 +1724192999,HTTPS,3694,1706 +1724192999,__unknown,243063,1775310 +1724192999,HTTPS,23872,14933 +1724192999,Telegram,243063,1775310 +1724192999,HTTPS,20713,24901 +1724192999,SSL client,5195,7898 +1724192999,Microsoft,5195,7898 +1724192999,__unknown,7957,14016 +1724192999,HTTP,611,636 +1724192999,Microsoft Update,611,636 +1724192999,HTTPS,96045,100297 +1724192999,Mozilla,2338,5191 +1724192999,Avast,2244,17162 +1724192999,SSL client,70866,73925 +1724192999,Microsoft,6354,18287 +1724192999,Mail.Ru,6305,5840 +1724192999,Microsoft CryptoAPI,611,636 +1724192999,Google Play,49937,13986 +1724192999,Office 365,1749,10574 +1724192999,GISMETEO,1939,2885 +1724192999,__unknown,14290,10854 +1724192999,Bing,3730,6484 +1724192999,Google APIs,5318,6787 +1724192999,Google,195731,265927 +1724192999,Dell,1111,4308 +1724192999,HTTP,1173,1543 +1724192999,SSL,1743,3593 +1724192999,TwitchTV,6534,7221 +1724192999,Advanced Packaging Tool,635,566 +1724192999,HTTPS,499130,1374908 +1724192999,WhatsApp,3122,10372 +1724192999,Bing Maps,6146,178785 +1724192999,Mozilla,2124,5091 +1724192999,Avast,6961,36828 +1724192999,SSL client,395995,1098062 +1724192999,Microsoft,21296,46358 +1724192999,Mail.Ru,48708,37697 +1724192999,Yandex,14014,41021 +1724192999,Ubuntu,635,566 +1724192999,Microsoft CryptoAPI,538,977 +1724192999,Office 365,24013,342032 +1724192999,Microsoft Windows Live Services Authentication,45996,105862 +1724192999,Google Hangouts,1743,3593 +1724192999,Grammarly,12570,10068 +1724192999,DNS over HTTPS,935,4585 +1724192999,__unknown,32162,26138 +1724192999,HTTPS,9638,13518 +1724192999,SSL client,9638,13518 +1724192999,ICMP,3182,0 +1724192999,DNS over HTTPS,9638,13518 +1724192999,__unknown,2194,1064 +1724192999,ICMP,9542,8580 +1724192999,__unknown,5920,15326 +1724192999,Google,5251,10249 +1724192999,HTTPS,18323,31265 +1724192999,SSL client,5251,10249 +1724192999,ICMP,328,0 +1724192999,__unknown,268845,281150 +1724192999,BitTorrent,310,496 +1724192999,DHCPv6,163,0 +1724192999,Google APIs,109346,65635 +1724192999,Google,60239,116387 +1724192999,DNS,21079,0 +1724192999,Gmail,7059,8237 +1724192999,NetBIOS-dgm,250,0 +1724192999,NTP,5590,1725 +1724192999,STUN,1066,962 +1724192999,Odnoklassniki,2948,8146 +1724192999,HTTPS,211078,239005 +1724192999,SSL client,179592,198405 +1724192999,ICMP,3313,0 +1724192999,DNS over HTTPS,12824,43597 +1724192999,__unknown,253794,296582 +1724192999,Google APIs,4881,13492 +1724192999,Google,23494,49103 +1724192999,Kaspersky,509,537 +1724192999,DNS,50048,44915 +1724192999,HTTP,56009,65051 +1724192999,Launchpad,3266,2480 +1724192999,Microsoft Update,1934,1503 +1724192999,NetBIOS-dgm,243,0 +1724192999,NTP,1980,1980 +1724192999,SSL,4065,23061 +1724192999,Advanced Packaging Tool,29128,26517 +1724192999,HTTPS,120508,235964 +1724192999,Apple sites,614,550 +1724192999,Mozilla,2875,4971 +1724192999,SSL client,65183,131953 +1724192999,Ubuntu Update Manager,21070,19725 +1724192999,Yandex,6545,24756 +1724192999,Ubuntu,7127,6605 +1724192999,Microsoft CryptoAPI,7619,6333 +1724192999,Google Play,22527,23002 +1724192999,Google Hangouts,797,7093 +1724192999,ICMP,2370,0 +1724192999,Telegram,7520,9668 +1724192999,Edge Chromium,3689,9551 +1724192999,DNS over HTTPS,37577,124120 +1724193299,HTTPS,1588408,1928562 +1724193299,SSL client,5492,8446 +1724193299,Sharepoint Online,5492,8446 +1724193299,HTTPS,628857,56389 +1724193299,__unknown,17400,26708 +1724193299,HTTPS,19520,23870 +1724193299,SSL client,19520,23870 +1724193299,Yandex,19520,23870 +1724193299,HTTPS,57119,73277 +1724193299,Google,33954,41928 +1724193299,HTTPS,33954,41928 +1724193299,SSL client,33954,41928 +1724193299,Google APIs,3462,12823 +1724193299,HTTPS,9026,20673 +1724193299,SSL client,3462,12823 +1724193299,Google APIs,2302,6197 +1724193299,HTTPS,62451,62306 +1724193299,SSL client,37123,36430 +1724193299,Google Play,34821,30233 +1724193299,__unknown,3476,6420 +1724193299,Google APIs,5884,18968 +1724193299,HTTPS,141221,238765 +1724193299,Mozilla,11986,5983 +1724193299,Avast,2244,16456 +1724193299,SSL client,83764,108290 +1724193299,Microsoft,33607,42248 +1724193299,Mail.Ru,6209,5841 +1724193299,Yandex,2433,1903 +1724193299,Google Play,16378,12907 +1724193299,Google Sign in,5023,3984 +1724193299,DNS over HTTPS,3621,10997 +1724193299,__unknown,20870,31609 +1724193299,Google,45257,56740 +1724193299,Dell,1051,4369 +1724193299,HTTP,1005,1401 +1724193299,Odnoklassniki,7360,13504 +1724193299,HTTPS,307375,625407 +1724193299,WhatsApp,3102,5742 +1724193299,Apple sites,2147,8649 +1724193299,Bing Maps,1307,8998 +1724193299,SSL client,168373,301279 +1724193299,Amazon Web Services,3325,21602 +1724193299,Microsoft,38374,71168 +1724193299,VeriSign,1005,1401 +1724193299,Mail.Ru,30996,20499 +1724193299,Yandex,17916,36412 +1724193299,GitHub,1652,5976 +1724193299,Microsoft CryptoAPI,1005,1401 +1724193299,Exchange Online,1358,7848 +1724193299,Office 365,3561,7704 +1724193299,Microsoft Windows Live Services Authentication,12894,31408 +1724193299,Telegram,120,120 +1724193299,Discord,1175,6402 +1724193299,__unknown,3642,74 +1724193299,HTTPS,3201,9306 +1724193299,iCloud,3201,9306 +1724193299,SSL client,3201,9306 +1724193299,__unknown,0,1736 +1724193299,__unknown,144,1698 +1724193299,HTTPS,16665,6446 +1724193299,ICMP,328,0 +1724193299,CoAP,1764,1296 +1724193299,__unknown,400611,522634 +1724193299,BitTorrent,310,496 +1724193299,DHCPv6,978,0 +1724193299,Google APIs,11913,37168 +1724193299,Google Drive,8904,21956 +1724193299,Google,36713,93715 +1724193299,DNS,15997,0 +1724193299,Gmail,37579,41139 +1724193299,HTTP,1130,1016 +1724193299,NTP,270,270 +1724193299,STUN,1066,962 +1724193299,Odnoklassniki,2606,7296 +1724193299,HTTPS,138330,324765 +1724193299,Mozilla,1876,4611 +1724193299,SSL client,106072,234807 +1724193299,Yandex,2131,16082 +1724193299,Microsoft CryptoAPI,1130,1016 +1724193299,ICMP,9356,5040 +1724193299,Grammarly,2162,7889 +1724193299,DNS over HTTPS,14003,37925 +1724193299,__unknown,563787,740321 +1724193299,BitTorrent,153,537 +1724193299,DHCPv6,163,0 +1724193299,Google APIs,2410,6632 +1724193299,Google Drive,8844,11300 +1724193299,Google,19447,28617 +1724193299,BitTorrent tracker,153,537 +1724193299,DNS,57263,55117 +1724193299,HTTP,71984,580159 +1724193299,Launchpad,3200,2414 +1724193299,Microsoft Update,4281,3722 +1724193299,NTP,13380,3630 +1724193299,Steam,14017,502399 +1724193299,Advanced Packaging Tool,32035,29361 +1724193299,HTTPS,166857,283049 +1724193299,SSL client,54351,105135 +1724193299,Ubuntu Update Manager,23552,22177 +1724193299,Microsoft,609,2739 +1724193299,Yandex,6323,26731 +1724193299,Ubuntu,6558,6145 +1724193299,Microsoft CryptoAPI,5368,6696 +1724193299,Google Play,14125,20097 +1724193299,ICMP,2736,0 +1724193299,Edge Chromium,8625,24273 +1724193299,DNS over TLS,2158,9539 +1724193299,Microsoft Teams,1149,6744 +1724193299,DNS over HTTPS,35823,122527 +1724193600,DNS over HTTPS,168618,392449 +1724193600,HTTPS,153037,151079 +1724193600,SSL client,107346,131798 +1724193600,Telegram,107346,131798 +1724193600,HTTPS,54409,62036 +1724193600,SSL client,54409,62036 +1724193600,Telegram,54409,62036 +1724193600,HTTPS,17655,9744 +1724193600,SSL client,11184,1997 +1724193600,Google Play,11184,1997 +1724193600,__unknown,834,0 +1724193600,Google APIs,2087,7196 +1724193600,HTTPS,43393,64540 +1724193600,SSL client,17102,25479 +1724193600,Microsoft,8411,13805 +1724193600,Yandex,6604,4478 +1724193600,__unknown,25442,17529 +1724193600,Google,145631,24085 +1724193600,HTTP,754,680 +1724193600,Skype,2847,7906 +1724193600,HTTPS,258593,220750 +1724193600,Mozilla,18277,11082 +1724193600,Avast,3366,25944 +1724193600,SSL client,211491,156789 +1724193600,Microsoft,24563,74792 +1724193600,Mail.Ru,16807,12980 +1724193600,Microsoft CryptoAPI,754,680 +1724193600,__unknown,286411,121498 +1724193600,Dropbox,2970,1361 +1724193600,Google APIs,2680,6892 +1724193600,Google,170697,177937 +1724193600,MSN,4474,38860 +1724193600,HTTP,1765,1650 +1724193600,Microsoft Update,2070,5988 +1724193600,Skype,8313,100114 +1724193600,TwitchTV,6468,7003 +1724193600,Odnoklassniki,7360,13504 +1724193600,Steam,9309,17334 +1724193600,Advanced Packaging Tool,1274,1193 +1724193600,HTTPS,471632,1098304 +1724193600,Bing Maps,5966,178898 +1724193600,Avast,4686,34318 +1724193600,SSL client,393298,943306 +1724193600,Amazon Web Services,3199,21490 +1724193600,CloudFront,6207,1153 +1724193600,Ubuntu Update Manager,1274,1193 +1724193600,Microsoft,38453,78037 +1724193600,Mail.Ru,69681,65548 +1724193600,Yandex,8397,18060 +1724193600,Ubuntu,491,457 +1724193600,Office 365,1623,37860 +1724193600,Sharepoint Online,3266,94230 +1724193600,Microsoft Windows Live Services Authentication,24872,34687 +1724193600,Grammarly,12607,10032 +1724193600,DNS over HTTPS,3259,11937 +1724193600,__unknown,1217,480 +1724193600,HTTPS,10334,13123 +1724193600,SSL client,10334,13123 +1724193600,DNS over HTTPS,10334,13123 +1724193600,__unknown,1301,444 +1724193600,HTTPS,7308,10694 +1724193600,ICMP,738,0 +1724193600,__unknown,397,1298 +1724193600,Google,6088,11232 +1724193600,HTTPS,33520,28452 +1724193600,SSL client,31230,22803 +1724193600,Google Play,25142,11571 +1724193600,ICMP,328,0 +1724193600,DNS over HTTPS,79760,185206 +1724193600,__unknown,345400,730838 +1724193600,BitTorrent,310,496 +1724193600,Google APIs,37899,16543 +1724193600,Google,40129,101286 +1724193600,DNS,26073,0 +1724193600,NetBIOS-dgm,250,0 +1724193600,NTP,360,360 +1724193600,STUN,3050,4262 +1724193600,Odnoklassniki,5463,10379 +1724193600,HTTPS,136416,237378 +1724193600,SSL client,98349,152388 +1724193600,Google Play,12690,16232 +1724193600,ICMP,5935,0 +1724193600,Grammarly,2168,7948 +1724193600,DNS over HTTPS,11521,35157 +1724193600,__unknown,267886,282106 +1724193600,DHCPv6,978,0 +1724193600,Google APIs,5813,20737 +1724193600,Google,197827,69176 +1724193600,DNS,73478,60900 +1724193600,HTTP,61412,87641 +1724193600,Internet Explorer,762,660 +1724193600,Launchpad,3340,2554 +1724193600,NTP,2726,4507 +1724193600,SSL,855,7032 +1724193600,Advanced Packaging Tool,30354,27593 +1724193600,HTTPS,284205,263062 +1724193600,Avast,382,391 +1724193600,SSL client,216617,134602 +1724193600,Ubuntu Update Manager,19730,18499 +1724193600,VeriSign,1132,4282 +1724193600,Yandex,14588,47532 +1724193600,Ubuntu,7783,7001 +1724193600,Microsoft CryptoAPI,3376,6304 +1724193600,Google Hangouts,855,7032 +1724193600,ICMP,1645,0 +1724193600,ICMP for IPv6,70,0 +1724193600,Telegram,2464,914 +1724193600,Edge Chromium,8852,26328 +1724193600,DNS over HTTPS,54138,171900 +1724193900,HTTPS,532378,13826179 +1724193900,Google,267732,113740 +1724193900,HTTPS,267732,113740 +1724193900,SSL client,267732,113740 +1724193900,HTTPS,204216,68645 +1724193900,HTTPS,4197,6322 +1724193900,SSL client,4197,6322 +1724193900,Sharepoint Online,4197,6322 +1724193900,HTTPS,43515,137866 +1724193900,SSL client,35056,134209 +1724193900,Microsoft,32094,126884 +1724193900,Microsoft Teams,2962,7325 +1724193900,HTTPS,10961,14085 +1724193900,HTTPS,105188,485961 +1724193900,__unknown,1120770,1134300 +1724193900,Bing,3399,9635 +1724193900,TeamViewer,1448,8838 +1724193900,HTTPS,66445,318411 +1724193900,Avast,2244,16224 +1724193900,SSL client,24693,257840 +1724193900,Microsoft,1078,31418 +1724193900,Mail.Ru,6365,5900 +1724193900,Office 365,5197,181871 +1724193900,Google Sign in,4962,3954 +1724193900,__unknown,46727,38802 +1724193900,Dropbox,2065,5112 +1724193900,Google APIs,180162422,4354994 +1724193900,Google,3060,3320 +1724193900,HTTP,1197,519 +1724193900,Microsoft Update,702,120 +1724193900,Skype,3267,7019 +1724193900,HTTPS,180416385,5001897 +1724193900,WhatsApp,1799,5981 +1724193900,Mozilla,21307,6128 +1724193900,Avast,2244,17522 +1724193900,SSL client,180291517,4743723 +1724193900,Amazon Web Services,3199,21490 +1724193900,Microsoft,27816,59509 +1724193900,Mail.Ru,40305,32324 +1724193900,Yandex,13979,33748 +1724193900,GitHub,1568,5975 +1724193900,Ubuntu,6344,186389 +1724193900,Microsoft CryptoAPI,1197,519 +1724193900,Apple Maps,2780,6462 +1724193900,Office 365,3941,10193 +1724193900,Telegram,240,240 +1724193900,DNS over HTTPS,4383,14678 +1724193900,Google,61308,42097 +1724193900,HTTPS,92830,69447 +1724193900,SSL client,61308,42097 +1724193900,__unknown,63605,83890 +1724193900,HTTPS,54469,62942 +1724193900,SSL client,54469,62942 +1724193900,Telegram,55356,63434 +1724193900,__unknown,144,78 +1724193900,HTTPS,29478,86383 +1724193900,DNS over HTTPS,5129,13428 +1724193900,CoAP,1372,1008 +1724193900,__unknown,342734,417772 +1724193900,BitTorrent,310,496 +1724193900,DHCPv6,163,0 +1724193900,Google APIs,3339,12987 +1724193900,Google,42519,110314 +1724193900,DNS,23767,0 +1724193900,Gmail,15222,23512 +1724193900,HTTP,642,511 +1724193900,Microsoft Update,642,511 +1724193900,NetBIOS-dgm,243,0 +1724193900,NTP,25500,6000 +1724193900,STUN,3030,4188 +1724193900,Odnoklassniki,3007,8162 +1724193900,HTTPS,101673,559629 +1724193900,SSL client,67526,166075 +1724193900,Yandex,1251,6151 +1724193900,Microsoft CryptoAPI,642,511 +1724193900,ICMP,6354,2700 +1724193900,DNS over HTTPS,34101,81849 +1724193900,__unknown,284008,533127 +1724193900,BitTorrent,153,198 +1724193900,Google APIs,74591309,1919946 +1724193900,Google Drive,3262,10210 +1724193900,Google,18206,26627 +1724193900,BitTorrent tracker,153,198 +1724193900,Chrome,592,1524 +1724193900,DNS,61853,59252 +1724193900,HTTP,54773,77654 +1724193900,Launchpad,2560,1918 +1724193900,Microsoft Update,641,501 +1724193900,NTP,12480,2730 +1724193900,SSL,1180,7978 +1724193900,STUN,1312,1184 +1724193900,Odnoklassniki,2024,6340 +1724193900,Advanced Packaging Tool,30816,28178 +1724193900,HTTPS,74738453,2152202 +1724193900,SSL client,74627037,2003999 +1724193900,Ubuntu Update Manager,25273,23574 +1724193900,Microsoft,633,7944 +1724193900,Yandex,8490,23901 +1724193900,Ubuntu,5396,5234 +1724193900,Microsoft CryptoAPI,1815,1507 +1724193900,Microsoft NCSI,1402,1527 +1724193900,Microsoft WNS,633,7944 +1724193900,Google Play,1477,8916 +1724193900,Google Hangouts,1216,7912 +1724193900,ICMP,2076,0 +1724193900,Telegram,1955,637 +1724193900,Edge Chromium,4936,14713 +1724193900,Grammarly,1889,7464 +1724193900,DNS over HTTPS,38219,124894 +1724194199,HTTPS,48300,21393 +1724194199,HTTPS,21319,28432 +1724194199,HTTPS,32897,14014 +1724194199,SSL client,21878,4279 +1724194199,Google Play,21878,4279 +1724194199,BITS,1183,1033 +1724194199,Dropbox,1638,1266 +1724194199,HTTP,3828,4312 +1724194199,Microsoft Update,473,484 +1724194199,Windows Update,473,484 +1724194199,HTTPS,107169,179763 +1724194199,Mozilla,24919,11968 +1724194199,Avast,2244,17440 +1724194199,SSL client,64177,131878 +1724194199,Samsung,3430,7329 +1724194199,Microsoft,2062,3726 +1724194199,VeriSign,1147,1950 +1724194199,Mail.Ru,3876,5419 +1724194199,Yandex,1183,1033 +1724194199,Microsoft CryptoAPI,2172,2795 +1724194199,Office 365,5531,48065 +1724194199,GISMETEO,2194,9341 +1724194199,DNS over HTTPS,18283,27324 +1724194199,__unknown,5110,59978 +1724194199,Bing,5372,15838 +1724194199,Dropbox,1670,1358 +1724194199,Google,100830,172374 +1724194199,HTTP,3690,2668 +1724194199,Launchpad,1280,992 +1724194199,Odnoklassniki,1840,3391 +1724194199,Advanced Packaging Tool,2901,2482 +1724194199,HTTPS,650042,1613479 +1724194199,WhatsApp,3165,5622 +1724194199,Apple sites,2021,8503 +1724194199,Mozilla,2219,5353 +1724194199,SSL client,358251,552622 +1724194199,Ubuntu Update Manager,1621,1490 +1724194199,Microsoft,35742,49470 +1724194199,Mail.Ru,62915,50880 +1724194199,Yandex,15651,38844 +1724194199,Google Play,104478,65189 +1724194199,Office 365,19003,125748 +1724194199,Microsoft Windows Live Services Authentication,6510,15674 +1724194199,DNS over HTTPS,59652,132986 +1724194199,__unknown,187,228 +1724194199,ICMP,1394,0 +1724194199,__unknown,4805,4920 +1724194199,Google,14128,20339 +1724194199,Windows Live,8676,29147 +1724194199,SSL,5570,18511 +1724194199,HTTPS,22804,49486 +1724194199,SSL client,22804,49486 +1724194199,__unknown,0,1736 +1724194199,HTTPS,3241,5416 +1724194199,ICMP,164,0 +1724194199,__unknown,346414,748191 +1724194199,BitTorrent,310,496 +1724194199,DHCPv6,978,0 +1724194199,Google APIs,2974,12595 +1724194199,Google Drive,15449,20906 +1724194199,Google,69900,138207 +1724194199,DNS,26550,0 +1724194199,Gmail,10356,42785 +1724194199,NTP,37890,8640 +1724194199,STUN,2988,4262 +1724194199,Odnoklassniki,3007,8145 +1724194199,HTTPS,154785,405586 +1724194199,SSL client,113018,345561 +1724194199,Yandex,3475,107582 +1724194199,MDNS,89,0 +1724194199,Google Play,3346,2446 +1724194199,ICMP,5878,2340 +1724194199,Grammarly,2203,7887 +1724194199,DNS over HTTPS,2308,5008 +1724194199,__unknown,265757,468125 +1724194199,Apple Update,3156,10456 +1724194199,DHCPv6,163,0 +1724194199,Google,5276,6800 +1724194199,Chrome,7075,13980 +1724194199,DNS,45676,43046 +1724194199,Firefox,3929,5341 +1724194199,HTTP,55717,71885 +1724194199,Internet Explorer,1959,3495 +1724194199,Launchpad,3200,2414 +1724194199,Mobile Safari,1732,2289 +1724194199,NetBIOS-dgm,250,0 +1724194199,NTP,360,360 +1724194199,Safari,1713,2289 +1724194199,SSL,797,7093 +1724194199,Advanced Packaging Tool,28234,25695 +1724194199,HTTPS,151853,213704 +1724194199,Opera,1031,1928 +1724194199,SSL client,36510,62162 +1724194199,Ubuntu Update Manager,19655,18439 +1724194199,Yandex,5744,18251 +1724194199,Ubuntu,6732,6283 +1724194199,Microsoft CryptoAPI,1886,2004 +1724194199,Google Play,17161,9603 +1724194199,Google Hangouts,797,7093 +1724194199,ICMP,1414,0 +1724194199,Edge,585,763 +1724194199,DNS over HTTPS,33011,105288 +1724194499,DNS over HTTPS,189207,425617 +1724194499,HTTPS,10828,11078 +1724194499,SSL client,10828,11078 +1724194499,Mail.Ru,10828,11078 +1724194499,HTTPS,6806,18101 +1724194499,SSL client,6806,18101 +1724194499,Yandex,6806,18101 +1724194499,HTTPS,55956,26640 +1724194499,HTTPS,2888,1907 +1724194499,HTTPS,80362,71404 +1724194499,SSL client,80362,71404 +1724194499,Google Play,25893,9368 +1724194499,Telegram,54469,62036 +1724194499,__unknown,42442,42797 +1724194499,HTTPS,7169,7822 +1724194499,ICMP,21730,0 +1724194499,__unknown,3776,6546 +1724194499,Google,52040,218582 +1724194499,Skype,1521,7822 +1724194499,TeamViewer,2969,17694 +1724194499,HTTPS,174930,402020 +1724194499,Avast,3498,25924 +1724194499,SSL client,122487,342661 +1724194499,Microsoft,35721,32432 +1724194499,Mail.Ru,13194,15488 +1724194499,Yandex,4010,2406 +1724194499,uTorrent,7400,12972 +1724194499,GISMETEO,2134,9341 +1724194499,__unknown,290600,313560 +1724194499,Bing,5533,15814 +1724194499,Google APIs,13470,34573 +1724194499,Google,1246241,677794 +1724194499,HTTP,4331,3416 +1724194499,Odnoklassniki,9200,16955 +1724194499,Advanced Packaging Tool,1274,1226 +1724194499,HTTPS,1619413,1374728 +1724194499,Avast,2766,14554 +1724194499,SSL client,1380898,898859 +1724194499,Ubuntu Update Manager,1274,1226 +1724194499,Microsoft,43102,54772 +1724194499,Mail.Ru,41928,39879 +1724194499,Yandex,5674,14837 +1724194499,Google Update,3057,2190 +1724194499,Office 365,3323,9213 +1724194499,Sharepoint Online,3903,6127 +1724194499,Microsoft Windows Live Services Authentication,7670,11629 +1724194499,DNS over TLS,1145,4902 +1724194499,DNS over HTTPS,17650,57550 +1724194499,Google,74531,88710 +1724194499,HTTPS,74531,88710 +1724194499,SSL client,74531,88710 +1724194499,ICMP,5762,0 +1724194499,HTTPS,8454,11512 +1724194499,SSL client,8454,11512 +1724194499,DNS over HTTPS,8454,11512 +1724194499,ICMP,1548,0 +1724194499,Gmail,82241,357706 +1724194499,HTTPS,82241,357706 +1724194499,SSL client,82241,357706 +1724194499,__unknown,758,1406 +1724194499,Google,32255,23541 +1724194499,HTTPS,107416,149993 +1724194499,SSL client,92829,62649 +1724194499,Google Play,44615,15682 +1724194499,ICMP,602,0 +1724194499,Telegram,15959,23426 +1724194499,CoAP,2156,1584 +1724194499,__unknown,363351,406033 +1724194499,BitTorrent,310,496 +1724194499,Google APIs,4698,16485 +1724194499,Google,10346,29817 +1724194499,Chrome,1275,869 +1724194499,DNS,18505,260 +1724194499,Gmail,7103,4203 +1724194499,HTTP,1275,869 +1724194499,NetBIOS-dgm,243,0 +1724194499,NTP,13650,3900 +1724194499,STUN,2926,4188 +1724194499,Odnoklassniki,5582,10577 +1724194499,HTTPS,67733,129611 +1724194499,SSL client,31185,69877 +1724194499,Yandex,1313,907 +1724194499,MDNS,364,0 +1724194499,ICMP,3392,60 +1724194499,Grammarly,2143,7888 +1724194499,__unknown,209147,338634 +1724194499,BitTorrent,153,537 +1724194499,DHCPv6,978,0 +1724194499,Google APIs,2011,6560 +1724194499,Google,41125,105998 +1724194499,Windows Live,3723,19767 +1724194499,BitTorrent tracker,153,537 +1724194499,DNS,47573,44968 +1724194499,HTTP,497673,27010462 +1724194499,Launchpad,2862,1930 +1724194499,Microsoft Update,646,501 +1724194499,NTP,13740,3990 +1724194499,Advanced Packaging Tool,26078,23459 +1724194499,HTTPS,218247,310354 +1724194499,SSL client,57314,159464 +1724194499,Ubuntu Update Manager,19646,18379 +1724194499,Microsoft,457036,26955219 +1724194499,Yandex,6706,22328 +1724194499,Ubuntu,5271,4986 +1724194499,Microsoft CryptoAPI,2354,3069 +1724194499,ICMP,1802,0 +1724194499,Edge Chromium,5570,16860 +1724194499,DNS over HTTPS,52251,173380 +1724194800,HTTPS,140786,627881 +1724194800,SSL client,140786,627881 +1724194800,Mail.Ru,140786,627881 +1724194800,HTTPS,45065,18709 +1724194800,HTTPS,7147,5022 +1724194800,HTTPS,5789,6669 +1724194800,Skype,3976,8741 +1724194800,HTTPS,15423,134540 +1724194800,SSL client,15423,134540 +1724194800,Microsoft,11447,125799 +1724194800,Google APIs,2027,7321 +1724194800,HTTPS,32752,37436 +1724194800,SSL client,4967,10268 +1724194800,Yandex,2940,2947 +1724194800,__unknown,1386,11189 +1724194800,Dropbox,1647,1520 +1724194800,HTTPS,200458,287120 +1724194800,Apple sites,2166,11999 +1724194800,Mozilla,2118,5091 +1724194800,Avast,3366,26013 +1724194800,SSL client,68533,104718 +1724194800,Microsoft,12272,33091 +1724194800,Mail.Ru,41955,18980 +1724194800,Yandex,5009,8024 +1724194800,DNS over HTTPS,44729,107864 +1724194800,__unknown,189077,204487 +1724194800,Apple Update,1676,5091 +1724194800,Dell,1111,4304 +1724194800,Gmail,14103,17295 +1724194800,Skype,3254,7019 +1724194800,IMAPS,14103,17295 +1724194800,HTTPS,251194,706132 +1724194800,WhatsApp,1859,5921 +1724194800,Mozilla,1355,4862 +1724194800,Avast,3498,24702 +1724194800,SSL client,179012,338618 +1724194800,Microsoft,43576,97387 +1724194800,Mail.Ru,57724,48131 +1724194800,Yandex,22366,58950 +1724194800,Microsoft Azure,4680,17674 +1724194800,Apple Maps,1876,7495 +1724194800,Office 365,6578,27581 +1724194800,Microsoft Windows Live Services Authentication,6581,15614 +1724194800,Telegram,120,120 +1724194800,Grammarly,12510,10008 +1724194800,DNS over HTTPS,5644,20462 +1724194800,__unknown,1922,1164 +1724194800,HTTP,611,457 +1724194800,Telegram,1135,588 +1724194800,DNS over HTTPS,87693,207366 +1724194800,Skype Auth,1252,926 +1724194800,Skype,1252,926 +1724194800,HTTPS,10528,11512 +1724194800,Apple sites,9719,11248 +1724194800,SSL client,9719,11248 +1724194800,ICMP,410,0 +1724194800,__unknown,271272,246438 +1724194800,BitTorrent,310,496 +1724194800,DHCPv6,163,0 +1724194800,Google APIs,95772,45249 +1724194800,Google,39627,68706 +1724194800,DNS,17790,260 +1724194800,Gmail,5657,8364 +1724194800,HTTP,3170,4423 +1724194800,Microsoft Update,2604,2282 +1724194800,NTP,1080,1080 +1724194800,STUN,3050,4188 +1724194800,Odnoklassniki,5465,10483 +1724194800,HTTPS,200794,224020 +1724194800,SSL client,152345,146544 +1724194800,VeriSign,566,2141 +1724194800,Yandex,1313,907 +1724194800,Microsoft CryptoAPI,3170,4423 +1724194800,ICMP,7438,0 +1724194800,Grammarly,2263,7886 +1724194800,DNS over HTTPS,14165,40819 +1724194800,__unknown,224511,210978 +1724194800,DHCPv6,978,0 +1724194800,Google APIs,2410,6759 +1724194800,Google,6857,13775 +1724194800,QQ,414,1584 +1724194800,DNS,52991,46570 +1724194800,HTTP,54261,68038 +1724194800,Launchpad,2626,1786 +1724194800,Microsoft Update,2574,2281 +1724194800,NTP,12840,3090 +1724194800,SSL,1710,14063 +1724194800,Advanced Packaging Tool,33505,30817 +1724194800,HTTPS,118574,224492 +1724194800,Apple sites,628,550 +1724194800,Avast,388,457 +1724194800,SSL client,29757,82580 +1724194800,Ubuntu Update Manager,26039,24749 +1724194800,Yandex,3544,20065 +1724194800,Ubuntu,6115,5657 +1724194800,Microsoft CryptoAPI,6112,5305 +1724194800,Google Play,11699,20325 +1724194800,Google Hangouts,1710,14063 +1724194800,ICMP,2273,0 +1724194800,ICMP for IPv6,70,0 +1724194800,Telegram,2025,7377 +1724194800,Edge Chromium,5330,14285 +1724194800,DNS over HTTPS,38748,124914 +1724195100,HTTPS,89144,145582 +1724195100,SSL client,89144,145582 +1724195100,Sharepoint Online,89144,145582 +1724195100,HTTPS,379305,108115 +1724195100,HTTPS,28229,12123 +1724195100,HTTPS,14065,15050 +1724195100,HTTPS,25137,22797 +1724195100,SSL client,21056,18356 +1724195100,Google Play,21056,18356 +1724195100,MSN,2980,7599 +1724195100,HTTP,871,2240 +1724195100,HTTPS,153467,204403 +1724195100,Mozilla,5338,5843 +1724195100,Avast,2244,17088 +1724195100,SSL client,123753,168579 +1724195100,Microsoft,11684,19319 +1724195100,Yandex,8492,54841 +1724195100,Microsoft Azure,83965,10080 +1724195100,Microsoft CryptoAPI,871,2240 +1724195100,Apple Maps,2780,7492 +1724195100,Office 365,2185,9584 +1724195100,Google Sign in,4862,8157 +1724195100,Microsoft Teams,2874,38308 +1724195100,DNS over HTTPS,2656,8522 +1724195100,__unknown,16580,11259 +1724195100,Dropbox,5032,6898 +1724195100,Google APIs,6083,16893 +1724195100,Google,51191,56362 +1724195100,Dell,1051,4308 +1724195100,Gmail,12682,12869 +1724195100,HTTP,1424,1007 +1724195100,Microsoft Update,1424,1007 +1724195100,Skype,4953,81615 +1724195100,TeamViewer,1584,8893 +1724195100,IMAPS,12682,12869 +1724195100,HTTPS,5824248,2494609 +1724195100,WhatsApp,3042,5682 +1724195100,Mozilla,3865,10053 +1724195100,Avast,1944,4342 +1724195100,SSL client,282516,495604 +1724195100,Microsoft,63631,109322 +1724195100,Mail.Ru,60398,64092 +1724195100,Yandex,12035,21863 +1724195100,Microsoft CryptoAPI,1424,1007 +1724195100,Rambler,15708,8453 +1724195100,Office 365,6351,17783 +1724195100,Microsoft Windows Live Services Authentication,21363,55149 +1724195100,Grammarly,14645,16709 +1724195100,DNS over HTTPS,2579,7822 +1724195100,HTTPS,31170,26868 +1724195100,__unknown,1543,888 +1724195100,ICMP,738,0 +1724195100,__unknown,541,4404 +1724195100,HTTPS,9029,17306 +1724195100,ICMP,246,0 +1724195100,__unknown,849471,19520659 +1724195100,BitTorrent,310,496 +1724195100,DHCPv6,163,0 +1724195100,Google APIs,67322,89949 +1724195100,Google Drive,7528,10156 +1724195100,Google,51663,156131 +1724195100,Kaspersky,1096,1082 +1724195100,QQ,609,947 +1724195100,DNS,18697,0 +1724195100,Gmail,17043,61093 +1724195100,HTTP,3246,3379 +1724195100,Microsoft Update,981,887 +1724195100,NetBIOS-dgm,250,0 +1724195100,NTP,990,990 +1724195100,STUN,1066,962 +1724195100,HTTPS,176669,386261 +1724195100,SSL client,143556,317329 +1724195100,Microsoft CryptoAPI,1541,1350 +1724195100,ICMP,6075,2340 +1724195100,ICMP for IPv6,70,0 +1724195100,DNS over HTTPS,39511,99133 +1724195100,__unknown,249635,269690 +1724195100,BitTorrent,66405,5857476 +1724195100,Google APIs,11181,21415 +1724195100,Google,7520,15648 +1724195100,BitTorrent tracker,153,198 +1724195100,Chrome,1434,958 +1724195100,DNS,62707,49374 +1724195100,HTTP,261304,15606471 +1724195100,Launchpad,3348,2480 +1724195100,Microsoft Update,1047,953 +1724195100,NetBIOS-dgm,243,0 +1724195100,NTP,990,990 +1724195100,STUN,1860,3300 +1724195100,Steam,2569,39396 +1724195100,Advanced Packaging Tool,24551,22116 +1724195100,HTTPS,222525,618778 +1724195100,Apple sites,2352,8606 +1724195100,Mozilla,3831,6357 +1724195100,SSL client,54061,123229 +1724195100,Ubuntu Update Manager,15824,14794 +1724195100,Microsoft,140694,9639676 +1724195100,Yandex,11974,51809 +1724195100,Ubuntu,6786,6221 +1724195100,Microsoft CryptoAPI,2277,4073 +1724195100,Microsoft NCSI,2430,2501 +1724195100,uTorrent,1434,958 +1724195100,Google Play,9878,10873 +1724195100,ICMP,3342,0 +1724195100,Telegram,4608,1956 +1724195100,Google Sign in,6221,4207 +1724195100,Edge Chromium,7618,20494 +1724195100,DNS over TLS,1079,4770 +1724195100,DNS over HTTPS,44412,144384 +1724195400,__unknown,753644,333925 +1724195400,HTTPS,964928,703488 +1724195400,Telegram,964928,703488 +1724195400,HTTPS,91506,127844 +1724195400,SSL client,91506,127844 +1724195400,Telegram,91506,127844 +1724195400,HTTPS,21344,29487 +1724195400,HTTPS,53789,70618 +1724195400,SSL client,53789,70618 +1724195400,Telegram,53789,70618 +1724195400,HTTPS,54409,65996 +1724195400,SSL client,54409,65996 +1724195400,Telegram,54409,65996 +1724195400,HTTPS,15105,15654 +1724195400,__unknown,2801,1427 +1724195400,Skype,3017,12299 +1724195400,HTTPS,75490,121750 +1724195400,Avast,3504,26703 +1724195400,SSL client,27146,74459 +1724195400,Microsoft,10087,28378 +1724195400,Mail.Ru,10538,7079 +1724195400,__unknown,1320,10112 +1724195400,Bing,3848,6422 +1724195400,Google,626283,415365 +1724195400,HTTP,1274,1253 +1724195400,Skype,1457,7877 +1724195400,Steam,9152,17331 +1724195400,Advanced Packaging Tool,1274,1253 +1724195400,HTTPS,997640,1449382 +1724195400,Apple sites,2081,8521 +1724195400,Avast,2244,17874 +1724195400,SSL client,817035,713162 +1724195400,CloudFront,2265,1747 +1724195400,Ubuntu Update Manager,1274,1253 +1724195400,Microsoft,55198,80731 +1724195400,Mail.Ru,38393,31658 +1724195400,Yandex,9756,22125 +1724195400,Microsoft Azure,2562,12096 +1724195400,Office 365,4538,10520 +1724195400,Microsoft Windows Live Services Authentication,59258,80895 +1724195400,Telegram,6393,24767 +1724195400,DNS over HTTPS,3457,10762 +1724195400,__unknown,922,360 +1724195400,__unknown,174792,249536 +1724195400,Google,27449,69655 +1724195400,HTTPS,49714,78349 +1724195400,SSL client,27449,69655 +1724195400,__unknown,618,304 +1724195400,Google,8090,15736 +1724195400,HTTPS,11403,22049 +1724195400,SSL client,8090,15736 +1724195400,ICMP,492,0 +1724195400,__unknown,474782,415324 +1724195400,BITS,14722,937535 +1724195400,BitTorrent,769,496 +1724195400,Google APIs,34583,9141 +1724195400,Google,59988,156419 +1724195400,BitTorrent tracker,459,0 +1724195400,DNS,21624,300 +1724195400,Gmail,5774,8054 +1724195400,HTTP,166094,5075325 +1724195400,NTP,37170,7920 +1724195400,STUN,1066,962 +1724195400,Odnoklassniki,3007,8281 +1724195400,Advanced Packaging Tool,150775,4136838 +1724195400,HTTPS,156087,441337 +1724195400,SSL client,110939,210199 +1724195400,Microsoft,15704,945069 +1724195400,Ubuntu,150775,4136838 +1724195400,Microsoft CryptoAPI,597,952 +1724195400,ICMP,6230,1080 +1724195400,Grammarly,4297,15759 +1724195400,DNS over HTTPS,13728,39333 +1724195400,__unknown,209841,231531 +1724195400,BITS,3210,29767 +1724195400,DHCPv6,1141,0 +1724195400,Google,17653,35480 +1724195400,DNS,54056,47432 +1724195400,HTTP,249023,11745833 +1724195400,Launchpad,3340,2488 +1724195400,Microsoft Update,646,500 +1724195400,NTP,1530,1530 +1724195400,SSL,855,7032 +1724195400,Advanced Packaging Tool,120436,3959144 +1724195400,HTTPS,119718,340326 +1724195400,Apple sites,2219,7195 +1724195400,SSL client,33915,89030 +1724195400,Ubuntu Update Manager,25069,23527 +1724195400,Microsoft,104876,7734384 +1724195400,Mail.Ru,2174,10359 +1724195400,Yandex,8709,25794 +1724195400,Ubuntu,92943,3934051 +1724195400,Microsoft CryptoAPI,5117,6501 +1724195400,Microsoft WNS,1326,15892 +1724195400,Google Hangouts,855,7032 +1724195400,ICMP,1018,0 +1724195400,Edge Chromium,8852,26332 +1724195400,Grammarly,1918,7326 +1724195400,DNS over HTTPS,61127,187261 +1724195700,__unknown,38930,46838 +1724195700,__unknown,1484,2060 +1724195700,__unknown,1608,0 +1724195700,HTTPS,6915,9365 +1724195700,DNS over HTTPS,85665,201506 +1724195700,HTTPS,16433,19588 +1724195700,SSL client,3049,7305 +1724195700,Yandex,3049,7305 +1724195700,__unknown,11781,13600 +1724195700,HTTP,1282,4160 +1724195700,HTTPS,37077,108629 +1724195700,Mozilla,2202,4639 +1724195700,Avast,2244,17272 +1724195700,SSL client,14026,42751 +1724195700,Microsoft,2182,3666 +1724195700,Microsoft Azure,2473,9043 +1724195700,Microsoft CryptoAPI,1084,1582 +1724195700,Office 365,558,1139 +1724195700,Google Sign in,4925,8131 +1724195700,__unknown,1205928,400363 +1724195700,Bing,3801,18597 +1724195700,Dropbox,7344,224238 +1724195700,Google,733671,434103 +1724195700,MSN,11755,64277 +1724195700,Gmail,3061,7447 +1724195700,HTTP,1854,1722 +1724195700,Launchpad,640,496 +1724195700,SSL,1539,1392 +1724195700,TeamViewer,1458,8847 +1724195700,Advanced Packaging Tool,1854,1722 +1724195700,IMAPS,3061,7447 +1724195700,HTTPS,1110130,1702360 +1724195700,WhatsApp,1799,5981 +1724195700,Apple sites,2994,14760 +1724195700,iCloud,937,8066 +1724195700,Mozilla,2369,9987 +1724195700,Avast,4186,23422 +1724195700,SSL client,926591,1136501 +1724195700,Ubuntu Update Manager,1214,1226 +1724195700,Microsoft,36691,62829 +1724195700,Mail.Ru,31665,20771 +1724195700,Yandex,7693,16733 +1724195700,Asus,1349,10199 +1724195700,Exchange Online,1408,8612 +1724195700,Office 365,18224,57543 +1724195700,Microsoft Windows Live Services Authentication,54490,132181 +1724195700,Malwarebytes,1409,6886 +1724195700,Grammarly,2086,7003 +1724195700,DNS over HTTPS,3469,12035 +1724195700,HTTPS,53557,71073 +1724195700,SSL client,53557,71073 +1724195700,Telegram,53557,71073 +1724195700,__unknown,187,228 +1724195700,DNS over HTTPS,37716,85650 +1724195700,Google,61510,44161 +1724195700,HTTPS,61510,44161 +1724195700,SSL client,61510,44161 +1724195700,__unknown,756,472 +1724195700,HTTPS,27681,30179 +1724195700,SSL client,5144,8011 +1724195700,Yandex,5144,8011 +1724195700,__unknown,144,78 +1724195700,Google,3806,10274 +1724195700,HTTPS,14610,33747 +1724195700,SSL client,3806,10274 +1724195700,ICMP,6876,3240 +1724195700,DNS over HTTPS,10938,27219 +1724195700,__unknown,283295,273143 +1724195700,BitTorrent,310,496 +1724195700,Google APIs,68186,20389 +1724195700,Google,32390,51596 +1724195700,DNS,16631,0 +1724195700,Gmail,15071,24013 +1724195700,HTTP,1130,1014 +1724195700,NTP,13290,3540 +1724195700,SSL,737,7091 +1724195700,STUN,2844,4188 +1724195700,Odnoklassniki,3007,8204 +1724195700,HTTPS,172644,259929 +1724195700,SSL client,120644,112200 +1724195700,Yandex,1253,907 +1724195700,Microsoft CryptoAPI,1130,1014 +1724195700,Google Hangouts,737,7091 +1724195700,ICMP,7206,60 +1724195700,DNS over HTTPS,27311,64767 +1724195700,__unknown,178151,211988 +1724195700,BitTorrent,153,537 +1724195700,DHCPv6,978,0 +1724195700,Google APIs,2471,6686 +1724195700,Google Drive,11077,112724 +1724195700,Google,9801,18511 +1724195700,BitTorrent tracker,153,537 +1724195700,Chrome,1130,968 +1724195700,DNS,54534,51486 +1724195700,HTTP,54973,76895 +1724195700,Launchpad,3200,2348 +1724195700,NetBIOS-dgm,250,0 +1724195700,NTP,1080,1080 +1724195700,Advanced Packaging Tool,33274,30267 +1724195700,HTTPS,94028,247457 +1724195700,SSL client,32784,168341 +1724195700,Ubuntu Update Manager,25282,23547 +1724195700,Yandex,7576,28957 +1724195700,GitHub,1592,5688 +1724195700,Ubuntu,6983,6673 +1724195700,Microsoft CryptoAPI,3196,2710 +1724195700,Microsoft NCSI,925,974 +1724195700,ICMP,1278,60 +1724195700,Edge Chromium,8325,25023 +1724195700,DNS over HTTPS,50607,166635 +1724196000,__unknown,346303,441749 +1724196000,Windows Live,79164,19216 +1724196000,HTTPS,79164,19216 +1724196000,SSL client,79164,19216 +1724196000,HTTPS,42964,150505 +1724196000,SSL client,12207,132701 +1724196000,Microsoft,12207,132701 +1724196000,HTTPS,31573,23941 +1724196000,Google APIs,4054,14631 +1724196000,HTTPS,43534,60220 +1724196000,SSL client,40340,57343 +1724196000,Google Play,36286,42712 +1724196000,__unknown,50701,57766 +1724196000,Bing,3731,6422 +1724196000,Gmail,5957,3467 +1724196000,HTTPS,103716,180240 +1724196000,Mozilla,2366,4857 +1724196000,Avast,2364,25350 +1724196000,SSL client,62426,129767 +1724196000,Microsoft,31505,53673 +1724196000,Yandex,8891,5979 +1724196000,Office 365,5526,23131 +1724196000,Grammarly,2086,6888 +1724196000,__unknown,11466,26866 +1724196000,Bing,1869,9390 +1724196000,Dropbox,1653,1165 +1724196000,Google APIs,2735,8501 +1724196000,Google,21761,22756 +1724196000,MSN,6722,18886 +1724196000,HTTP,5265,10887 +1724196000,Microsoft Update,2758,7011 +1724196000,Skype,3188,7019 +1724196000,Steam,22942,45293 +1724196000,HTTPS,426273,1126381 +1724196000,WhatsApp,3282,5682 +1724196000,SSL client,216997,493248 +1724196000,Microsoft,28556,44061 +1724196000,Mail.Ru,101232,152622 +1724196000,Yandex,8343,12351 +1724196000,Ubuntu,4780,118395 +1724196000,Google Update,4401,10370 +1724196000,Office 365,6542,30264 +1724196000,Grammarly,2453,7024 +1724196000,DNS over HTTPS,8425,26800 +1724196000,Adobe Update,2004,8887 +1724196000,HTTPS,54291,71372 +1724196000,SSL client,54291,71372 +1724196000,Telegram,54291,71372 +1724196000,HTTPS,27523,26951 +1724196000,CoAP,4900,3600 +1724196000,__unknown,1991,1000 +1724196000,Gmail,38541,68132 +1724196000,HTTPS,38541,68132 +1724196000,SSL client,38541,68132 +1724196000,__unknown,1536,1466 +1724196000,HTTPS,25465,23003 +1724196000,ICMP,328,0 +1724196000,__unknown,285025,302721 +1724196000,BitTorrent,310,496 +1724196000,DHCPv6,163,0 +1724196000,Google APIs,27459,8175 +1724196000,Google Drive,15691,21305 +1724196000,Google,26529,54644 +1724196000,DNS,20996,66 +1724196000,Gmail,19788,38335 +1724196000,HTTP,560,462 +1724196000,NetBIOS-dgm,243,0 +1724196000,NTP,13470,3720 +1724196000,STUN,984,888 +1724196000,Odnoklassniki,3067,8025 +1724196000,HTTPS,155224,258958 +1724196000,Mozilla,7833,8631 +1724196000,SSL client,103036,190646 +1724196000,Yandex,2669,51531 +1724196000,Microsoft CryptoAPI,560,462 +1724196000,ICMP,7162,0 +1724196000,DNS over HTTPS,2442,7884 +1724196000,__unknown,406610,270839 +1724196000,Google,21860,41023 +1724196000,Kaspersky,1086,8562 +1724196000,DNS,43858,41445 +1724196000,HTTP,56545,81240 +1724196000,Launchpad,3266,2414 +1724196000,Microsoft Update,641,502 +1724196000,NTP,1440,1440 +1724196000,Advanced Packaging Tool,32299,29559 +1724196000,HTTPS,142272,238757 +1724196000,Apple sites,1929,4742 +1724196000,iCloud,4282,8958 +1724196000,SSL client,52276,106011 +1724196000,Ubuntu Update Manager,23702,22339 +1724196000,Yandex,11403,47144 +1724196000,Ubuntu,7032,6646 +1724196000,Microsoft CryptoAPI,6187,5148 +1724196000,Google Play,14228,11618 +1724196000,ICMP,1103,0 +1724196000,Telegram,4202,1635 +1724196000,Edge Chromium,6804,21494 +1724196000,DNS over HTTPS,35761,106866 +1724196300,HTTPS,24197,27069 +1724196300,__unknown,60,5120 +1724196300,HTTPS,26701,31633 +1724196300,SSL client,3831,6327 +1724196300,Yandex,3831,6327 +1724196300,DNS over HTTPS,65082,153189 +1724196300,__unknown,31512,31735 +1724196300,Google,1829,1488 +1724196300,HTTP,754,396 +1724196300,HTTPS,181711,726147 +1724196300,Mozilla,5970,5829 +1724196300,Avast,3678,37480 +1724196300,SSL client,46822,108058 +1724196300,Microsoft,17668,38272 +1724196300,Yandex,3816,7871 +1724196300,Microsoft CryptoAPI,754,396 +1724196300,Apple Maps,2858,4356 +1724196300,Google Play,11727,7828 +1724196300,GISMETEO,2134,9290 +1724196300,__unknown,4041,11230 +1724196300,HTTP,600,382 +1724196300,Microsoft Update,600,382 +1724196300,Odnoklassniki,7360,13564 +1724196300,HTTPS,175863,307614 +1724196300,Avast,1122,12057 +1724196300,SSL client,110505,153120 +1724196300,CloudFront,2265,1747 +1724196300,Microsoft,28355,42241 +1724196300,Mail.Ru,41814,36769 +1724196300,Yandex,10397,10836 +1724196300,Microsoft CryptoAPI,600,382 +1724196300,Office 365,3044,2730 +1724196300,Microsoft Windows Live Services Authentication,16148,33176 +1724196300,DNS over HTTPS,1930,9170 +1724196300,HTTPS,31582,26958 +1724196300,__unknown,1663,13986 +1724196300,HTTP,753,667 +1724196300,__unknown,421,322 +1724196300,Google,16211,17606 +1724196300,HTTPS,25183,33092 +1724196300,SSL client,16211,17606 +1724196300,ICMP,2542,0 +1724196300,__unknown,274924,301003 +1724196300,BitTorrent,310,496 +1724196300,DHCPv6,978,0 +1724196300,Google,30082,81351 +1724196300,DNS,16856,0 +1724196300,NTP,450,450 +1724196300,STUN,984,814 +1724196300,VKontakte,2863,6214 +1724196300,Odnoklassniki,3007,8086 +1724196300,HTTPS,72224,164497 +1724196300,SSL client,35952,95651 +1724196300,ICMP,3116,0 +1724196300,DNS over HTTPS,6964,18549 +1724196300,__unknown,240510,195114 +1724196300,BitTorrent,153,198 +1724196300,DHCPv6,163,0 +1724196300,Google APIs,1885,6434 +1724196300,Google,8346,10625 +1724196300,BitTorrent tracker,153,198 +1724196300,Chrome,629,725 +1724196300,DNS,51271,47897 +1724196300,HTTP,400415,21057344 +1724196300,Internet Explorer,762,660 +1724196300,Launchpad,2560,1984 +1724196300,Microsoft Update,641,507 +1724196300,NTP,26850,7350 +1724196300,Advanced Packaging Tool,389395,21029647 +1724196300,HTTPS,102924,183236 +1724196300,SSL client,18441,43113 +1724196300,Ubuntu Update Manager,384487,21025543 +1724196300,Yandex,6392,19749 +1724196300,Ubuntu,3198,3038 +1724196300,Microsoft CryptoAPI,1227,1010 +1724196300,ICMP,2749,0 +1724196300,Edge Chromium,3522,12047 +1724196300,DNS over TLS,2158,9539 +1724196300,DNS over HTTPS,38330,136271 +1724196600,__unknown,45760,58715 +1724196600,HTTP,689926,518328 +1724196600,HTTPS,882573,1037323 +1724196600,SSL client,767110,899707 +1724196600,Mail.Ru,767110,899707 +1724196600,__unknown,1244,1838 +1724196600,HTTPS,47567,19271 +1724196600,HTTPS,4137,6376 +1724196600,SSL client,4137,6376 +1724196600,Sharepoint Online,4137,6376 +1724196600,HTTPS,57957,62802 +1724196600,SSL client,53817,61054 +1724196600,ICMP,27480,27540 +1724196600,Telegram,53817,61054 +1724196600,__unknown,46723,48703 +1724196600,HTTPS,48222,46334 +1724196600,SSL client,23876,21428 +1724196600,Yandex,3038,2945 +1724196600,Google Play,20838,18483 +1724196600,Gmail,10754,36443 +1724196600,HTTP,611,638 +1724196600,Microsoft Update,611,638 +1724196600,TeamViewer,1570,8838 +1724196600,HTTPS,158179,238728 +1724196600,Mozilla,2302,4739 +1724196600,Avast,2364,25464 +1724196600,SSL client,83561,143657 +1724196600,Microsoft,17856,19481 +1724196600,Mail.Ru,9250,6574 +1724196600,Yandex,4746,7672 +1724196600,Microsoft CryptoAPI,611,638 +1724196600,Google Play,30776,14499 +1724196600,Office 365,1809,10657 +1724196600,GISMETEO,2134,9290 +1724196600,DNS over HTTPS,20550,51476 +1724196600,__unknown,27960,16323 +1724196600,Google APIs,6884,14600 +1724196600,Google,186072,205739 +1724196600,Dell,1051,4363 +1724196600,HTTPS,618289,1971034 +1724196600,WhatsApp,1919,5921 +1724196600,Avast,2364,25996 +1724196600,SSL client,353881,598077 +1724196600,Amazon Web Services,3259,21430 +1724196600,Microsoft,40578,94492 +1724196600,Mail.Ru,42489,41675 +1724196600,Yandex,21406,46978 +1724196600,Office 365,5427,26179 +1724196600,Microsoft Windows Live Services Authentication,42385,109682 +1724196600,Grammarly,1966,6943 +1724196600,DNS over HTTPS,4483,13952 +1724196600,HTTPS,53789,70624 +1724196600,SSL client,53789,70624 +1724196600,ICMP,7052,0 +1724196600,Telegram,53789,70624 +1724196600,HTTPS,9518,13373 +1724196600,SSL client,9518,13373 +1724196600,DNS over HTTPS,9518,13373 +1724196600,__unknown,1451,1308 +1724196600,HTTPS,3211,5323 +1724196600,ICMP,9360,9360 +1724196600,Google,5311,10123 +1724196600,Gmail,12202,10911 +1724196600,HTTPS,42759,76656 +1724196600,SSL client,30847,41615 +1724196600,ICMP,5412,0 +1724196600,Telegram,13334,20581 +1724196600,CoAP,2352,1728 +1724196600,__unknown,307301,300682 +1724196600,BitTorrent,310,496 +1724196600,Google APIs,100394,17956 +1724196600,Google,42897,119858 +1724196600,DNS,19304,0 +1724196600,Gmail,5712,7899 +1724196600,HTTP,641,507 +1724196600,Microsoft Update,641,507 +1724196600,NetBIOS-dgm,250,0 +1724196600,NTP,25230,5730 +1724196600,STUN,1066,962 +1724196600,HTTPS,209962,226338 +1724196600,SSL client,156328,159635 +1724196600,Microsoft CryptoAPI,641,507 +1724196600,Google Play,5035,6035 +1724196600,ICMP,5156,0 +1724196600,Grammarly,2290,7887 +1724196600,DNS over HTTPS,7272,23590 +1724196600,__unknown,114432,111276 +1724196600,DHCPv6,978,0 +1724196600,Google APIs,2351,6747 +1724196600,Google,25571,43732 +1724196600,QQ,414,1584 +1724196600,DNS,57536,48392 +1724196600,HTTP,279557,12720929 +1724196600,Launchpad,3200,2282 +1724196600,Microsoft Update,2359,9968 +1724196600,NetBIOS-dgm,243,0 +1724196600,NTP,14010,4260 +1724196600,SSL,1652,14125 +1724196600,STUN,1922,3300 +1724196600,Advanced Packaging Tool,255061,12421161 +1724196600,HTTPS,143331,330997 +1724196600,Apple sites,1802,4445 +1724196600,SSL client,46708,99180 +1724196600,Ubuntu Update Manager,159458,6994065 +1724196600,Yandex,1737,2650 +1724196600,Linux Mint,928,1062 +1724196600,Ubuntu,93319,5425584 +1724196600,Microsoft CryptoAPI,6300,14118 +1724196600,Google Play,8454,12372 +1724196600,Google Hangouts,1652,14125 +1724196600,ICMP,1222,0 +1724196600,Telegram,3809,15440 +1724196600,Edge Chromium,2695,7463 +1724196600,DNS over HTTPS,38246,130665 +1724196902,__unknown,56965,132684 +1724196902,HTTPS,204258,72717 +1724196902,__unknown,775,0 +1724196902,HTTPS,45976,51747 +1724196902,Apple sites,3062,5816 +1724196902,SSL client,3062,5816 +1724196902,Windows Live,28218,7287 +1724196902,HTTPS,37628,125523 +1724196902,SSL client,37628,125523 +1724196902,Microsoft,9410,118236 +1724196902,Google APIs,2087,7392 +1724196902,HTTPS,23084,26108 +1724196902,SSL client,23084,26108 +1724196902,Google Play,20997,18716 +1724196902,Google Drive,673623,24709680 +1724196902,Google,8429,5282 +1724196902,HTTPS,762880,24811087 +1724196902,Avast,2244,21230 +1724196902,SSL client,729795,24782398 +1724196902,Microsoft,8665,11096 +1724196902,Mail.Ru,6305,5841 +1724196902,Yandex,7388,9731 +1724196902,Google Play,20947,10188 +1724196902,GISMETEO,2194,9350 +1724196902,__unknown,57222,153592 +1724196902,OpenVPN,0,395 +1724196902,Dell,1051,4309 +1724196902,HTTP,1415,1364 +1724196902,Microsoft Update,154222,343593 +1724196902,Skype,3254,7019 +1724196902,Odnoklassniki,7360,13564 +1724196902,Steam,20798,33713 +1724196902,Advanced Packaging Tool,1415,1364 +1724196902,HTTPS,547651,1519191 +1724196902,WhatsApp,3165,5622 +1724196902,Apple sites,2110,9428 +1724196902,Bing Maps,1417,8805 +1724196902,SSL client,371321,669828 +1724196902,Ubuntu Update Manager,1415,1364 +1724196902,Microsoft,65591,100418 +1724196902,Mail.Ru,73870,75575 +1724196902,Yandex,24641,46689 +1724196902,Microsoft Azure,5528,6893 +1724196902,Apple Maps,1882,7561 +1724196902,Office 365,1522,1425 +1724196902,Microsoft Windows Live Services Authentication,7670,11569 +1724196902,Grammarly,2287,6828 +1724196902,DNS over HTTPS,3201,15369 +1724196902,HTTPS,7842,10923 +1724196902,SSL client,7842,10923 +1724196902,DNS over HTTPS,7842,10923 +1724196902,__unknown,1047,508 +1724196902,HTTP,675,425 +1724196902,__unknown,83812,45722 +1724196902,HTTPS,6696,12141 +1724196902,ICMP,868,0 +1724196902,__unknown,366198,247893 +1724196902,BitTorrent,310,496 +1724196902,DHCPv6,163,0 +1724196902,Google APIs,56066,49284 +1724196902,Google,33173,71464 +1724196902,DNS,17897,0 +1724196902,Gmail,37652,41234 +1724196902,HTTP,1990,1744 +1724196902,NetBIOS-ns,92,0 +1724196902,NTP,810,810 +1724196902,STUN,984,814 +1724196902,Odnoklassniki,3080,8904 +1724196902,HTTPS,177298,277874 +1724196902,Mozilla,1876,4611 +1724196902,SSL client,136207,188297 +1724196902,Microsoft CryptoAPI,1990,1744 +1724196902,ICMP,23476,0 +1724196902,Grammarly,2172,7869 +1724196902,DNS over HTTPS,10694,28378 +1724196902,__unknown,236797,1359450 +1724196902,Bing,4773,7879 +1724196902,BitTorrent,153,537 +1724196902,DHCPv6,978,0 +1724196902,Google APIs,15515,11797 +1724196902,Google,17542,34580 +1724196902,BitTorrent tracker,153,537 +1724196902,DNS,52687,51174 +1724196902,HTTP,103451,1744541 +1724196902,Launchpad,3200,2414 +1724196902,Microsoft Update,2264,1841 +1724196902,NTP,1260,1260 +1724196902,Steam,7602,134005 +1724196902,Advanced Packaging Tool,45559,639856 +1724196902,HTTPS,142420,283218 +1724196902,SSL client,48345,98722 +1724196902,Ubuntu Update Manager,38154,633660 +1724196902,Microsoft,29846,928260 +1724196902,Yandex,9181,42835 +1724196902,Ubuntu,5905,5622 +1724196902,Microsoft CryptoAPI,2264,1841 +1724196902,Google Play,2258,8816 +1724196902,ICMP,2101,0 +1724196902,Edge Chromium,4456,13489 +1724196902,DNS over HTTPS,42337,141277 +1724197200,Google,1117426,585302 +1724197200,HTTPS,1117426,585302 +1724197200,SSL client,1117426,585302 +1724197200,DNS over HTTPS,135603,315119 +1724197200,HTTPS,12222,11942 +1724197200,HTTPS,14303,27059 +1724197200,SSL client,3844,13755 +1724197200,Yandex,3844,13755 +1724197200,Google APIs,8386,22317 +1724197200,HTTP,526,443 +1724197200,Skype,2846,7907 +1724197200,TeamViewer,1450,8838 +1724197200,TwitchTV,6212,7155 +1724197200,HTTPS,70775,131146 +1724197200,Mozilla,2142,4639 +1724197200,Avast,1314,12606 +1724197200,SSL client,59035,110200 +1724197200,Microsoft,8788,21951 +1724197200,Mail.Ru,6241,5840 +1724197200,Microsoft CryptoAPI,526,443 +1724197200,Google Play,19456,9305 +1724197200,GISMETEO,2200,9642 +1724197200,__unknown,1303,1035 +1724197200,BITS,8531,478069 +1724197200,Google APIs,8429,15964 +1724197200,Google,114838,154859 +1724197200,MSN,2169,8106 +1724197200,HTTP,10216,480175 +1724197200,Skype,5035,92237 +1724197200,HTTPS,384282,823184 +1724197200,Avast,6824,25724 +1724197200,SSL client,311530,614571 +1724197200,Amazon Web Services,3265,21542 +1724197200,Microsoft,68813,142464 +1724197200,Mail.Ru,76685,68554 +1724197200,Yandex,11168,37834 +1724197200,Ubuntu,491,461 +1724197200,Apple Maps,2912,6877 +1724197200,Exchange Online,1228,8005 +1724197200,Office 365,6641,21954 +1724197200,Microsoft Windows Live Services Authentication,6435,17328 +1724197200,DNS over HTTPS,151081,355502 +1724197200,HTTPS,8514,11564 +1724197200,SSL client,8514,11564 +1724197200,DNS over HTTPS,8514,11564 +1724197200,Google,57539,43474 +1724197200,HTTPS,57539,43474 +1724197200,SSL client,57539,43474 +1724197200,Windows Live,1101,6529 +1724197200,HTTPS,1101,6529 +1724197200,SSL client,1101,6529 +1724197200,__unknown,8544,128809 +1724197200,__unknown,14835,36644 +1724197200,Google,12882,26172 +1724197200,HTTPS,16593,34762 +1724197200,SSL client,12882,26172 +1724197200,ICMP,1204,0 +1724197200,CoAP,1568,1152 +1724197200,__unknown,298576,379476 +1724197200,BitTorrent,310,496 +1724197200,DHCPv6,163,0 +1724197200,Google APIs,39455,9129 +1724197200,Google,24516,53200 +1724197200,DNS,24346,0 +1724197200,Gmail,23151,31395 +1724197200,HTTP,3024,8610 +1724197200,Microsoft Update,1317,1149 +1724197200,NetBIOS-dgm,250,0 +1724197200,NTP,24960,5460 +1724197200,STUN,2844,4078 +1724197200,Odnoklassniki,3067,8222 +1724197200,HTTPS,144198,200257 +1724197200,SSL client,91442,102853 +1724197200,Microsoft,1100,6224 +1724197200,Yandex,1253,907 +1724197200,Microsoft CryptoAPI,1924,2386 +1724197200,ICMP,5153,0 +1724197200,DNS over HTTPS,8802,27209 +1724197200,__unknown,317879,427835 +1724197200,Google APIs,35425,23825 +1724197200,Google,191567,86160 +1724197200,DNS,57715,50274 +1724197200,HTTP,83734,1064752 +1724197200,Internet Explorer,762,498 +1724197200,Launchpad,3200,2414 +1724197200,Microsoft Update,1963,1655 +1724197200,NTP,1710,1710 +1724197200,SSL,1652,14125 +1724197200,STUN,1860,3300 +1724197200,Advanced Packaging Tool,57916,991151 +1724197200,HTTPS,341895,338769 +1724197200,Avast,382,391 +1724197200,SSL client,238761,166236 +1724197200,Ubuntu Update Manager,48702,983329 +1724197200,Microsoft,1326,15894 +1724197200,VeriSign,1132,4282 +1724197200,Yandex,7462,35279 +1724197200,Ubuntu,7714,7240 +1724197200,Microsoft CryptoAPI,7656,11308 +1724197200,Microsoft WNS,1326,15894 +1724197200,Office 365,940,2318 +1724197200,Google Hangouts,1652,14125 +1724197200,ICMP,814,0 +1724197200,Edge Chromium,1641,4734 +1724197200,DNS over HTTPS,46926,144418 +1724197200,CoAP,588,432 +1724197500,HTTPS,60245,105382 +1724197500,SSL client,60245,105382 +1724197500,Yandex,60245,105382 +1724197500,Google,30399,44247 +1724197500,HTTPS,919273,255466 +1724197500,SSL client,919273,255466 +1724197500,Google Play,888874,211219 +1724197500,HTTPS,115127,499208 +1724197500,SSL client,115127,499208 +1724197500,Mail.Ru,115127,499208 +1724197500,HTTPS,161086,204990 +1724197500,SSL client,161086,204990 +1724197500,Telegram,161086,204990 +1724197500,HTTPS,15642,15505 +1724197500,HTTPS,193407,223754 +1724197500,SSL client,193407,223754 +1724197500,Mail.Ru,193407,223754 +1724197500,HTTPS,45309,39784 +1724197500,SSL client,11428,12174 +1724197500,Google Play,11428,12174 +1724197500,__unknown,423792,456832 +1724197500,Bing,9351,11897 +1724197500,Google APIs,2302,6169 +1724197500,Gmail,7045,4334 +1724197500,HTTPS,131835,140965 +1724197500,SSL client,70778,66253 +1724197500,Microsoft,12524,22043 +1724197500,Mail.Ru,38574,21203 +1724197500,Yandex,982,607 +1724197500,__unknown,25527,43886 +1724197500,Bing,3277,6482 +1724197500,Dropbox,1730,1680 +1724197500,Google,34721,52302 +1724197500,MSN,3587,9498 +1724197500,HTTP,1794,1206 +1724197500,Launchpad,640,430 +1724197500,SSL,1000,7918 +1724197500,Advanced Packaging Tool,1794,1206 +1724197500,HTTPS,325575,893011 +1724197500,WhatsApp,1799,5981 +1724197500,Bing Maps,6726,85475 +1724197500,Avast,2436,26101 +1724197500,SSL client,191635,580376 +1724197500,Amazon Web Services,3259,21512 +1724197500,Ubuntu Update Manager,1154,776 +1724197500,Microsoft,27082,32560 +1724197500,Mail.Ru,54589,80134 +1724197500,Yandex,22873,207415 +1724197500,GitHub,1718,5977 +1724197500,Microsoft Windows Live Services Authentication,16069,33500 +1724197500,Google Hangouts,1000,7918 +1724197500,Telegram,120,120 +1724197500,Grammarly,12568,9822 +1724197500,__unknown,187,228 +1724197500,HTTPS,45765,22928 +1724197500,__unknown,2279,1656 +1724197500,Telegram,2279,1656 +1724197500,Google,75382,62591 +1724197500,HTTPS,110370,83000 +1724197500,SSL client,75382,62591 +1724197500,HTTPS,25343,33668 +1724197500,SSL client,25343,33668 +1724197500,ICMP,820,0 +1724197500,Telegram,25343,33668 +1724197500,__unknown,485,138 +1724197500,Gmail,31228,134030 +1724197500,HTTPS,51619,150314 +1724197500,SSL client,31228,134030 +1724197500,ICMP,4808,2940 +1724197500,__unknown,406002,880381 +1724197500,BitTorrent,310,496 +1724197500,Google APIs,5253,15572 +1724197500,Google,26235,57735 +1724197500,DNS,19619,0 +1724197500,Gmail,14398,11525 +1724197500,HTTP,1925,1517 +1724197500,Microsoft Update,1925,1517 +1724197500,NetBIOS-dgm,243,0 +1724197500,NTP,12840,3090 +1724197500,STUN,1066,962 +1724197500,Odnoklassniki,3007,8205 +1724197500,HTTPS,118744,224660 +1724197500,SSL client,69059,125950 +1724197500,Microsoft CryptoAPI,1925,1517 +1724197500,Google Play,9435,15808 +1724197500,ICMP,6127,0 +1724197500,Google Sign in,6241,4269 +1724197500,Grammarly,2242,7887 +1724197500,DNS over HTTPS,10508,26555 +1724197500,__unknown,263411,324422 +1724197500,BitTorrent,153,198 +1724197500,DHCPv6,1141,0 +1724197500,Google APIs,6160,14538 +1724197500,Google,41116,78464 +1724197500,BitTorrent tracker,153,198 +1724197500,DNS,49490,48392 +1724197500,HTTP,57254,195894 +1724197500,Launchpad,3200,2348 +1724197500,Microsoft Update,1683,1325 +1724197500,NTP,1350,1350 +1724197500,SSL,1252,7972 +1724197500,Advanced Packaging Tool,36423,161176 +1724197500,HTTPS,167372,277421 +1724197500,SSL client,55679,122107 +1724197500,Ubuntu Update Manager,29066,155084 +1724197500,Yandex,7805,25005 +1724197500,Ubuntu,6282,6049 +1724197500,Microsoft CryptoAPI,2245,1788 +1724197500,Microsoft NCSI,1045,974 +1724197500,Google Hangouts,1252,7972 +1724197500,ICMP,1776,120 +1724197500,ICMP for IPv6,70,0 +1724197500,Telegram,4062,1635 +1724197500,Edge Chromium,2875,9452 +1724197500,DNS over HTTPS,40193,132664 +1724197799,HTTPS,30652,71386 +1724197799,SSL client,30652,71386 +1724197799,Yandex,30652,71386 +1724197799,HTTPS,72062,53950 +1724197799,ICMP,21730,0 +1724197799,Gmail,50452,75097 +1724197799,HTTPS,60351,78198 +1724197799,SSL client,50452,75097 +1724197799,Skype,4036,8741 +1724197799,HTTPS,52756,56018 +1724197799,Apple sites,3473,12573 +1724197799,SSL client,15523,36939 +1724197799,Microsoft,5052,8366 +1724197799,Microsoft Teams,2962,7259 +1724197799,HTTPS,4615,5406 +1724197799,__unknown,18517,34619 +1724197799,Dropbox,3342,2538 +1724197799,Google,995,4566 +1724197799,Gmail,6072,3594 +1724197799,HTTP,1601,2269 +1724197799,HTTPS,99962,250910 +1724197799,Mozilla,2144,4639 +1724197799,SSL client,81259,237443 +1724197799,Microsoft,2073,3723 +1724197799,VeriSign,1075,1826 +1724197799,Mail.Ru,14824,17475 +1724197799,Yandex,18558,163353 +1724197799,Microsoft CryptoAPI,1601,2269 +1724197799,uTorrent,14035,20454 +1724197799,Google Play,19216,17101 +1724197799,__unknown,81532,274614 +1724197799,Apple Update,3514,6858 +1724197799,Dropbox,2409,2882 +1724197799,Google APIs,9207,22964 +1724197799,Google,995,4567 +1724197799,MSN,6452,38097 +1724197799,HTTP,1648,3126 +1724197799,HTTPS,344870,910856 +1724197799,WhatsApp,3171,5688 +1724197799,Apple sites,31518,137288 +1724197799,iCloud,30354,62701 +1724197799,Bing Maps,5838,129898 +1724197799,SSL client,221871,620580 +1724197799,Microsoft,55012,78965 +1724197799,Mail.Ru,62878,49451 +1724197799,Yandex,2087,4373 +1724197799,Ubuntu,491,457 +1724197799,Microsoft CryptoAPI,1157,2669 +1724197799,Apple Maps,6517,21613 +1724197799,Exchange Online,1330,6455 +1724197799,Office 365,8752,33314 +1724197799,Microsoft Teams,2156,44993 +1724197799,Gmail,35623,24620 +1724197799,HTTPS,35623,24620 +1724197799,SSL client,35623,24620 +1724197799,__unknown,548,472 +1724197799,SSL,3125,9322 +1724197799,__unknown,637,7628 +1724197799,HTTPS,2466,5964 +1724197799,SSL client,2466,5964 +1724197799,ICMP,3280,0 +1724197799,DNS over HTTPS,2466,5964 +1724197799,__unknown,280939,291916 +1724197799,BitTorrent,463,496 +1724197799,Google APIs,38344,16260 +1724197799,Google,31406,74242 +1724197799,BitTorrent tracker,153,0 +1724197799,DNS,16706,0 +1724197799,Gmail,14377,11454 +1724197799,HTTP,1317,1134 +1724197799,Microsoft Update,1317,1134 +1724197799,NTP,25770,6270 +1724197799,PcAnywhere,60,0 +1724197799,STUN,2844,3748 +1724197799,Odnoklassniki,3067,8281 +1724197799,HTTPS,152096,182650 +1724197799,SSL client,93915,130963 +1724197799,Microsoft CryptoAPI,1317,1134 +1724197799,ICMP,7190,1560 +1724197799,Grammarly,4473,15775 +1724197799,DNS over HTTPS,5912,15486 +1724197799,__unknown,233253,212727 +1724197799,DHCPv6,978,0 +1724197799,Google APIs,33512,21314 +1724197799,Google,404176,9015473 +1724197799,Chrome,1275,743 +1724197799,DNS,50732,46603 +1724197799,HTTP,62302,501933 +1724197799,Launchpad,3200,2414 +1724197799,Microsoft Update,947,9165 +1724197799,NetBIOS-dgm,250,0 +1724197799,NTP,23884,6000 +1724197799,SSL,855,7032 +1724197799,Steam,11946,424864 +1724197799,Advanced Packaging Tool,30209,27547 +1724197799,HTTPS,609093,9249349 +1724197799,Apple sites,1914,9576 +1724197799,Avast,382,391 +1724197799,SSL client,450022,9093857 +1724197799,Ubuntu Update Manager,20995,19725 +1724197799,Yandex,8479,35544 +1724197799,Ubuntu,7355,6783 +1724197799,Microsoft CryptoAPI,3124,10896 +1724197799,Microsoft NCSI,865,974 +1724197799,Google Play,1683,10462 +1724197799,Google Hangouts,855,7032 +1724197799,ICMP,2092,0 +1724197799,Edge Chromium,6217,19512 +1724197799,DNS over HTTPS,35564,106795 +1724198100,SSL,31610,41223 +1724198100,SSL client,31610,41223 +1724198100,Google Hangouts,31610,41223 +1724198100,HTTPS,110876,142192 +1724198100,HTTPS,1936897,37435245 +1724198100,Google,620921,890849 +1724198100,HTTPS,620921,890849 +1724198100,SSL client,620921,890849 +1724198100,DNS over HTTPS,192633,435638 +1724198100,HTTPS,43197,37495 +1724198100,HTTPS,28976,1549830 +1724198100,ICMP,21730,0 +1724198100,Windows Live,77682,18401 +1724198100,HTTPS,141872,53219 +1724198100,SSL client,141872,53219 +1724198100,Google Play,64190,34818 +1724198100,HTTPS,25453,14106 +1724198100,SSL client,25453,14106 +1724198100,Google Play,25453,14106 +1724198100,HTTPS,258604,368808 +1724198100,__unknown,6428,14816 +1724198100,HTTP,651,634 +1724198100,Microsoft Update,651,634 +1724198100,HTTPS,86458,191806 +1724198100,Mozilla,10740,5854 +1724198100,Avast,1254,11894 +1724198100,SSL client,38603,152662 +1724198100,Microsoft,22623,132968 +1724198100,Mail.Ru,3986,1946 +1724198100,Microsoft CryptoAPI,651,634 +1724198100,DNS over HTTPS,2716,7848 +1724198100,__unknown,25572,26277 +1724198100,Dropbox,1631,1475 +1724198100,Google APIs,3026,7092 +1724198100,Google,1180680,559017 +1724198100,Windows Live,32158,18761 +1724198100,HTTP,10738,14172 +1724198100,Launchpad,706,574 +1724198100,Advanced Packaging Tool,1293,1104 +1724198100,HTTPS,1844534,1913712 +1724198100,Bing Maps,4475,149100 +1724198100,Mozilla,2142,4699 +1724198100,Avast,1644,6139 +1724198100,SSL client,1550048,1292400 +1724198100,Amazon Web Services,3325,21542 +1724198100,CloudFront,6207,1093 +1724198100,Microsoft,238719,429786 +1724198100,Mail.Ru,68468,55642 +1724198100,Yandex,4051,18929 +1724198100,GitHub,1652,5977 +1724198100,Ubuntu,587,530 +1724198100,Office 365,3645,14647 +1724198100,Microsoft Windows Live Services Authentication,7670,11569 +1724198100,DNS over HTTPS,200464,458332 +1724198100,__unknown,4155128,1114600 +1724198100,HTTPS,52477,22930 +1724198100,HTTPS,13585,19831 +1724198100,SSL client,13585,19831 +1724198100,DNS over HTTPS,13585,19831 +1724198100,__unknown,544,456 +1724198100,HTTPS,54838,21711 +1724198100,ICMP,8692,7380 +1724198100,__unknown,7016,14798 +1724198100,Google,16156,17529 +1724198100,HTTPS,27628,33496 +1724198100,SSL client,16156,17529 +1724198100,Apple Maps,2780,7025 +1724198100,ICMP,848,0 +1724198100,__unknown,335950,428456 +1724198100,BitTorrent,310,496 +1724198100,DHCPv6,163,0 +1724198100,Google APIs,2517,7614 +1724198100,Google,32365,75201 +1724198100,DNS,15901,0 +1724198100,Gmail,16375,15302 +1724198100,HTTP,587,2005 +1724198100,NetBIOS-dgm,243,0 +1724198100,NTP,720,720 +1724198100,STUN,984,888 +1724198100,Odnoklassniki,3007,8145 +1724198100,HTTPS,116533,183324 +1724198100,SSL client,92696,140109 +1724198100,Yandex,1900,2912 +1724198100,Google Play,22055,8266 +1724198100,ICMP,28692,0 +1724198100,Google Sign in,10765,12358 +1724198100,Edge Chromium,587,2005 +1724198100,Grammarly,2241,7889 +1724198100,DNS over HTTPS,10216,28288 +1724198100,__unknown,279561,240003 +1724198100,BitTorrent,153,537 +1724198100,Google APIs,2011,6435 +1724198100,Google,11621,31436 +1724198100,BitTorrent tracker,153,537 +1724198100,DNS,49744,51441 +1724198100,HTTP,51141,65552 +1724198100,Launchpad,3200,2480 +1724198100,Microsoft Update,2604,2136 +1724198100,NTP,24510,5010 +1724198100,Advanced Packaging Tool,29535,27011 +1724198100,HTTPS,152359,326917 +1724198100,Avast,937,4462 +1724198100,SSL client,35798,171732 +1724198100,Ubuntu Update Manager,21004,19725 +1724198100,Yandex,7005,104441 +1724198100,Ubuntu,7163,6638 +1724198100,Microsoft CryptoAPI,7502,6204 +1724198100,Office 365,6299,16797 +1724198100,ICMP,2202,0 +1724198100,Google Sign in,6217,4106 +1724198100,Edge Chromium,4396,12840 +1724198100,DNS over TLS,2158,9541 +1724198100,DNS over HTTPS,53086,188216 +1724198401,__unknown,89726,165914 +1724198401,HTTPS,91572,127904 +1724198401,SSL client,91572,127904 +1724198401,Telegram,91572,127904 +1724198401,HTTPS,4137,6442 +1724198401,SSL client,4137,6442 +1724198401,Sharepoint Online,4137,6442 +1724198401,__unknown,90883,2585525 +1724198401,HTTPS,4820,1480 +1724198401,HTTPS,191767,123927 +1724198401,SSL client,175065,117020 +1724198401,Mail.Ru,111984,42100 +1724198401,Sharepoint Online,8672,13375 +1724198401,Telegram,54409,61545 +1724198401,Google APIs,2027,7188 +1724198401,HTTPS,38397,58039 +1724198401,SSL client,29908,45589 +1724198401,Yandex,3940,13878 +1724198401,Google Play,23941,24523 +1724198401,Google,8677,5142 +1724198401,Gmail,5956,3917 +1724198401,HTTP,3561,3897 +1724198401,Microsoft Update,3066,3498 +1724198401,HTTPS,2009765,629066 +1724198401,Mozilla,8059,6806 +1724198401,SSL client,1969877,574402 +1724198401,Microsoft,21824,30549 +1724198401,Mail.Ru,30709,29359 +1724198401,Yandex,5104,3894 +1724198401,Microsoft CryptoAPI,3561,3897 +1724198401,Apple Maps,2924,7488 +1724198401,Google Play,1887237,486908 +1724198401,Grammarly,2311,7827 +1724198401,__unknown,6593,12546 +1724198401,Bing,3490,6486 +1724198401,Google APIs,5030,13554 +1724198401,Dell,1051,4304 +1724198401,Gmail,26409,31014 +1724198401,HTTP,1999,1604 +1724198401,Launchpad,706,574 +1724198401,Microsoft Update,646,440 +1724198401,Skype,1863,86332 +1724198401,SSL,1445,1392 +1724198401,Advanced Packaging Tool,1353,1164 +1724198401,IMAPS,26409,31014 +1724198401,HTTPS,511119,1167155 +1724198401,WhatsApp,1799,5921 +1724198401,Apple sites,1923,4826 +1724198401,Avast,2496,25460 +1724198401,SSL client,208395,445504 +1724198401,Microsoft,52803,96045 +1724198401,Mail.Ru,53131,43897 +1724198401,Yandex,27343,63211 +1724198401,Ubuntu,647,590 +1724198401,Microsoft CryptoAPI,646,440 +1724198401,Office 365,7498,34172 +1724198401,Microsoft Windows Live Services Authentication,23913,34811 +1724198401,Google Hangouts,1445,1392 +1724198401,DNS over HTTPS,2492,7449 +1724198401,Gmail,61582,35458 +1724198401,HTTPS,61582,35458 +1724198401,SSL client,61582,35458 +1724198401,__unknown,2237,4539 +1724198401,Google,17601,21358 +1724198401,HTTPS,17601,21358 +1724198401,SSL client,17601,21358 +1724198401,Telegram,1259,556 +1724198401,__unknown,577,2755 +1724198401,Chrome,875,3227 +1724198401,HTTP,875,3227 +1724198401,HTTPS,9212,10952 +1724198401,__unknown,1295753,840925 +1724198401,BitTorrent,310,496 +1724198401,Google APIs,5575,17285 +1724198401,Google,37089,72339 +1724198401,DNS,18886,0 +1724198401,Gmail,17066,44032 +1724198401,NTP,12390,2640 +1724198401,STUN,4704,7488 +1724198401,VKontakte,2684,5793 +1724198401,HTTPS,124971,272180 +1724198401,SSL client,63667,140296 +1724198401,Yandex,1253,847 +1724198401,ICMP,5307,0 +1724198401,ICMP for IPv6,70,0 +1724198401,DNS over HTTPS,10244,32841 +1724198401,__unknown,191804,194627 +1724198401,DHCPv6,1141,0 +1724198401,Google APIs,3343,8406 +1724198401,Google,61967,160607 +1724198401,DNS,45449,43583 +1724198401,HTTP,51907,63528 +1724198401,Launchpad,3200,2282 +1724198401,Microsoft Update,1287,1150 +1724198401,NTP,720,720 +1724198401,SSL,797,7092 +1724198401,VKontakte,2383,5589 +1724198401,Advanced Packaging Tool,34212,31247 +1724198401,HTTPS,176476,403790 +1724198401,Avast,382,391 +1724198401,SSL client,81185,234872 +1724198401,Ubuntu Update Manager,26268,24689 +1724198401,Yandex,7547,33794 +1724198401,Ubuntu,6510,6116 +1724198401,Microsoft CryptoAPI,4738,4138 +1724198401,Google Hangouts,797,7092 +1724198401,ICMP,2573,0 +1724198401,Telegram,2025,7361 +1724198401,Edge Chromium,2635,6823 +1724198401,DNS over HTTPS,117999,371747 +1724198401,_err_4907,1816,10707 +1724198700,__unknown,189554,160853 +1724198700,__unknown,131580,110682 +1724198700,__unknown,201815,109466 +1724198700,__unknown,90984,76712 +1724198700,SSL,31688,41162 +1724198700,SSL client,31688,41162 +1724198700,Google Hangouts,31688,41162 +1724198700,__unknown,178647,96726 +1724198700,HTTPS,214749,66301 +1724198700,__unknown,4219,7914 +1724198700,HTTPS,43551,40970 +1724198700,Google APIs,2460,6487 +1724198700,HTTPS,56272,47628 +1724198700,SSL client,46851,34946 +1724198700,Google Play,44391,28459 +1724198700,__unknown,182394,173745 +1724198700,HTTPS,119999,186956 +1724198700,Avast,2436,25138 +1724198700,SSL client,90332,148320 +1724198700,Microsoft,10836,18446 +1724198700,Mail.Ru,60331,35693 +1724198700,Yandex,10020,14799 +1724198700,Office 365,1641,7350 +1724198700,Telegram,180,180 +1724198700,GISMETEO,2134,9284 +1724198700,Microsoft Teams,2934,37610 +1724198700,__unknown,2479710,3289040 +1724198700,Google,93798,74184 +1724198700,MSN,8367,15174 +1724198700,OpenVPN,0,395 +1724198700,Gmail,3061,7441 +1724198700,HTTP,1597,1583 +1724198700,Microsoft Update,4248,10621 +1724198700,Skype,8466,95999 +1724198700,TeamViewer,1233,7119 +1724198700,Steam,10951,19032 +1724198700,Advanced Packaging Tool,1274,1193 +1724198700,IMAPS,3061,7441 +1724198700,HTTPS,2314788,15184185 +1724198700,WhatsApp,3102,5682 +1724198700,iCloud,1609,5829 +1724198700,Bing Maps,2752,19088 +1724198700,Mozilla,4186,10006 +1724198700,Avast,2004,4342 +1724198700,SSL client,790688,4058144 +1724198700,Ad Nexus,3666,6023 +1724198700,Amazon Web Services,3379,21430 +1724198700,Ubuntu Update Manager,1274,1193 +1724198700,Microsoft,261222,846770 +1724198700,Mail.Ru,270236,383015 +1724198700,Yandex,29856,2375076 +1724198700,Apple Maps,1882,6581 +1724198700,Google Play,937,7041 +1724198700,Office 365,5366,5255 +1724198700,Microsoft Windows Live Services Authentication,67033,124293 +1724198700,Grammarly,8318,20406 +1724198700,DNS over HTTPS,18547,78938 +1724198700,Google,84837,93180 +1724198700,HTTPS,84837,93180 +1724198700,SSL client,84837,93180 +1724198700,CoAP,4214,3096 +1724198700,HTTPS,11308,16221 +1724198700,ICMP,658,0 +1724198700,__unknown,421,371 +1724198700,Google,12931,15818 +1724198700,HTTPS,29760,38875 +1724198700,SSL client,12931,15818 +1724198700,ICMP,5116,4500 +1724198700,__unknown,391313,324375 +1724198700,BitTorrent,310,496 +1724198700,Google APIs,4562,16463 +1724198700,Google Drive,8903,11363 +1724198700,Google,35703,95302 +1724198700,DNS,16377,0 +1724198700,Gmail,19578,14437 +1724198700,HTTP,1674,8762 +1724198700,Microsoft Update,981,815 +1724198700,NetBIOS-dgm,250,0 +1724198700,NTP,13020,3270 +1724198700,STUN,4704,7488 +1724198700,Odnoklassniki,2948,8205 +1724198700,HTTPS,132341,232882 +1724198700,SSL client,72947,146617 +1724198700,Microsoft,693,7947 +1724198700,Yandex,1253,847 +1724198700,Microsoft CryptoAPI,981,815 +1724198700,Microsoft WNS,693,7947 +1724198700,ICMP,25795,600 +1724198700,ICMP for IPv6,70,0 +1724198700,__unknown,329634,167405 +1724198700,BitTorrent,153,198 +1724198700,DHCPv6,978,0 +1724198700,Google APIs,69405,47594 +1724198700,Google,22290,46071 +1724198700,BitTorrent tracker,153,198 +1724198700,Chrome,857,3237 +1724198700,DNS,53805,46037 +1724198700,HTTP,124407195,2786519 +1724198700,Launchpad,2560,1984 +1724198700,NTP,360,360 +1724198700,Advanced Packaging Tool,27003,24982 +1724198700,HTTPS,163488,276810 +1724198700,SSL client,102023,150507 +1724198700,Ubuntu Update Manager,20825,19746 +1724198700,Yandex,3761,39180 +1724198700,Ubuntu,4893,4631 +1724198700,Microsoft CryptoAPI,617,2179 +1724198700,Microsoft NCSI,865,974 +1724198700,ICMP,1428,0 +1724198700,Edge Chromium,2108,5457 +1724198700,Grammarly,2191,7821 +1724198700,DNS over HTTPS,97054,289848 +1724199000,DNS over HTTPS,27931,72805 +1724199000,Google,100093,103551 +1724199000,HTTPS,139038,167485 +1724199000,SSL client,139038,167485 +1724199000,Telegram,38945,63934 +1724199000,HTTPS,160101,57333 +1724199000,__unknown,50761,51499 +1724199000,__unknown,360,7635 +1724199000,HTTPS,20300,8210 +1724199000,SSL client,20300,8210 +1724199000,Google Play,20300,8210 +1724199000,HTTPS,5656,4307 +1724199000,__unknown,411875,546263 +1724199000,Bing,3377,6544 +1724199000,MSN,2891,7465 +1724199000,HTTPS,1504190,75280385 +1724199000,Avast,1254,12110 +1724199000,SSL client,48305,682381 +1724199000,Microsoft,31660,46398 +1724199000,Mail.Ru,5412,5539 +1724199000,Yandex,3711,604325 +1724199000,DNS over HTTPS,2662,8430 +1724199000,__unknown,390720,339421 +1724199000,Bing,3589,6483 +1724199000,MSN,3537,10458 +1724199000,HTTP,5084,10805 +1724199000,Microsoft Update,641,501 +1724199000,HTTPS,389195,770507 +1724199000,SSL client,296597,546439 +1724199000,Microsoft,84336,118529 +1724199000,Mail.Ru,106235,110217 +1724199000,Yandex,13122,143260 +1724199000,Google Update,4443,10304 +1724199000,Microsoft CryptoAPI,641,501 +1724199000,Apple Maps,1962,5246 +1724199000,Exchange Online,3906,22477 +1724199000,Office 365,14235,48388 +1724199000,Sharepoint Online,2701,5078 +1724199000,Microsoft Windows Live Services Authentication,51411,69342 +1724199000,Grammarly,12476,9981 +1724199000,DNS over HTTPS,18184,50819 +1724199000,Lenovo,1049,2226 +1724199000,Google,1758729,853879 +1724199000,HTTPS,1758729,853879 +1724199000,SSL client,1758729,853879 +1724199000,__unknown,1382,540 +1724199000,Google,22951,33196 +1724199000,HTTPS,33321,60152 +1724199000,SSL client,22951,33196 +1724199000,__unknown,2243,1356 +1724199000,Windows Live,8464,29141 +1724199000,SSL,2743,9189 +1724199000,HTTPS,15424,40200 +1724199000,SSL client,8464,29141 +1724199000,__unknown,700,1084 +1724199000,HTTPS,45269,34321 +1724199000,ICMP,1476,0 +1724199000,__unknown,400641,333545 +1724199000,BITS,4937,25803 +1724199000,BitTorrent,310,496 +1724199000,DHCPv6,163,0 +1724199000,Google APIs,40664,18203 +1724199000,Google,28323,81978 +1724199000,DNS,17759,0 +1724199000,HTTP,4937,25803 +1724199000,NTP,49110,10110 +1724199000,STUN,984,888 +1724199000,Odnoklassniki,3007,8026 +1724199000,HTTPS,232239,195132 +1724199000,SSL client,193817,132701 +1724199000,Microsoft,922,7532 +1724199000,Atlassian,118773,12011 +1724199000,ICMP,20056,780 +1724199000,DNS over HTTPS,18432,47185 +1724199000,CoAP,1176,864 +1724199000,__unknown,230930,270560 +1724199000,Google,35122,86776 +1724199000,Chrome,1089,3293 +1724199000,DNS,52569,46814 +1724199000,HTTP,52556,79483 +1724199000,Launchpad,3200,2480 +1724199000,Microsoft Update,2910,2318 +1724199000,NTP,630,630 +1724199000,Odnoklassniki,2515,2338 +1724199000,Advanced Packaging Tool,28953,26387 +1724199000,HTTPS,150205,370339 +1724199000,Apple sites,1908,4664 +1724199000,SSL client,57927,172497 +1724199000,Ubuntu Update Manager,19739,18499 +1724199000,Microsoft,633,7946 +1724199000,Mail.Ru,1084,4780 +1724199000,Yandex,9866,51245 +1724199000,Ubuntu,6864,6330 +1724199000,Microsoft CryptoAPI,5676,6876 +1724199000,Microsoft WNS,633,7946 +1724199000,ICMP,2722,0 +1724199000,Telegram,1802,589 +1724199000,Edge Chromium,5630,17495 +1724199000,Grammarly,4228,15290 +1724199000,DNS over TLS,2290,9540 +1724199000,DNS over HTTPS,84241,258304 +1724199299,HTTPS,365964,102937 +1724199299,__unknown,1484,2060 +1724199299,__unknown,127087,3165717 +1724199299,HTTPS,69822,23249 +1724199299,SSL client,63829,12532 +1724199299,Yandex,63829,12532 +1724199299,BITS,7438,41276 +1724199299,HTTP,7438,41276 +1724199299,HTTPS,33657,50003 +1724199299,SSL client,4173,11615 +1724199299,Microsoft,11611,52891 +1724199299,__unknown,15227,10483 +1724199299,Google APIs,2975,11154 +1724199299,Google,425654,167661 +1724199299,HTTPS,485723,293784 +1724199299,Mozilla,2242,4799 +1724199299,Avast,1122,11557 +1724199299,SSL client,460834,255798 +1724199299,Microsoft,11348,26376 +1724199299,Mail.Ru,9601,11260 +1724199299,Yandex,2834,6391 +1724199299,GISMETEO,2260,9344 +1724199299,DNS over HTTPS,4541,11774 +1724199299,Lenovo,2798,7256 +1724199299,__unknown,9767,19775 +1724199299,Bing,1869,9269 +1724199299,Dropbox,3254,1403 +1724199299,Google APIs,2928,7094 +1724199299,Google,1319,1700 +1724199299,HTTP,102383,4930280 +1724199299,Microsoft Update,1951,28877 +1724199299,Odnoklassniki,7360,13504 +1724199299,Advanced Packaging Tool,102383,4930280 +1724199299,HTTPS,301657,921414 +1724199299,WhatsApp,2153,9568 +1724199299,SSL client,148699,261144 +1724199299,Ubuntu Update Manager,99087,4900606 +1724199299,Microsoft,33863,77239 +1724199299,Mail.Ru,74265,58164 +1724199299,Yandex,8660,22782 +1724199299,Ubuntu,8103,44736 +1724199299,Apple Maps,2792,6678 +1724199299,Exchange Online,1512,6467 +1724199299,Office 365,6911,19583 +1724199299,DNS over HTTPS,7810,21999 +1724199299,__unknown,187,228 +1724199299,__unknown,29859,39391 +1724199299,Google,60756,41991 +1724199299,HTTPS,60756,41991 +1724199299,SSL client,60756,41991 +1724199299,HTTPS,3239,5399 +1724199299,__unknown,144,3553 +1724199299,HTTPS,28068,26611 +1724199299,__unknown,515134,658743 +1724199299,BitTorrent,310,496 +1724199299,DHCPv6,978,0 +1724199299,Google APIs,33534,25525 +1724199299,Google,37431,75485 +1724199299,Kaspersky,608,607 +1724199299,DNS,14724,336 +1724199299,Gmail,15011,23952 +1724199299,HTTP,608,607 +1724199299,NTP,630,630 +1724199299,SSL,797,7091 +1724199299,STUN,984,888 +1724199299,HTTPS,131180,663313 +1724199299,WhatsApp,1834,7933 +1724199299,SSL client,100628,562849 +1724199299,Yandex,1251,6151 +1724199299,Google Hangouts,797,7091 +1724199299,ICMP,22108,0 +1724199299,JetBrains,10373,416758 +1724199299,Grammarly,2231,7887 +1724199299,DNS over HTTPS,12925,37583 +1724199299,__unknown,324191,288847 +1724199299,BitTorrent,153,537 +1724199299,DHCPv6,163,0 +1724199299,Google,36112,55361 +1724199299,BitTorrent tracker,153,537 +1724199299,DNS,48579,46729 +1724199299,HTTP,45451,68712 +1724199299,Launchpad,3200,2480 +1724199299,Microsoft Update,556,8853 +1724199299,NetBIOS-dgm,250,0 +1724199299,NTP,1350,1350 +1724199299,STUN,1230,1110 +1724199299,Odnoklassniki,2515,2338 +1724199299,Advanced Packaging Tool,30581,28159 +1724199299,HTTPS,134318,222748 +1724199299,SSL client,50522,104537 +1724199299,Amazon Web Services,3139,21370 +1724199299,Ubuntu Update Manager,24985,23523 +1724199299,Yandex,3270,10040 +1724199299,Ubuntu,3749,3535 +1724199299,Microsoft CryptoAPI,1686,9869 +1724199299,ICMP,2141,0 +1724199299,Edge Chromium,3282,9468 +1724199299,DNS over TLS,2224,9541 +1724199299,DNS over HTTPS,95280,297221 +1724199600,HTTPS,211807,376646 +1724199600,SSL client,211807,376646 +1724199600,Yandex,211807,376646 +1724199600,HTTPS,26218,39913 +1724199600,SSL client,26218,39913 +1724199600,Yandex,26218,39913 +1724199600,HTTPS,61422,80023 +1724199600,SSL client,54469,62036 +1724199600,Telegram,54469,62036 +1724199600,HTTPS,41317,22256 +1724199600,SSL client,41317,22256 +1724199600,Google Play,41317,22256 +1724199600,__unknown,674,1984 +1724199600,Gmail,5962,3709 +1724199600,HTTPS,92111,122355 +1724199600,Mozilla,2425,1296 +1724199600,Avast,1314,12798 +1724199600,SSL client,45761,70671 +1724199600,Microsoft,4230,7450 +1724199600,Mail.Ru,5416,5539 +1724199600,Yandex,7966,5191 +1724199600,uTorrent,14066,20393 +1724199600,GISMETEO,2134,9284 +1724199600,DNS over HTTPS,11374,27216 +1724199600,__unknown,2940,846 +1724199600,Dropbox,6295,223013 +1724199600,Google APIs,3189,7129 +1724199600,MSN,1426,7460 +1724199600,HTTP,5615,11563 +1724199600,Odnoklassniki,9200,16835 +1724199600,Advanced Packaging Tool,1274,1193 +1724199600,HTTPS,697034,1371097 +1724199600,WhatsApp,3103,5742 +1724199600,Apple sites,2021,8587 +1724199600,Avast,1314,12974 +1724199600,SSL client,119871,413225 +1724199600,Ubuntu Update Manager,1274,1193 +1724199600,Microsoft,48967,72826 +1724199600,Mail.Ru,30840,20596 +1724199600,Yandex,3782,10117 +1724199600,Google Update,4341,10370 +1724199600,Apple Maps,1943,7494 +1724199600,Google Play,4657,9434 +1724199600,Office 365,1689,7788 +1724199600,Microsoft Windows Live Services Authentication,6491,16466 +1724199600,DNS over HTTPS,5054,16448 +1724199600,__unknown,261,180 +1724199600,ICMP,4988,0 +1724199600,ICMP,3936,0 +1724199600,Google,8646,13496 +1724199600,HTTPS,8646,13496 +1724199600,SSL client,8646,13496 +1724199600,ICMP,1476,0 +1724199600,__unknown,120,889 +1724199600,Google,61842,55404 +1724199600,HTTPS,61842,55404 +1724199600,SSL client,61842,55404 +1724199600,ICMP,738,0 +1724199600,__unknown,240406,577639 +1724199600,BitTorrent,310,496 +1724199600,Google APIs,27336,8243 +1724199600,Google,28522,67056 +1724199600,DNS,20072,244 +1724199600,Gmail,17007,32240 +1724199600,HTTP,981,817 +1724199600,Microsoft Update,981,817 +1724199600,NetBIOS-dgm,243,0 +1724199600,NTP,12930,3180 +1724199600,STUN,2844,4188 +1724199600,Odnoklassniki,3007,8163 +1724199600,HTTPS,144420,212099 +1724199600,Mozilla,2553,5039 +1724199600,SSL client,81864,131841 +1724199600,Yandex,1191,6151 +1724199600,Microsoft CryptoAPI,981,817 +1724199600,ICMP,30771,1680 +1724199600,DNS over HTTPS,2248,4949 +1724199600,__unknown,575650,259551 +1724199600,DHCPv6,978,0 +1724199600,Google APIs,2350,6687 +1724199600,Google,11641,20058 +1724199600,DNS,49344,44807 +1724199600,HTTP,55654,133296 +1724199600,Launchpad,3200,2480 +1724199600,Microsoft Update,1627,1317 +1724199600,NTP,13560,3810 +1724199600,SSL,855,7031 +1724199600,Advanced Packaging Tool,33193,87709 +1724199600,HTTPS,185936,376307 +1724199600,Mozilla,2758,1739 +1724199600,SSL client,35624,201209 +1724199600,CloudFront,8096,134858 +1724199600,Ubuntu Update Manager,21163,20097 +1724199600,Microsoft,1362,8915 +1724199600,VeriSign,566,2141 +1724199600,Yandex,3420,13531 +1724199600,Ubuntu,6325,5830 +1724199600,Microsoft CryptoAPI,6619,7099 +1724199600,Microsoft WNS,633,7945 +1724199600,Google Hangouts,855,7031 +1724199600,ICMP,1836,0 +1724199600,Telegram,2132,826 +1724199600,Edge Chromium,4743,12279 +1724199600,Grammarly,2008,7405 +1724199600,DNS over HTTPS,63341,192425 +1724199900,HTTPS,158866,192063 +1724199900,HTTPS,47269,24603 +1724199900,HTTPS,6275,4347 +1724199900,HTTPS,3435,7528 +1724199900,SSL client,3435,7528 +1724199900,Yandex,3435,7528 +1724199900,__unknown,10320,15688 +1724199900,Google APIs,3035,11155 +1724199900,HTTPS,83183,106465 +1724199900,SSL client,44132,67766 +1724199900,Microsoft,19321,17042 +1724199900,Mail.Ru,8602,10838 +1724199900,uTorrent,11040,19494 +1724199900,GISMETEO,2134,9237 +1724199900,__unknown,3686,3618 +1724199900,Dropbox,6188,4712 +1724199900,Google APIs,10832,34477 +1724199900,MSN,3271,9503 +1724199900,HTTP,2563,3789 +1724199900,Launchpad,574,496 +1724199900,Skype,2775,14094 +1724199900,Odnoklassniki,9200,16955 +1724199900,Advanced Packaging Tool,1976,1784 +1724199900,HTTPS,235671,503254 +1724199900,SSL client,118316,206507 +1724199900,Amazon Web Services,3265,21542 +1724199900,CloudFront,2265,1747 +1724199900,Microsoft,24946,42050 +1724199900,Mail.Ru,37965,26663 +1724199900,Yandex,4423,7479 +1724199900,Ubuntu,1402,1288 +1724199900,Microsoft Azure,2538,9042 +1724199900,Sharepoint Online,3505,8619 +1724199900,Microsoft Windows Live Services Authentication,7730,11629 +1724199900,Edge Chromium,587,2005 +1724199900,DNS over HTTPS,2146,10786 +1724199900,__unknown,720,476 +1724199900,__unknown,2535,2761 +1724199900,SSL,3161,9322 +1724199900,HTTPS,28209,15217 +1724199900,ICMP,1530,0 +1724199900,Telegram,875,508 +1724199900,CoAP,3332,2448 +1724199900,__unknown,421,322 +1724199900,Google,25915,58241 +1724199900,HTTPS,54970,97056 +1724199900,SSL client,25915,58241 +1724199900,ICMP,1150,0 +1724199900,__unknown,302272,272174 +1724199900,BitTorrent,310,496 +1724199900,DHCPv6,163,0 +1724199900,Google APIs,2125,6891 +1724199900,Google,36667,72091 +1724199900,DNS,16117,0 +1724199900,Gmail,19697,14987 +1724199900,NTP,2520,2520 +1724199900,STUN,984,888 +1724199900,HTTPS,105586,135585 +1724199900,Mozilla,2615,1712 +1724199900,SSL client,61104,95681 +1724199900,ICMP,10960,4140 +1724199900,DNS over HTTPS,27701,68511 +1724199900,__unknown,207062,159967 +1724199900,BitTorrent,153,198 +1724199900,DHCPv6,978,0 +1724199900,Google APIs,15297,86778 +1724199900,Google,56489,211592 +1724199900,BitTorrent tracker,153,198 +1724199900,Blackberry browser,628,662 +1724199900,DNS,57170,55104 +1724199900,HTTP,46350,66269 +1724199900,Launchpad,3200,2480 +1724199900,NTP,630,630 +1724199900,Advanced Packaging Tool,30984,28459 +1724199900,HTTPS,185074,471990 +1724199900,SSL client,85504,325655 +1724199900,Ubuntu Update Manager,23627,22235 +1724199900,Yandex,6823,18412 +1724199900,Ubuntu,4582,4201 +1724199900,Microsoft CryptoAPI,816,740 +1724199900,Google Play,6413,11667 +1724199900,ICMP,2572,0 +1724199900,Edge Chromium,6684,20237 +1724199900,DNS over HTTPS,54635,174790 +1724200200,__unknown,1244,1838 +1724200200,HTTPS,172726,634808 +1724200200,SSL client,119970,522363 +1724200200,Mail.Ru,119970,522363 +1724200200,HTTPS,4197,6442 +1724200200,SSL client,4197,6442 +1724200200,Sharepoint Online,4197,6442 +1724200200,HTTPS,48712,74697 +1724200200,HTTPS,5786,10720 +1724200200,Google APIs,2087,7269 +1724200200,HTTPS,60925,58189 +1724200200,SSL client,48420,53028 +1724200200,Yandex,2708,2747 +1724200200,Google Play,43625,43012 +1724200200,__unknown,8933,17727 +1724200200,Google,10064,16759 +1724200200,MSN,4302,64195 +1724200200,Gmail,10144,5732 +1724200200,HTTP,611,768 +1724200200,Microsoft Update,611,768 +1724200200,HTTPS,103956,220420 +1724200200,Mozilla,2302,4799 +1724200200,Avast,1314,11416 +1724200200,SSL client,52955,155452 +1724200200,Microsoft,11399,30538 +1724200200,Mail.Ru,11681,11439 +1724200200,Microsoft CryptoAPI,611,768 +1724200200,Office 365,1749,10574 +1724200200,__unknown,15715,27214 +1724200200,Bing,3522,6479 +1724200200,Google,184032,195907 +1724200200,Dell,2138,8668 +1724200200,HTTP,436,932 +1724200200,Skype,2583,8278 +1724200200,Odnoklassniki,9200,16835 +1724200200,HTTPS,443548,645649 +1724200200,WhatsApp,1859,5921 +1724200200,Apple sites,2087,7209 +1724200200,SSL client,332285,431788 +1724200200,Microsoft,32195,66683 +1724200200,Mail.Ru,63775,54737 +1724200200,Yandex,14347,36927 +1724200200,Office 365,5776,20177 +1724200200,Grammarly,12630,9888 +1724200200,DNS over HTTPS,995,4585 +1724200200,ICMP,2788,0 +1724200200,HTTPS,35981,15052 +1724200200,__unknown,56709,29092 +1724200200,HTTPS,20745,32528 +1724200200,SSL client,17534,27113 +1724200200,ICMP,2652,0 +1724200200,Telegram,17534,27113 +1724200200,__unknown,60,2127 +1724200200,Google,7823,12403 +1724200200,HTTP,1217,20759 +1724200200,HTTPS,11184,17862 +1724200200,SSL client,7823,12403 +1724200200,ICMP,2132,0 +1724200200,__unknown,399686,425789 +1724200200,BitTorrent,310,496 +1724200200,DHCPv6,163,0 +1724200200,Google APIs,94280,26811 +1724200200,Google,185242,134363 +1724200200,DNS,25871,0 +1724200200,Gmail,15277,15257 +1724200200,HTTP,492,487 +1724200200,NetBIOS-dgm,250,0 +1724200200,NTP,24870,5370 +1724200200,STUN,2844,4188 +1724200200,Odnoklassniki,3007,8086 +1724200200,HTTPS,340655,318906 +1724200200,SSL client,308981,279374 +1724200200,Yandex,7229,82449 +1724200200,ICMP,3761,0 +1724200200,Grammarly,2250,7947 +1724200200,DNS over HTTPS,14592,45019 +1724200200,__unknown,314098,4207673 +1724200200,Google APIs,52431,50904 +1724200200,Google,13413,23406 +1724200200,QQ,414,1584 +1724200200,DNS,52599,48222 +1724200200,HTTP,60538,87328 +1724200200,Launchpad,3200,2480 +1724200200,Microsoft Update,2569,2027 +1724200200,NetBIOS-dgm,243,0 +1724200200,NTP,13290,3540 +1724200200,SSL,1652,14123 +1724200200,VKontakte,2503,5653 +1724200200,Advanced Packaging Tool,31712,29089 +1724200200,HTTPS,142948,245666 +1724200200,Apple sites,1475,5541 +1724200200,SSL client,80983,142376 +1724200200,Ubuntu Update Manager,23720,22297 +1724200200,Yandex,10016,43449 +1724200200,Ubuntu,7148,6753 +1724200200,Microsoft CryptoAPI,5745,4804 +1724200200,Google Hangouts,1652,14123 +1724200200,ICMP,1772,0 +1724200200,Telegram,3813,15021 +1724200200,Edge Chromium,9379,27748 +1724200200,DNS over TLS,2158,9539 +1724200200,DNS over HTTPS,85417,264745 +1724200500,__unknown,80052,121775 +1724200500,HTTPS,158045,38062 +1724200500,SSL client,158045,38062 +1724200500,Mail.Ru,158045,38062 +1724200500,HTTPS,11809,10085 +1724200500,Google APIs,4174,14629 +1724200500,HTTPS,46674,55060 +1724200500,SSL client,41660,52743 +1724200500,Yandex,4946,7373 +1724200500,Google Play,32540,30741 +1724200500,__unknown,109966,122546 +1724200500,HTTPS,55846,121309 +1724200500,SSL client,27974,89240 +1724200500,Microsoft,4219,7391 +1724200500,Mail.Ru,11689,11380 +1724200500,Yandex,9036,54906 +1724200500,Office 365,3030,15563 +1724200500,__unknown,17575,23848 +1724200500,Dropbox,1842,1962 +1724200500,Google,44242,55649 +1724200500,Dell,1051,4307 +1724200500,Odnoklassniki,1840,3391 +1724200500,Steam,2111,4916 +1724200500,HTTPS,300798,1123454 +1724200500,WhatsApp,3103,5742 +1724200500,Apple sites,1978,9629 +1724200500,SSL client,205064,946137 +1724200500,Amazon Web Services,3199,21490 +1724200500,Microsoft,38671,69854 +1724200500,Mail.Ru,33708,24907 +1724200500,Yandex,40123,599856 +1724200500,GitHub,1652,6065 +1724200500,Apple Maps,2792,7432 +1724200500,Office 365,7743,89794 +1724200500,Microsoft Windows Live Services Authentication,22601,40546 +1724200500,Grammarly,4303,13771 +1724200500,DNS over HTTPS,3017,11952 +1724200500,HTTPS,53855,70582 +1724200500,SSL client,53855,70582 +1724200500,Telegram,53855,70582 +1724200500,HTTPS,8990,13594 +1724200500,SSL client,8990,13594 +1724200500,DNS over HTTPS,8990,13594 +1724200500,ICMP,2632,0 +1724200500,Google Drive,54290,23192 +1724200500,HTTPS,54290,23192 +1724200500,SSL client,54290,23192 +1724200500,ICMP,8800,0 +1724200500,__unknown,43817,55130 +1724200500,Google,19941,27168 +1724200500,HTTPS,19941,27168 +1724200500,SSL client,19941,27168 +1724200500,ICMP,758,0 +1724200500,__unknown,354655,285911 +1724200500,BitTorrent,310,496 +1724200500,Google APIs,11450,39070 +1724200500,Google Drive,7397,10406 +1724200500,Google,24653,58995 +1724200500,Skype Auth,700,398 +1724200500,DNS,18652,0 +1724200500,Gmail,15909,19446 +1724200500,HTTP,587,503 +1724200500,NTP,24420,4920 +1724200500,Skype,700,398 +1724200500,STUN,984,888 +1724200500,Odnoklassniki,3067,8205 +1724200500,HTTPS,121557,233570 +1724200500,Mozilla,1876,4611 +1724200500,SSL client,69895,154193 +1724200500,Yandex,1253,907 +1724200500,Microsoft CryptoAPI,587,503 +1724200500,ICMP,4220,840 +1724200500,Grammarly,2102,7602 +1724200500,DNS over HTTPS,35238,90779 +1724200500,__unknown,159961,152696 +1724200500,BitTorrent,153,537 +1724200500,DHCPv6,1141,0 +1724200500,Google APIs,7051,20123 +1724200500,Google Drive,16510,6661 +1724200500,Google,11759,19981 +1724200500,BitTorrent tracker,153,537 +1724200500,DNS,54080,52898 +1724200500,HTTP,45824,67114 +1724200500,Internet Explorer,871,600 +1724200500,Launchpad,3200,2480 +1724200500,Microsoft Update,1287,1001 +1724200500,NTP,810,810 +1724200500,VKontakte,2382,5459 +1724200500,Steam,1274,7475 +1724200500,Advanced Packaging Tool,27858,25547 +1724200500,HTTPS,119038,189161 +1724200500,SSL client,49628,90676 +1724200500,Ubuntu Update Manager,21088,19851 +1724200500,Yandex,5285,16123 +1724200500,Ubuntu,4420,4130 +1724200500,Microsoft CryptoAPI,1972,1978 +1724200500,ICMP,2050,0 +1724200500,Edge Chromium,5917,16294 +1724200500,Grammarly,1960,7463 +1724200500,DNS over TLS,2290,9541 +1724200500,DNS over HTTPS,72360,228876 +1724200800,__unknown,2776,4782 +1724200800,HTTPS,45753,64150 +1724200800,SSL client,45753,64150 +1724200800,Telegram,45753,64150 +1724200800,Windows Live,32469,7411 +1724200800,Skype,4036,8741 +1724200800,HTTPS,45158,132873 +1724200800,SSL client,45158,132873 +1724200800,Microsoft,8653,116721 +1724200800,HTTPS,6363,7432 +1724200800,__unknown,3144,3170 +1724200800,HTTP,526,443 +1724200800,Skype,2847,7906 +1724200800,HTTPS,57993,114757 +1724200800,Mozilla,2242,4739 +1724200800,SSL client,41730,93829 +1724200800,Microsoft,11551,39809 +1724200800,Mail.Ru,15667,13303 +1724200800,Yandex,3702,6112 +1724200800,Microsoft CryptoAPI,526,443 +1724200800,Office 365,3434,15132 +1724200800,Grammarly,2287,6828 +1724200800,__unknown,75478,94548 +1724200800,Dropbox,2960,1361 +1724200800,Gmail,9806,15418 +1724200800,HTTP,2604,121220 +1724200800,Microsoft Update,919,767 +1724200800,Skype,9303,100463 +1724200800,IMAPS,9806,15418 +1724200800,HTTPS,252688,795586 +1724200800,SSL client,167304,344944 +1724200800,CloudFront,2265,1747 +1724200800,Microsoft,39678,85086 +1724200800,Mail.Ru,43497,40852 +1724200800,Yandex,19470,39853 +1724200800,Microsoft CryptoAPI,1445,1210 +1724200800,Google Play,1235,7708 +1724200800,Office 365,1809,7788 +1724200800,Microsoft Windows Live Services Authentication,24780,34687 +1724200800,Grammarly,12501,9981 +1724200800,DNS over HTTPS,995,4586 +1724200800,HTTPS,45885,63389 +1724200800,SSL client,45885,63389 +1724200800,Telegram,45885,63389 +1724200800,__unknown,187,228 +1724200800,HTTPS,44460,25481 +1724200800,ICMP,42968,0 +1724200800,HTTP,671,517 +1724200800,__unknown,277,244 +1724200800,Google,6572,15490 +1724200800,HTTPS,26867,27859 +1724200800,SSL client,6572,15490 +1724200800,ICMP,656,0 +1724200800,__unknown,857184,69102262 +1724200800,BitTorrent,310,496 +1724200800,Google APIs,69377,24747 +1724200800,Google,21943,50493 +1724200800,DNS,21851,0 +1724200800,Gmail,8041,78291 +1724200800,HTTP,560,463 +1724200800,NetBIOS-dgm,250,0 +1724200800,NTP,12660,2910 +1724200800,STUN,984,888 +1724200800,Odnoklassniki,2487,7415 +1724200800,HTTPS,172947,259820 +1724200800,SSL client,106816,170701 +1724200800,Yandex,1253,907 +1724200800,Microsoft CryptoAPI,560,463 +1724200800,Google Play,3715,8848 +1724200800,ICMP,7440,0 +1724200800,DNS over HTTPS,11019,30433 +1724200800,__unknown,297708,300330 +1724200800,Bing,2153,6376 +1724200800,BITS,5754,81153 +1724200800,DHCPv6,978,0 +1724200800,Google,198189,76043 +1724200800,Chrome,5903,472852 +1724200800,DNS,67367,56913 +1724200800,HTTP,195316,16245960 +1724200800,Launchpad,3200,2480 +1724200800,NTP,13560,3810 +1724200800,Advanced Packaging Tool,166129,15638950 +1724200800,HTTPS,293961,295828 +1724200800,Apple sites,1991,7142 +1724200800,Avast,382,391 +1724200800,SSL client,213764,122844 +1724200800,Ubuntu Update Manager,158676,15632652 +1724200800,Microsoft,7344,98557 +1724200800,VeriSign,1132,4282 +1724200800,Yandex,9930,33424 +1724200800,MDNS,364,0 +1724200800,Ubuntu,5594,5193 +1724200800,Microsoft CryptoAPI,2756,5636 +1724200800,Microsoft NCSI,1028,974 +1724200800,Microsoft WNS,1590,17404 +1724200800,ICMP,688,0 +1724200800,Edge Chromium,3462,11404 +1724200800,DNS over HTTPS,61533,180513 +1724201100,HTTPS,39522,59889 +1724201100,SSL client,39522,59889 +1724201100,Sharepoint Online,39522,59889 +1724201100,HTTPS,771206,925176 +1724201100,SSL client,771206,925176 +1724201100,Mail.Ru,771206,925176 +1724201100,HTTPS,183535,102703 +1724201100,SSL client,183535,102703 +1724201100,Google Play,183535,102703 +1724201100,HTTPS,3412,15234 +1724201100,HTTPS,45631,19335 +1724201100,HTTPS,255755,264568 +1724201100,SSL client,30815,44629 +1724201100,Telegram,30815,44629 +1724201100,__unknown,360,7635 +1724201100,HTTPS,54409,64622 +1724201100,SSL client,54409,64622 +1724201100,Telegram,54409,64622 +1724201100,HTTPS,31350,33194 +1724201100,SSL client,20938,18370 +1724201100,Google Play,20938,18370 +1724201100,__unknown,193968,206600 +1724201100,TeamViewer,1448,8867 +1724201100,HTTPS,56563,108696 +1724201100,SSL client,27806,55367 +1724201100,Microsoft,4311,7392 +1724201100,Mail.Ru,5384,5539 +1724201100,Yandex,1133,907 +1724201100,Office 365,1869,7788 +1724201100,Microsoft Windows Live Services Authentication,8640,21226 +1724201100,Google Sign in,5021,3648 +1724201100,__unknown,457821,517479 +1724201100,Bing,3292,6479 +1724201100,Google APIs,95540299,2267796 +1724201100,Google,65794,40052 +1724201100,MSN,2069,13737 +1724201100,HTTP,527,1364 +1724201100,HTTPS,95852581,2763708 +1724201100,WhatsApp,1859,6041 +1724201100,SSL client,95710318,2517609 +1724201100,Amazon Web Services,3199,21490 +1724201100,Microsoft,22129,45481 +1724201100,Mail.Ru,47884,47081 +1724201100,Yandex,19539,41285 +1724201100,Apple Maps,1882,7561 +1724201100,Exchange Online,1231,6471 +1724201100,Office 365,3088,13744 +1724201100,Google Hangouts,619,7031 +1724201100,Edge Chromium,527,1364 +1724201100,Grammarly,1175,6962 +1724201100,DNS over HTTPS,2296,8065 +1724201100,HTTPS,13920,20381 +1724201100,SSL client,13920,20381 +1724201100,DNS over HTTPS,13920,20381 +1724201100,ICMP,2924,0 +1724201100,HTTPS,6419,6424 +1724201100,__unknown,29890,27327 +1724201100,HTTP,643,408 +1724201100,SSL,2737,9256 +1724201100,ICMP,984,0 +1724201100,__unknown,481,1853 +1724201100,Google,41287,43473 +1724201100,HTTPS,45205,111272 +1724201100,SSL client,41287,43473 +1724201100,ICMP,1186,0 +1724201100,DNS over HTTPS,5069,15156 +1724201100,__unknown,407490,441507 +1724201100,BitTorrent,310,496 +1724201100,DHCPv6,163,0 +1724201100,Google APIs,64755,27776 +1724201100,Google,23491,58004 +1724201100,DNS,20793,0 +1724201100,Gmail,14600,57593 +1724201100,NetBIOS-dgm,243,0 +1724201100,NTP,1260,1260 +1724201100,STUN,984,888 +1724201100,Odnoklassniki,2455,2218 +1724201100,HTTPS,140317,192829 +1724201100,SSL client,114473,162553 +1724201100,Yandex,1253,907 +1724201100,Google Play,3339,3219 +1724201100,ICMP,2968,0 +1724201100,Grammarly,2332,7888 +1724201100,DNS over HTTPS,32074,80558 +1724201100,__unknown,228679,199740 +1724201100,BitTorrent,153,198 +1724201100,Google APIs,76072142,1778614 +1724201100,Google,22106,51129 +1724201100,BitTorrent tracker,153,198 +1724201100,DNS,59162,57194 +1724201100,Gmail,6376,7774 +1724201100,HTTP,89898,698310 +1724201100,Launchpad,2560,1984 +1724201100,Microsoft Update,39576,623933 +1724201100,NTP,360,360 +1724201100,Advanced Packaging Tool,28943,26524 +1724201100,Windows Update,37617,622297 +1724201100,HTTPS,76204179,2014710 +1724201100,SSL client,76121468,1900940 +1724201100,Ubuntu Update Manager,21004,19698 +1724201100,Yandex,7707,36820 +1724201100,Ubuntu,6229,5764 +1724201100,Microsoft CryptoAPI,3106,2601 +1724201100,ICMP,6326,60 +1724201100,Telegram,2495,906 +1724201100,Google Sign in,6219,4274 +1724201100,Edge Chromium,8325,24966 +1724201100,Grammarly,1939,7402 +1724201100,DNS over TLS,4712,19078 +1724201100,DNS over HTTPS,69006,231541 +1724201400,HTTPS,26947,35158 +1724201400,HTTPS,91506,134582 +1724201400,SSL client,91506,134582 +1724201400,Telegram,91506,134582 +1724201400,HTTPS,53623,63952 +1724201400,SSL client,53623,63952 +1724201400,Telegram,53623,63952 +1724201400,HTTPS,44190,42743 +1724201400,SSL client,32312,30483 +1724201400,Google Play,32312,30483 +1724201400,__unknown,1446,13221 +1724201400,Dropbox,3342,2538 +1724201400,Google,5908,20049 +1724201400,Google Analytics,3932,6763 +1724201400,HTTP,1469,1419 +1724201400,HTTPS,117519,141779 +1724201400,Mozilla,2144,4699 +1724201400,SSL client,47806,88362 +1724201400,Microsoft,10571,18442 +1724201400,VeriSign,943,976 +1724201400,Mail.Ru,11625,11380 +1724201400,Yandex,7448,15722 +1724201400,Microsoft CryptoAPI,1469,1419 +1724201400,Office 365,2836,8769 +1724201400,__unknown,2189,4767 +1724201400,Google,30846,44783 +1724201400,HTTP,1424,1007 +1724201400,Microsoft Update,1424,1007 +1724201400,Steam,21103,27539 +1724201400,HTTPS,270355,489455 +1724201400,WhatsApp,2986,5682 +1724201400,Avast,2436,25485 +1724201400,SSL client,163878,272341 +1724201400,Amazon Web Services,3259,21430 +1724201400,Microsoft,33501,52362 +1724201400,Mail.Ru,44093,37095 +1724201400,Yandex,10577,20901 +1724201400,Microsoft CryptoAPI,1424,1007 +1724201400,Apple Maps,2834,7374 +1724201400,Office 365,1749,7788 +1724201400,Microsoft Windows Live Services Authentication,16314,34958 +1724201400,DNS over HTTPS,2786,9100 +1724201400,DNS over HTTPS,181066,403718 +1724201400,Gmail,35634,24948 +1724201400,HTTPS,35634,24948 +1724201400,SSL client,35634,24948 +1724201400,__unknown,684,392 +1724201400,HTTPS,1395,7306 +1724201400,SSL client,1395,7306 +1724201400,Siri,1395,7306 +1724201400,__unknown,47958,26460 +1724201400,Google,9650,15996 +1724201400,HTTPS,17286,30422 +1724201400,SSL client,9650,15996 +1724201400,ICMP,15372,0 +1724201400,__unknown,408377,489762 +1724201400,BitTorrent,310,496 +1724201400,DHCPv6,978,0 +1724201400,Google APIs,31513,15918 +1724201400,Google Drive,154097,4543628 +1724201400,Google,55814,166262 +1724201400,DNS,23941,0 +1724201400,Gmail,14187,44483 +1724201400,HTTP,816,740 +1724201400,NTP,12750,3000 +1724201400,Odnoklassniki,5522,10560 +1724201400,HTTPS,355302,4912105 +1724201400,SSL client,262446,4781758 +1724201400,Yandex,1313,907 +1724201400,Microsoft CryptoAPI,816,740 +1724201400,Apple Maps,2684,7304 +1724201400,ICMP,5074,0 +1724201400,__unknown,218674,201955 +1724201400,DHCPv6,163,0 +1724201400,Google APIs,2999,2374 +1724201400,Google,49016,78547 +1724201400,DNS,48912,48301 +1724201400,Gmail,6142,8350 +1724201400,HTTP,56256,93928 +1724201400,Launchpad,3200,2480 +1724201400,Microsoft Update,642,503 +1724201400,NetBIOS-dgm,250,0 +1724201400,NTP,27210,7710 +1724201400,SSL,1710,14063 +1724201400,STUN,984,888 +1724201400,Steam,2209,21164 +1724201400,Advanced Packaging Tool,37033,34113 +1724201400,HTTPS,197247,718681 +1724201400,Avast,382,391 +1724201400,SSL client,66808,187893 +1724201400,Ubuntu Update Manager,29041,27321 +1724201400,Microsoft,693,7947 +1724201400,Yandex,7315,87675 +1724201400,Ubuntu,5217,4773 +1724201400,Microsoft CryptoAPI,3513,2989 +1724201400,Microsoft WNS,693,7947 +1724201400,Apple Maps,8149,410965 +1724201400,Google Hangouts,1710,14063 +1724201400,ICMP,1944,0 +1724201400,ICMP for IPv6,70,0 +1724201400,Edge Chromium,2815,8749 +1724201400,DNS over HTTPS,52769,156564 +1724201699,Windows Live,42721,14429 +1724201699,HTTPS,140803,74011 +1724201699,SSL client,140803,74011 +1724201699,Google Play,98082,59582 +1724201699,__unknown,1131451,306400 +1724201699,__unknown,642,0 +1724201699,Skype,2768,8939 +1724201699,HTTPS,31934,171059 +1724201699,SSL client,12720,141100 +1724201699,Microsoft,7050,124968 +1724201699,Microsoft Teams,2902,7193 +1724201699,HTTPS,10913,18123 +1724201699,SSL client,1190,6104 +1724201699,Google Play,1190,6104 +1724201699,__unknown,11189,21008 +1724201699,Google APIs,2191,6891 +1724201699,Google,132336,4098083 +1724201699,TeamViewer,2969,17694 +1724201699,HTTPS,216234,4558485 +1724201699,SSL client,156576,4156275 +1724201699,Microsoft,8672,24093 +1724201699,Mail.Ru,5384,5539 +1724201699,Google Sign in,5024,3975 +1724201699,__unknown,22456,35205 +1724201699,Bing,3488,6480 +1724201699,Google,1319,1700 +1724201699,HTTPS,453757,794605 +1724201699,Mozilla,2142,4699 +1724201699,Avast,2766,17301 +1724201699,SSL client,112252,172860 +1724201699,CloudFront,2265,1747 +1724201699,Microsoft,11260,23705 +1724201699,Mail.Ru,65401,69160 +1724201699,Yandex,8274,24842 +1724201699,Microsoft Windows Live Services Authentication,15337,23226 +1724201699,DNS over HTTPS,3141,15371 +1724201699,HTTPS,18469,27391 +1724201699,SSL client,18469,27391 +1724201699,DNS over HTTPS,18469,27391 +1724201699,CoAP,5292,3888 +1724201699,ICMP,2214,0 +1724201699,HTTPS,25508,11140 +1724201699,ICMP,1148,0 +1724201699,__unknown,818,788 +1724201699,Google,7460,11479 +1724201699,HTTPS,57640,60759 +1724201699,SSL client,43709,24399 +1724201699,Apple Maps,5454,19573 +1724201699,Google Play,36249,12920 +1724201699,ICMP,3052,1800 +1724201699,__unknown,415389,490199 +1724201699,BITS,5511,89467 +1724201699,BitTorrent,310,496 +1724201699,Google,50582,68870 +1724201699,Chrome,1275,869 +1724201699,DNS,16346,0 +1724201699,Gmail,7102,4232 +1724201699,HTTP,6786,90336 +1724201699,NetBIOS-dgm,243,0 +1724201699,NTP,13290,3540 +1724201699,Odnoklassniki,3067,8162 +1724201699,HTTPS,111028,209313 +1724201699,Apple sites,1658,10507 +1724201699,SSL client,62409,91771 +1724201699,Microsoft,5511,89467 +1724201699,ICMP,31419,0 +1724201699,DNS over HTTPS,4312,13257 +1724201699,__unknown,301594,248002 +1724201699,BitTorrent,153,537 +1724201699,DHCPv6,978,0 +1724201699,Google APIs,7088,22189 +1724201699,Google,52891,121936 +1724201699,BitTorrent tracker,153,537 +1724201699,DNS,46538,47812 +1724201699,Gmail,9992,6711 +1724201699,HTTP,50480,56012 +1724201699,Internet Explorer,930,600 +1724201699,Launchpad,3200,2414 +1724201699,Microsoft Update,2273,1828 +1724201699,NTP,990,990 +1724201699,STUN,984,888 +1724201699,Advanced Packaging Tool,33113,30439 +1724201699,HTTPS,172350,339084 +1724201699,Mozilla,2460,5066 +1724201699,SSL client,89632,205005 +1724201699,Ubuntu Update Manager,26343,24809 +1724201699,Yandex,6400,16028 +1724201699,Ubuntu,6677,6427 +1724201699,Microsoft CryptoAPI,4185,3362 +1724201699,ICMP,1844,0 +1724201699,Telegram,1827,577 +1724201699,Grammarly,1863,7406 +1724201699,DNS over TLS,2224,9540 +1724201699,DNS over HTTPS,69407,223253 +1724202000,SSL,24762,33665 +1724202000,SSL client,24762,33665 +1724202000,Google Hangouts,24762,33665 +1724202000,Google,172287,207248 +1724202000,HTTPS,172287,207248 +1724202000,SSL client,172287,207248 +1724202000,HTTPS,7046,18065 +1724202000,SSL client,7046,18065 +1724202000,Yandex,7046,18065 +1724202000,DNS over HTTPS,254326,584697 +1724202000,HTTPS,48884,58889 +1724202000,SSL client,4137,6443 +1724202000,Sharepoint Online,4137,6443 +1724202000,HTTPS,33489,16065 +1724202000,__unknown,360,7635 +1724202000,HTTPS,60273,72793 +1724202000,SSL client,54409,61976 +1724202000,Telegram,54409,61976 +1724202000,HTTPS,25950,20547 +1724202000,SSL client,2774,2747 +1724202000,Yandex,2774,2747 +1724202000,__unknown,2748,2008 +1724202000,Dropbox,8116,1511 +1724202000,Google,686014,268564 +1724202000,TwitchTV,6311,7003 +1724202000,HTTPS,767089,374750 +1724202000,Mozilla,2142,4639 +1724202000,SSL client,740745,343164 +1724202000,Microsoft,10365,29216 +1724202000,Google Play,22262,23902 +1724202000,Office 365,5535,8329 +1724202000,__unknown,18611,30059 +1724202000,Bing,3335,6546 +1724202000,Google APIs,13757,9699 +1724202000,Dell,1051,4364 +1724202000,Skype,5965,22131 +1724202000,VKontakte,20996,36895 +1724202000,HTTPS,317031,849688 +1724202000,WhatsApp,1858,5905 +1724202000,SSL client,166827,289920 +1724202000,Microsoft,25855,61482 +1724202000,Mail.Ru,69503,67308 +1724202000,Yandex,23333,69934 +1724202000,Apple Maps,1816,7495 +1724202000,Office 365,3032,11561 +1724202000,ICMP,5590,0 +1724202000,HTTPS,53755,63958 +1724202000,SSL client,53755,63958 +1724202000,Telegram,53755,63958 +1724202000,HTTPS,37397,15814 +1724202000,HTTPS,32114,27243 +1724202000,__unknown,43407,14678 +1724202000,Gmail,12205,10846 +1724202000,HTTPS,36385,33914 +1724202000,Avast,7561,2841 +1724202000,SSL client,19766,13687 +1724202000,ICMP,6060,3720 +1724202000,__unknown,296131,456841 +1724202000,BitTorrent,310,496 +1724202000,DHCPv6,163,0 +1724202000,Google APIs,17673,35008 +1724202000,Google Drive,5292,2137 +1724202000,Google,35278,65994 +1724202000,DNS,22178,0 +1724202000,Gmail,14487,15573 +1724202000,HTTP,369,1368 +1724202000,NTP,25230,5730 +1724202000,STUN,82,74 +1724202000,Odnoklassniki,5523,10715 +1724202000,HTTPS,206313,568166 +1724202000,SSL client,123641,148927 +1724202000,Yandex,1560,7519 +1724202000,Atlassian,44197,13349 +1724202000,ICMP,7104,1260 +1724202000,ICMP for IPv6,70,0 +1724202000,DNS over HTTPS,5302,16344 +1724202000,CoAP,784,576 +1724202000,__unknown,191718,215351 +1724202000,BITS,4031,18344 +1724202000,Google APIs,21831,37401 +1724202000,Google,26704,63226 +1724202000,Kaspersky,547,541 +1724202000,DNS,55013,49519 +1724202000,HTTP,58392,85350 +1724202000,Launchpad,3200,2480 +1724202000,Microsoft Update,2573,2011 +1724202000,NTP,14280,4530 +1724202000,STUN,984,888 +1724202000,VKontakte,2442,5590 +1724202000,Advanced Packaging Tool,31032,28499 +1724202000,HTTPS,157886,353008 +1724202000,SSL client,68392,154676 +1724202000,Ubuntu Update Manager,23627,22237 +1724202000,Yandex,12274,34230 +1724202000,Ubuntu,6474,6137 +1724202000,Microsoft CryptoAPI,6024,5000 +1724202000,ICMP,2812,0 +1724202000,Telegram,1965,7301 +1724202000,Edge Chromium,2635,6823 +1724202000,Grammarly,1923,7405 +1724202000,DNS over HTTPS,105232,326434 +1724202300,HTTPS,32924,69255 +1724202300,SSL client,32924,69255 +1724202300,Yandex,32924,69255 +1724202300,HTTPS,13779,724080 +1724202300,SSL client,13779,724080 +1724202300,Yandex,13779,724080 +1724202300,HTTPS,53789,70630 +1724202300,SSL client,53789,70630 +1724202300,ICMP,34020,33960 +1724202300,Telegram,53789,70630 +1724202300,HTTPS,94261,80984 +1724202300,SSL client,42248,31673 +1724202300,Google Play,42248,31673 +1724202300,__unknown,172336,173832 +1724202300,Google Drive,7334,9893 +1724202300,Google,2368,9323 +1724202300,MSN,1049,5865 +1724202300,HTTP,1152,2346 +1724202300,Skype,2596,13997 +1724202300,Advanced Packaging Tool,1152,2346 +1724202300,HTTPS,75459,180748 +1724202300,Avast,1314,12478 +1724202300,SSL client,42328,141454 +1724202300,Microsoft,10386,18504 +1724202300,Mail.Ru,6273,5841 +1724202300,Yandex,8014,16032 +1724202300,Microsoft Teams,2994,49521 +1724202300,__unknown,1490092,1497787 +1724202300,Bing,12306,13870 +1724202300,MSN,3499,67341 +1724202300,Dell,1051,4308 +1724202300,DNS,333,657 +1724202300,HTTP,65223882,152745480 +1724202300,Skype,7536,89904 +1724202300,TeamViewer,1584,8893 +1724202300,Steam,1992,4916 +1724202300,Advanced Packaging Tool,1861,1723 +1724202300,HTTPS,498929,1403386 +1724202300,WhatsApp,3106,5682 +1724202300,Mozilla,2297,4739 +1724202300,Avast,3066,17151 +1724202300,SSL client,159610,446847 +1724202300,Ubuntu Update Manager,1274,1193 +1724202300,Microsoft,42691,84985 +1724202300,Mail.Ru,56379,72756 +1724202300,Yandex,25719,70640 +1724202300,Ubuntu,587,530 +1724202300,Office 365,1490,7344 +1724202300,DNS over HTTPS,10107,30198 +1724202300,__unknown,1508,732 +1724202300,SSL,10268,6452 +1724202300,HTTPS,4296,7132 +1724202300,__unknown,1566,1333 +1724202300,HTTPS,23791,14657 +1724202300,Apple Maps,1661,5957 +1724202300,ICMP,6478,0 +1724202300,__unknown,204,1716 +1724202300,Google,28048,22037 +1724202300,HTTPS,50050,47522 +1724202300,SSL client,28048,22037 +1724202300,ICMP,2040,0 +1724202300,__unknown,272487,590308 +1724202300,BITS,3398,14183 +1724202300,BitTorrent,310,496 +1724202300,DHCPv6,978,0 +1724202300,Google APIs,6051,14892 +1724202300,Google Drive,13042,31489 +1724202300,Google,45560,104174 +1724202300,DNS,19498,0 +1724202300,Gmail,22194,27422 +1724202300,HTTP,3398,14183 +1724202300,NetBIOS-dgm,250,0 +1724202300,NTP,12750,3000 +1724202300,Odnoklassniki,2515,2338 +1724202300,HTTPS,137265,258604 +1724202300,SSL client,97781,189592 +1724202300,Microsoft,3398,14183 +1724202300,ICMP,7945,0 +1724202300,Google Sign in,6231,4329 +1724202300,DNS over HTTPS,4023,11605 +1724202300,CoAP,980,720 +1724202300,__unknown,274783,308854 +1724202300,Apple Update,1793,5531 +1724202300,BitTorrent,153,198 +1724202300,DHCPv6,163,0 +1724202300,Google APIs,12695,33198 +1724202300,Google,25888,44761 +1724202300,BitTorrent tracker,153,198 +1724202300,DNS,56012,50968 +1724202300,HTTP,64498,552924 +1724202300,Launchpad,2560,1984 +1724202300,Microsoft Update,2265,1828 +1724202300,NetBIOS-dgm,243,0 +1724202300,NTP,2070,2070 +1724202300,STUN,984,888 +1724202300,Steam,4687,96091 +1724202300,Advanced Packaging Tool,44166,427780 +1724202300,HTTPS,131280,1518724 +1724202300,SSL client,60485,126639 +1724202300,Ubuntu Update Manager,26927,155932 +1724202300,Yandex,3631,10402 +1724202300,Ubuntu,15954,271247 +1724202300,Microsoft CryptoAPI,2852,2331 +1724202300,Apple Maps,17101,1307422 +1724202300,Google Play,9657,10535 +1724202300,ICMP,3140,0 +1724202300,Edge Chromium,4336,12204 +1724202300,Grammarly,1903,7465 +1724202300,DNS over TLS,2158,9538 +1724202300,DNS over HTTPS,73194,238331 +1724202600,__unknown,3109775,1607106 +1724202600,__unknown,41998,63889 +1724202600,HTTPS,85970,99480 +1724202600,SSL client,42833,52601 +1724202600,Yandex,42833,52601 +1724202600,HTTPS,99531,281447 +1724202600,SSL client,99531,281447 +1724202600,Yandex,99531,281447 +1724202600,HTTPS,479616,1143788 +1724202600,SSL client,479616,1143788 +1724202600,Yandex,479616,1143788 +1724202600,HTTPS,105379,527707 +1724202600,SSL client,105379,527707 +1724202600,Yandex,105379,527707 +1724202600,HTTPS,31444,38079 +1724202600,HTTPS,51824,56762 +1724202600,SSL client,51824,56762 +1724202600,Yandex,51824,56762 +1724202600,HTTPS,52612,81465 +1724202600,SSL client,52612,81465 +1724202600,Yandex,52612,81465 +1724202600,HTTPS,254188,5352854 +1724202600,Google,51788,67008 +1724202600,HTTPS,51788,67008 +1724202600,SSL client,51788,67008 +1724202600,DNS over HTTPS,25201,67239 +1724202600,HTTPS,6266,11208 +1724202600,SSL client,6266,11208 +1724202600,Yandex,6266,11208 +1724202600,HTTPS,12006,16667 +1724202600,Google,25894,32056 +1724202600,HTTPS,103568,64999 +1724202600,SSL client,48557,42879 +1724202600,Microsoft,4775,8301 +1724202600,Google Play,17888,2522 +1724202600,HTTPS,21855,26255 +1724202600,SSL client,4275,7942 +1724202600,Yandex,4275,7942 +1724202600,Telegram,180,180 +1724202600,__unknown,8597,4506 +1724202600,Skype,2582,8394 +1724202600,TeamViewer,21125,40509 +1724202600,HTTPS,61204,102582 +1724202600,Avast,1314,13214 +1724202600,SSL client,34449,71446 +1724202600,Microsoft,8549,27697 +1724202600,Mail.Ru,1890,5561 +1724202600,Rambler,15776,8633 +1724202600,Office 365,4338,7947 +1724202600,__unknown,47061,20721 +1724202600,Google,771241,410431 +1724202600,MSN,3536,10516 +1724202600,HTTP,495,399 +1724202600,Skype,3241,7981 +1724202600,SSL,1505,1392 +1724202600,HTTPS,1218152,1083462 +1724202600,Apple sites,4048,12039 +1724202600,Mozilla,7813,17388 +1724202600,Avast,8563,27036 +1724202600,SSL client,1097874,841674 +1724202600,Microsoft,54764,109337 +1724202600,Mail.Ru,91334,74025 +1724202600,Yandex,75070,57292 +1724202600,Microsoft CryptoAPI,495,399 +1724202600,Apple Maps,6594,17064 +1724202600,Exchange Online,1138,8065 +1724202600,Office 365,5196,16861 +1724202600,Microsoft Windows Live Services Authentication,59410,81119 +1724202600,Grammarly,12520,9584 +1724202600,DNS over HTTPS,24342,67488 +1724202600,__unknown,922,360 +1724202600,Google,22377,20384 +1724202600,HTTPS,22377,20384 +1724202600,SSL client,22377,20384 +1724202600,HTTPS,53723,65938 +1724202600,SSL client,53723,65938 +1724202600,Telegram,53723,65938 +1724202600,__unknown,187,228 +1724202600,HTTPS,112069,60967 +1724202600,SSL client,112069,60967 +1724202600,Google Play,112069,60967 +1724202600,__unknown,0,1390 +1724202600,ICMP,2440,0 +1724202600,__unknown,276,244 +1724202600,Gmail,12189,11101 +1724202600,HTTPS,32503,24251 +1724202600,SSL client,12189,11101 +1724202600,ICMP,6956,4500 +1724202600,__unknown,528521,398317 +1724202600,BitTorrent,310,496 +1724202600,Google APIs,44774,15703 +1724202600,Google Drive,37713,25295 +1724202600,Google,265761,367157 +1724202600,DNS,18452,0 +1724202600,Gmail,8688,15285 +1724202600,HTTP,1130,1016 +1724202600,NTP,900,900 +1724202600,STUN,1860,3300 +1724202600,Odnoklassniki,5614,15622 +1724202600,HTTPS,544011,564910 +1724202600,SSL client,486073,466122 +1724202600,Microsoft,1042,7532 +1724202600,Yandex,1313,907 +1724202600,Atlassian,118876,10675 +1724202600,Microsoft CryptoAPI,1130,1016 +1724202600,ICMP,8660,1980 +1724202600,ICMP for IPv6,70,0 +1724202600,Grammarly,2292,7946 +1724202600,DNS over HTTPS,22786,59968 +1724202600,CoAP,980,720 +1724202600,__unknown,264878,488163 +1724202600,DHCPv6,978,0 +1724202600,Google APIs,5990,16431 +1724202600,Google,23947,56008 +1724202600,Chrome,1007,3077 +1724202600,DNS,57069,45473 +1724202600,HTTP,117351,1347838 +1724202600,Launchpad,3134,2480 +1724202600,Microsoft Update,60781,1252407 +1724202600,NTP,52530,13530 +1724202600,SSL,1652,14124 +1724202600,STUN,984,888 +1724202600,Odnoklassniki,3759,2452 +1724202600,Advanced Packaging Tool,29005,26551 +1724202600,Windows Update,56278,1248898 +1724202600,HTTPS,158164,379204 +1724202600,Apple sites,1802,4444 +1724202600,SSL client,70119,166772 +1724202600,Ubuntu Update Manager,21079,19759 +1724202600,Microsoft,2234,20886 +1724202600,Yandex,12815,39890 +1724202600,Ubuntu,9894,26772 +1724202600,Microsoft CryptoAPI,7542,8229 +1724202600,Microsoft NCSI,574,487 +1724202600,Microsoft WNS,1326,15950 +1724202600,Google Play,17273,21944 +1724202600,Google Hangouts,855,7033 +1724202600,ICMP,3268,0 +1724202600,Telegram,1017,427 +1724202600,Edge Chromium,7858,24226 +1724202600,DNS over HTTPS,66165,195533 +1724202900,HTTP,826904,619062 +1724202900,HTTPS,35260,27890 +1724202900,__unknown,1456,2090 +1724202900,HTTPS,480423,120304 +1724202900,SSL client,480423,120304 +1724202900,Mail.Ru,480423,120304 +1724202900,HTTPS,52739,63317 +1724202900,SSL client,52739,63317 +1724202900,Telegram,52739,63317 +1724202900,HTTPS,1185429,919088 +1724202900,__unknown,68230,16264 +1724202900,HTTPS,41057,48805 +1724202900,SSL client,20982,18369 +1724202900,Google Play,20982,18369 +1724202900,__unknown,23376,9000 +1724202900,Google APIs,3069,8982 +1724202900,HTTPS,63914,115611 +1724202900,Mozilla,13569,37325 +1724202900,Avast,1254,9634 +1724202900,SSL client,28033,73054 +1724202900,Microsoft,2118,3665 +1724202900,Mail.Ru,6273,5900 +1724202900,Yandex,1750,7548 +1724202900,__unknown,34205,14677 +1724202900,Bing,5718,15819 +1724202900,Dropbox,1787,5579 +1724202900,Google,22243,43270 +1724202900,MSN,2069,13738 +1724202900,Gmail,29195,41211 +1724202900,TeamViewer,1458,8847 +1724202900,Odnoklassniki,3680,6782 +1724202900,IMAPS,29195,41211 +1724202900,HTTPS,326502,649478 +1724202900,WhatsApp,1798,5981 +1724202900,Mozilla,2826,8430 +1724202900,SSL client,230801,426496 +1724202900,Microsoft,40021,72682 +1724202900,Mail.Ru,60493,46034 +1724202900,Yandex,14935,42306 +1724202900,Office 365,4069,13068 +1724202900,Microsoft Windows Live Services Authentication,42307,108730 +1724202900,DNS over HTTPS,7860,25618 +1724202900,Google,195004,75683 +1724202900,HTTPS,195004,75683 +1724202900,SSL client,195004,75683 +1724202900,__unknown,66924,42883 +1724202900,ICMP,2296,0 +1724202900,__unknown,1968,1236 +1724202900,HTTPS,6721,10920 +1724202900,__unknown,204,144 +1724202900,Google,33669,26746 +1724202900,HTTPS,63435,50615 +1724202900,SSL client,33669,26746 +1724202900,ICMP,1560,1560 +1724202900,DNS over HTTPS,9535,25616 +1724202900,__unknown,338986,308620 +1724202900,BitTorrent,310,496 +1724202900,DHCPv6,163,0 +1724202900,Google APIs,41859,16634 +1724202900,Google,28255,70660 +1724202900,DNS,12222,0 +1724202900,Gmail,13538,13032 +1724202900,HTTP,2483,12754 +1724202900,Microsoft Update,981,815 +1724202900,NTP,900,900 +1724202900,Advanced Packaging Tool,635,632 +1724202900,HTTPS,150648,288039 +1724202900,WhatsApp,1796,7864 +1724202900,SSL client,94701,129080 +1724202900,Ubuntu,635,632 +1724202900,Microsoft CryptoAPI,981,815 +1724202900,ICMP,6376,0 +1724202900,Google Sign in,4467,8110 +1724202900,Grammarly,4394,15698 +1724202900,DNS over HTTPS,7346,21232 +1724202900,__unknown,392957,284943 +1724202900,BitTorrent,153,537 +1724202900,DHCPv6,978,0 +1724202900,Google APIs,5675,13631 +1724202900,Google,16499,28389 +1724202900,BitTorrent tracker,153,537 +1724202900,DNS,47076,46227 +1724202900,Gmail,10044,6797 +1724202900,HTTP,133742,1788295 +1724202900,Launchpad,3200,2480 +1724202900,Microsoft Update,76401,1579897 +1724202900,NetBIOS-dgm,250,0 +1724202900,NTP,13920,4170 +1724202900,STUN,984,888 +1724202900,Advanced Packaging Tool,34052,159240 +1724202900,Windows Update,67857,1247161 +1724202900,HTTPS,91986,206838 +1724202900,iCloud,2829,23410 +1724202900,Avast,437,1260 +1724202900,SSL client,42899,96886 +1724202900,Ubuntu Update Manager,27234,153448 +1724202900,Microsoft,2181,2900 +1724202900,Yandex,2130,7328 +1724202900,Ubuntu,4893,4683 +1724202900,Microsoft CryptoAPI,3670,5480 +1724202900,ICMP,2466,0 +1724202900,Telegram,3848,15184 +1724202900,Edge Chromium,5450,15568 +1724202900,DNS over HTTPS,64892,210729 +1724203200,HTTPS,32313,39081 +1724203200,HTTPS,74655,91345 +1724203200,SSL client,53829,66663 +1724203200,Telegram,53829,66663 +1724203200,__unknown,204890,172111 +1724203200,HTTPS,30321,35267 +1724203200,SSL client,27907,33500 +1724203200,Yandex,5432,9429 +1724203200,Google Play,22475,24071 +1724203200,__unknown,234683,290212 +1724203200,Google APIs,2869,7071 +1724203200,Skype,2655,13997 +1724203200,HTTPS,51412,86976 +1724203200,Avast,1314,12846 +1724203200,SSL client,31281,64394 +1724203200,Microsoft,3402,7637 +1724203200,Mail.Ru,16807,12921 +1724203200,Yandex,2433,2134 +1724203200,Office 365,1801,7788 +1724203200,__unknown,60472,76402 +1724203200,Bing,3671,6483 +1724203200,OpenVPN,0,324 +1724203200,HTTP,5055,10989 +1724203200,Steam,14313,24658 +1724203200,HTTPS,653212,1075754 +1724203200,WhatsApp,2983,5622 +1724203200,Mozilla,7859,7441 +1724203200,SSL client,460676,728588 +1724203200,Amazon Web Services,3139,21490 +1724203200,Microsoft,293812,496908 +1724203200,Mail.Ru,109419,95706 +1724203200,Yandex,5666,11792 +1724203200,Google Update,4400,10370 +1724203200,Microsoft CryptoAPI,655,619 +1724203200,Office 365,4366,16616 +1724203200,Microsoft Windows Live Services Authentication,12900,33062 +1724203200,Grammarly,5531,14432 +1724203200,DNS over HTTPS,23123,56161 +1724203200,HTTPS,35983,50902 +1724203200,SSL client,35983,50902 +1724203200,Telegram,35983,50902 +1724203200,Google,11493,18887 +1724203200,HTTPS,43341,45548 +1724203200,SSL client,11493,18887 +1724203200,__unknown,744,452 +1724203200,Windows Live,8404,29081 +1724203200,HTTPS,25662,58225 +1724203200,SSL client,8404,29081 +1724203200,Apple Maps,1727,5956 +1724203200,ICMP,9922,0 +1724203200,HTTPS,4699,8311 +1724203200,ICMP,5840,3600 +1724203200,DNS over HTTPS,69005,162042 +1724203200,__unknown,294133,388322 +1724203200,BITS,4111,20628 +1724203200,BitTorrent,310,496 +1724203200,DHCPv6,163,0 +1724203200,Google APIs,3617,7989 +1724203200,Google Drive,15427,21254 +1724203200,Google,23822,61220 +1724203200,DNS,20672,0 +1724203200,Gmail,12316,18091 +1724203200,HTTP,5751,22139 +1724203200,Microsoft Update,981,1103 +1724203200,NetBIOS-dgm,243,0 +1724203200,NTP,1170,1170 +1724203200,STUN,3198,2886 +1724203200,Odnoklassniki,3007,8162 +1724203200,HTTPS,100567,193097 +1724203200,SSL client,58189,116716 +1724203200,Microsoft CryptoAPI,981,1103 +1724203200,ICMP,50118,0 +1724203200,__unknown,275564,382802 +1724203200,Google APIs,2350,6747 +1724203200,Google,21586,51660 +1724203200,DNS,45285,42002 +1724203200,HTTP,49868,75323 +1724203200,Launchpad,3200,2480 +1724203200,Microsoft Update,1679,1751 +1724203200,NTP,450,450 +1724203200,STUN,984,888 +1724203200,Advanced Packaging Tool,26736,24367 +1724203200,HTTPS,235115,2886625 +1724203200,Apple sites,1868,4445 +1724203200,Mozilla,2758,1739 +1724203200,Avast,949,4590 +1724203200,Opera,1930,4589 +1724203200,SSL client,37201,107212 +1724203200,Ubuntu Update Manager,18109,17009 +1724203200,Microsoft,573,7945 +1724203200,Yandex,4217,29438 +1724203200,Ubuntu,6277,5800 +1724203200,Microsoft CryptoAPI,3583,3285 +1724203200,Microsoft WNS,573,7945 +1724203200,ICMP,2530,120 +1724203200,Telegram,1854,685 +1724203200,Edge Chromium,4216,10916 +1724203200,Grammarly,1960,7403 +1724203200,DNS over TLS,1079,4770 +1724203200,DNS over HTTPS,45743,139906 +1724203500,HTTPS,14204,17572 +1724203500,SSL client,14204,17572 +1724203500,Yandex,14204,17572 +1724203500,Google,122715,132218 +1724203500,HTTPS,195270,173443 +1724203500,SSL client,122715,132218 +1724203500,HTTPS,137909,604647 +1724203500,SSL client,137909,604647 +1724203500,Mail.Ru,137909,604647 +1724203500,HTTPS,54355,70517 +1724203500,SSL client,54355,70517 +1724203500,Telegram,54355,70517 +1724203500,__unknown,138032,3188248 +1724203500,HTTPS,18508,8217 +1724203500,__unknown,6053,3191 +1724203500,Google APIs,1987,6294 +1724203500,HTTPS,9032,17949 +1724203500,SSL client,3177,12205 +1724203500,Google Play,1190,5911 +1724203500,__unknown,3654,17943 +1724203500,Dropbox,1769,1658 +1724203500,Google APIs,8088,56220 +1724203500,Microsoft Update,182698,64364 +1724203500,HTTPS,275743,235472 +1724203500,SSL client,266607,215588 +1724203500,Microsoft,24700,49037 +1724203500,Mail.Ru,26460,13217 +1724203500,Yandex,1854,11273 +1724203500,Google Play,19297,12031 +1724203500,Office 365,1741,7788 +1724203500,__unknown,8024,10956 +1724203500,Bing,3477,6424 +1724203500,Google APIs,8459,20835 +1724203500,HTTPS,263468,427089 +1724203500,iCloud,4148,8890 +1724203500,Avast,2436,25223 +1724203500,SSL client,171069,252107 +1724203500,Microsoft,40702,66059 +1724203500,Mail.Ru,92671,80790 +1724203500,Yandex,1796,5715 +1724203500,Microsoft Azure,5337,8536 +1724203500,Office 365,1689,7788 +1724203500,Microsoft Windows Live Services Authentication,7730,11569 +1724203500,OneDrive,2624,10278 +1724203500,DNS over HTTPS,6391,21818 +1724203500,HTTPS,46083,64073 +1724203500,SSL client,46083,64073 +1724203500,Telegram,46083,64073 +1724203500,__unknown,787777,234434 +1724203500,ICMP,2870,0 +1724203500,__unknown,68444,25127 +1724203500,ICMP,1230,0 +1724203500,__unknown,88035,39930 +1724203500,HTTP,737,667 +1724203500,CoAP,3528,2592 +1724203500,__unknown,421,4492 +1724203500,Google,11187,21854 +1724203500,HTTP,723,505 +1724203500,HTTPS,24742,41792 +1724203500,SSL client,11187,21854 +1724203500,ICMP,9984,7200 +1724203500,__unknown,937612,2077436 +1724203500,BitTorrent,310,496 +1724203500,Google APIs,2185,6832 +1724203500,Google,56925,147687 +1724203500,DNS,17673,0 +1724203500,Gmail,22329,27896 +1724203500,HTTP,1317,1563 +1724203500,Microsoft Update,1317,1563 +1724203500,NTP,37350,8100 +1724203500,Odnoklassniki,5522,10483 +1724203500,HTTPS,158967,314828 +1724203500,Mozilla,2615,1712 +1724203500,SSL client,104262,229253 +1724203500,Microsoft CryptoAPI,1317,1563 +1724203500,ICMP,6668,0 +1724203500,Google Sign in,6306,8576 +1724203500,Grammarly,4583,15835 +1724203500,DNS over HTTPS,28969,68876 +1724203500,__unknown,417749,352700 +1724203500,BitTorrent,153,198 +1724203500,DHCPv6,1141,0 +1724203500,Google,14134,49226 +1724203500,BitTorrent tracker,153,198 +1724203500,DNS,42508,45738 +1724203500,HTTP,63523,639840 +1724203500,Launchpad,3200,2480 +1724203500,Microsoft Update,6874,215156 +1724203500,NTP,270,270 +1724203500,STUN,984,888 +1724203500,Advanced Packaging Tool,43486,402524 +1724203500,Windows Update,6228,214656 +1724203500,HTTPS,101973,199788 +1724203500,SSL client,20066,64333 +1724203500,Ubuntu Update Manager,33637,394070 +1724203500,Yandex,2635,7840 +1724203500,Ubuntu,7990,7349 +1724203500,Microsoft CryptoAPI,3145,3343 +1724203500,ICMP,1781,0 +1724203500,Edge Chromium,1114,3371 +1724203500,DNS over HTTPS,55887,179316 +1724203800,HTTPS,1266444,867780 +1724203800,Telegram,1266444,867780 +1724203800,__unknown,1222,1874 +1724203800,Windows Live,79104,19279 +1724203800,HTTPS,81694,25133 +1724203800,SSL client,79104,19279 +1724203800,HTTPS,11958,126768 +1724203800,SSL client,9001,124975 +1724203800,Microsoft,9001,124975 +1724203800,__unknown,6198,4497 +1724203800,HTTPS,3076,10445 +1724203800,SSL client,3076,10445 +1724203800,Google Play,3076,10445 +1724203800,Google,12597,9263 +1724203800,MSN,1471,7394 +1724203800,HTTP,1069,1203 +1724203800,Microsoft Update,547,764 +1724203800,TeamViewer,1510,8838 +1724203800,HTTPS,129645,287015 +1724203800,Mozilla,2474,1738 +1724203800,Avast,2496,26163 +1724203800,SSL client,75825,162531 +1724203800,Microsoft,18849,41522 +1724203800,Mail.Ru,15922,12557 +1724203800,Yandex,6761,17466 +1724203800,Microsoft CryptoAPI,1069,1203 +1724203800,Apple Maps,2846,6463 +1724203800,Google Play,5155,19616 +1724203800,Office 365,3323,12082 +1724203800,Microsoft Windows Live Services Authentication,5267,5892 +1724203800,__unknown,20907,22953 +1724203800,Bing,3566,6477 +1724203800,Dropbox,11119,224822 +1724203800,Google,7732,21605 +1724203800,Dell,1111,4304 +1724203800,Microsoft Update,91637,284844 +1724203800,Skype,5923,15284 +1724203800,HTTPS,469982,1457249 +1724203800,WhatsApp,1858,5921 +1724203800,Apple sites,4935,24685 +1724203800,iCloud,1637,5479 +1724203800,Mozilla,2129,5151 +1724203800,SSL client,295066,848242 +1724203800,Microsoft,59815,80335 +1724203800,Mail.Ru,61593,47759 +1724203800,Yandex,26006,62900 +1724203800,Office 365,9414,43203 +1724203800,Microsoft Windows Live Services Authentication,8449,21394 +1724203800,Telegram,2120,7510 +1724203800,DNS over HTTPS,2266,10787 +1724203800,__unknown,2503,2220 +1724203800,Telegram,2503,2220 +1724203800,HTTPS,7842,8909 +1724203800,__unknown,240,4295 +1724203800,ICMP,656,0 +1724203800,Google,11246,10052 +1724203800,Gmail,12194,10800 +1724203800,HTTPS,23440,20852 +1724203800,SSL client,23440,20852 +1724203800,ICMP,2760,2760 +1724203800,__unknown,281295,307256 +1724203800,BitTorrent,310,496 +1724203800,Google APIs,5129,15655 +1724203800,Google,31498,56455 +1724203800,DNS,17679,0 +1724203800,Gmail,21447,31563 +1724203800,HTTP,566,2141 +1724203800,NetBIOS-dgm,250,0 +1724203800,NTP,13380,3630 +1724203800,Odnoklassniki,2455,2340 +1724203800,HTTPS,97310,159302 +1724203800,SSL client,65351,112794 +1724203800,VeriSign,566,2141 +1724203800,Yandex,1253,907 +1724203800,Microsoft CryptoAPI,566,2141 +1724203800,Google Play,3569,5874 +1724203800,ICMP,6142,0 +1724203800,DNS over HTTPS,13312,35239 +1724203800,__unknown,207019,514637 +1724203800,DHCPv6,978,0 +1724203800,Google APIs,30043,14129 +1724203800,Google Drive,5297,2071 +1724203800,Google,29287,79423 +1724203800,Kaspersky,608,607 +1724203800,QQ,414,1584 +1724203800,Chrome,1130,968 +1724203800,DNS,48802,45263 +1724203800,HTTP,157882,6378176 +1724203800,Launchpad,3200,2480 +1724203800,Microsoft Update,641,507 +1724203800,NetBIOS-dgm,243,0 +1724203800,NTP,12480,2730 +1724203800,SSL,855,7032 +1724203800,STUN,1860,3300 +1724203800,Advanced Packaging Tool,132828,6333754 +1724203800,HTTPS,216779,919241 +1724203800,Avast,382,391 +1724203800,SSL client,79667,135810 +1724203800,Ubuntu Update Manager,125244,6327032 +1724203800,Microsoft,633,7999 +1724203800,Yandex,12365,36426 +1724203800,Linux Mint,862,1062 +1724203800,Ubuntu,4372,4098 +1724203800,Microsoft CryptoAPI,3538,2966 +1724203800,Microsoft WNS,633,7999 +1724203800,ICMP,2817,0 +1724203800,Telegram,3071,7816 +1724203800,Edge Chromium,2288,7488 +1724203800,DNS over HTTPS,38357,126922 +1724204100,HTTPS,442446,27419395 +1724204100,HTTPS,90686,7221676 +1724204100,HTTPS,116437,140792 +1724204100,HTTPS,45589,66683 +1724204100,SSL client,45589,66683 +1724204100,Telegram,45589,66683 +1724204100,HTTPS,4137,6379 +1724204100,SSL client,4137,6379 +1724204100,Sharepoint Online,4137,6379 +1724204100,HTTPS,14199,20952 +1724204100,HTTPS,61536,73430 +1724204100,SSL client,54409,62036 +1724204100,Telegram,54409,62036 +1724204100,Google APIs,4174,14662 +1724204100,HTTPS,64669,53793 +1724204100,SSL client,47491,36953 +1724204100,Google Play,43317,22291 +1724204100,__unknown,489,0 +1724204100,Bing,3350,6483 +1724204100,Dropbox,1670,1358 +1724204100,Google,8368,5239 +1724204100,Google Analytics,2743,6500 +1724204100,HTTPS,78016,108905 +1724204100,SSL client,44314,61998 +1724204100,Microsoft,6799,11788 +1724204100,Mail.Ru,8482,10838 +1724204100,Yandex,6021,4055 +1724204100,Office 365,1514,1425 +1724204100,Grammarly,5367,14312 +1724204100,__unknown,19760,26931 +1724204100,Google,187527,206059 +1724204100,Dell,1117,4374 +1724204100,HTTP,467,1298 +1724204100,Microsoft Update,127766,228302 +1724204100,Skype,4482,94524 +1724204100,Odnoklassniki,9200,16955 +1724204100,Steam,7155,15631 +1724204100,HTTPS,607388,1261299 +1724204100,WhatsApp,2983,5562 +1724204100,SSL client,475291,829188 +1724204100,Amazon Web Services,3139,21430 +1724204100,Microsoft,67460,91392 +1724204100,Mail.Ru,39275,30550 +1724204100,Yandex,11752,32787 +1724204100,Office 365,3779,77143 +1724204100,Edge Chromium,467,1298 +1724204100,Grammarly,12639,10041 +1724204100,DNS over HTTPS,4388,19957 +1724204100,HTTPS,53723,65024 +1724204100,SSL client,53723,65024 +1724204100,Telegram,53723,65024 +1724204100,HTTPS,9578,13448 +1724204100,SSL client,9578,13448 +1724204100,DNS over HTTPS,9578,13448 +1724204100,__unknown,187,228 +1724204100,__unknown,75988,73855 +1724204100,HTTP,482,408 +1724204100,SSL,5518,18379 +1724204100,HTTPS,58332,68732 +1724204100,SSL client,54469,62036 +1724204100,Telegram,55420,62540 +1724204100,__unknown,144,480 +1724204100,HTTP,482,457 +1724204100,HTTPS,6664,10832 +1724204100,ICMP,3960,1740 +1724204100,__unknown,222448,214385 +1724204100,BitTorrent,310,496 +1724204100,DHCPv6,163,0 +1724204100,Google Drive,7468,10233 +1724204100,Google,26301,49585 +1724204100,DNS,18092,0 +1724204100,Gmail,19754,14412 +1724204100,HTTP,586,503 +1724204100,NTP,12570,2820 +1724204100,STUN,984,888 +1724204100,VKontakte,2803,5926 +1724204100,HTTPS,85563,142215 +1724204100,Mozilla,1876,4611 +1724204100,SSL client,71194,109603 +1724204100,Microsoft CryptoAPI,586,503 +1724204100,ICMP,6774,1800 +1724204100,Google Sign in,6290,4266 +1724204100,Grammarly,4454,15621 +1724204100,DNS over HTTPS,50895,123582 +1724204100,__unknown,342372,235453 +1724204100,BitTorrent,153,537 +1724204100,Google APIs,3465,12309 +1724204100,BitTorrent tracker,153,537 +1724204100,DNS,51323,49073 +1724204100,Gmail,10047,6775 +1724204100,HTTP,66498,351847 +1724204100,Launchpad,3200,2480 +1724204100,Microsoft Update,19277,287418 +1724204100,NTP,12930,3180 +1724204100,Advanced Packaging Tool,29255,26743 +1724204100,Windows Update,17349,285899 +1724204100,HTTPS,96977,175291 +1724204100,Apple sites,614,550 +1724204100,SSL client,30711,59713 +1724204100,Ubuntu Update Manager,22437,21011 +1724204100,Yandex,9999,38525 +1724204100,Ubuntu,4468,4174 +1724204100,Microsoft CryptoAPI,5661,4829 +1724204100,ICMP,3040,0 +1724204100,Google Sign in,6226,4252 +1724204100,Edge Chromium,5630,17499 +1724204100,DNS over HTTPS,35044,115961 +1724204400,DNS over HTTPS,140154,324738 +1724204400,HTTPS,45655,69983 +1724204400,SSL client,45655,69983 +1724204400,Telegram,45655,69983 +1724204400,HTTPS,3890,6685 +1724204400,SSL client,3890,6685 +1724204400,Yandex,3890,6685 +1724204400,HTTPS,57769,47423 +1724204400,SSL client,23014,18360 +1724204400,Google Play,23014,18360 +1724204400,__unknown,1582,8838 +1724204400,Google,4654,10801 +1724204400,HTTP,915,689 +1724204400,Microsoft Update,915,689 +1724204400,Skype,2523,8338 +1724204400,HTTPS,63343,137628 +1724204400,Mozilla,2157,5251 +1724204400,Avast,2436,26093 +1724204400,SSL client,38643,105164 +1724204400,Microsoft,18745,37906 +1724204400,Mail.Ru,5934,7446 +1724204400,Microsoft CryptoAPI,915,689 +1724204400,GISMETEO,2194,9329 +1724204400,__unknown,6166,2334 +1724204400,Bing,3229,6480 +1724204400,Google APIs,3696,7487 +1724204400,MSN,5578,38220 +1724204400,HTTP,4433,10364 +1724204400,Skype,10166,198857 +1724204400,Odnoklassniki,7360,13504 +1724204400,HTTPS,311919,671791 +1724204400,Apple sites,1978,9626 +1724204400,SSL client,187778,423853 +1724204400,Microsoft,36702,77646 +1724204400,Mail.Ru,45394,37072 +1724204400,Yandex,73675,34961 +1724204400,Google Update,4433,10364 +1724204400,Google,198734,92612 +1724204400,HTTPS,198734,92612 +1724204400,SSL client,198734,92612 +1724204400,HTTPS,8514,11555 +1724204400,SSL client,8514,11555 +1724204400,DNS over HTTPS,8514,11555 +1724204400,HTTPS,35321,15178 +1724204400,__unknown,576,404 +1724204400,__unknown,8478,13052 +1724204400,HTTPS,33626,51354 +1724204400,ICMP,1394,0 +1724204400,DNS over HTTPS,4341,11842 +1724204400,__unknown,314695,345070 +1724204400,BitTorrent,310,496 +1724204400,DHCPv6,978,0 +1724204400,Google APIs,83204,35224 +1724204400,Google,24385,68933 +1724204400,DNS,21626,0 +1724204400,Gmail,5658,8275 +1724204400,NetBIOS-dgm,250,0 +1724204400,NTP,450,450 +1724204400,STUN,2844,4188 +1724204400,VKontakte,2743,5923 +1724204400,Odnoklassniki,5522,10574 +1724204400,HTTPS,167635,244606 +1724204400,Mozilla,2460,5066 +1724204400,SSL client,138264,160452 +1724204400,Google Play,9939,10836 +1724204400,ICMP,3401,0 +1724204400,Grammarly,4353,15621 +1724204400,DNS over HTTPS,53628,133494 +1724204400,__unknown,201968,155884 +1724204400,DHCPv6,163,0 +1724204400,Google APIs,2464,8468 +1724204400,Google,35698,73457 +1724204400,DNS,49832,46077 +1724204400,Gmail,8690,15707 +1724204400,HTTP,51657,79459 +1724204400,Launchpad,2560,1984 +1724204400,Microsoft Update,3611,2972 +1724204400,NTP,12300,2550 +1724204400,SSL,797,7093 +1724204400,VKontakte,2384,5519 +1724204400,Advanced Packaging Tool,26490,24299 +1724204400,HTTPS,157364,355596 +1724204400,SSL client,59189,132375 +1724204400,Ubuntu Update Manager,20995,19665 +1724204400,Microsoft,1386,15890 +1724204400,VeriSign,566,2139 +1724204400,Yandex,5834,16246 +1724204400,Ubuntu,5126,4951 +1724204400,Microsoft CryptoAPI,8007,9953 +1724204400,Microsoft NCSI,574,487 +1724204400,Microsoft WNS,1386,15890 +1724204400,Office 365,940,2318 +1724204400,Google Hangouts,797,7093 +1724204400,ICMP,1980,0 +1724204400,Edge Chromium,3282,9471 +1724204400,DNS over HTTPS,50277,154537 +1724204700,__unknown,31096,13032 +1724204700,Google,34403,61304 +1724204700,HTTPS,34403,61304 +1724204700,SSL client,34403,61304 +1724204700,HTTPS,28184,36896 +1724204700,Windows Live,7570,106343 +1724204700,HTTPS,7570,106343 +1724204700,SSL client,7570,106343 +1724204700,HTTPS,18955,28838 +1724204700,SSL client,18955,28838 +1724204700,DNS over HTTPS,18955,28838 +1724204700,HTTPS,29737,24858 +1724204700,__unknown,5361,3237 +1724204700,Telegram,240,240 +1724204700,__unknown,360,7635 +1724204700,Windows Live,26664,7287 +1724204700,HTTPS,41555,137203 +1724204700,SSL client,35691,126386 +1724204700,Microsoft,9027,119099 +1724204700,HTTPS,14853,15105 +1724204700,SSL client,14853,15105 +1724204700,Yandex,2840,2882 +1724204700,Google Play,12013,12223 +1724204700,__unknown,420279,456960 +1724204700,Bing,3339,9575 +1724204700,HTTPS,121516,322756 +1724204700,Avast,1314,11672 +1724204700,SSL client,62865,84075 +1724204700,Microsoft,9563,18307 +1724204700,Mail.Ru,30197,15250 +1724204700,Yandex,7075,9399 +1724204700,Office 365,1494,7344 +1724204700,Google Sign in,9883,12528 +1724204700,__unknown,13287,22901 +1724204700,Bing,7087,13054 +1724204700,Dropbox,1274,4697 +1724204700,Google APIs,3026,7088 +1724204700,MSN,2069,13675 +1724204700,HTTP,1783,1593 +1724204700,Microsoft Update,3722,9329 +1724204700,Skype,3188,7085 +1724204700,SSL,3071,9189 +1724204700,Odnoklassniki,3680,6722 +1724204700,Advanced Packaging Tool,806,774 +1724204700,HTTPS,262510,524498 +1724204700,WhatsApp,1858,5921 +1724204700,Apple sites,2153,8842 +1724204700,SSL client,169906,290223 +1724204700,Ubuntu Update Manager,806,774 +1724204700,Microsoft,58472,97515 +1724204700,Mail.Ru,50361,45017 +1724204700,Yandex,11780,26860 +1724204700,Microsoft CryptoAPI,977,819 +1724204700,Exchange Online,2660,12934 +1724204700,Office 365,5329,14966 +1724204700,Microsoft Windows Live Services Authentication,16082,23258 +1724204700,DNS over HTTPS,7516,30038 +1724204700,Google,24884,37789 +1724204700,HTTPS,24884,37789 +1724204700,SSL client,24884,37789 +1724204700,HTTPS,53867,70690 +1724204700,SSL client,53867,70690 +1724204700,Telegram,53867,70690 +1724204700,__unknown,691,180 +1724204700,ICMP,13120,0 +1724204700,HTTPS,96310,45195 +1724204700,__unknown,60898,39478 +1724204700,Google,16870,19494 +1724204700,HTTPS,39766,40189 +1724204700,SSL client,16870,19494 +1724204700,ICMP,21758,0 +1724204700,__unknown,0,1390 +1724204700,ICMP,5880,5880 +1724204700,__unknown,8217,14310 +1724204700,Gmail,31432,134395 +1724204700,HTTPS,87397,176485 +1724204700,SSL client,59029,153141 +1724204700,Google Play,27597,18746 +1724204700,ICMP,1066,0 +1724204700,__unknown,749927,463863 +1724204700,BitTorrent,310,496 +1724204700,Google APIs,8523,23982 +1724204700,Google,8725,20950 +1724204700,DNS,22491,0 +1724204700,Gmail,12999,10740 +1724204700,NetBIOS-dgm,243,0 +1724204700,NTP,13920,4170 +1724204700,SSL,797,7092 +1724204700,STUN,2844,4188 +1724204700,HTTPS,52561,93172 +1724204700,SSL client,46779,84852 +1724204700,Google Play,13547,17138 +1724204700,Google Hangouts,797,7092 +1724204700,ICMP,5318,0 +1724204700,DNS over HTTPS,23527,57032 +1724204700,__unknown,239343,221391 +1724204700,BITS,1917,4678 +1724204700,BitTorrent,153,198 +1724204700,DHCPv6,978,0 +1724204700,Google APIs,6746,19727 +1724204700,Google,17923,34451 +1724204700,BitTorrent tracker,153,198 +1724204700,Chrome,1208,1034 +1724204700,DNS,52952,53821 +1724204700,Gmail,9618,7207 +1724204700,HTTP,64060,94480 +1724204700,Launchpad,3200,2480 +1724204700,Microsoft Update,2605,2161 +1724204700,NTP,3510,3510 +1724204700,STUN,1230,1110 +1724204700,Advanced Packaging Tool,35609,32767 +1724204700,HTTPS,115379,244508 +1724204700,SSL client,42590,108671 +1724204700,Ubuntu Update Manager,27617,25975 +1724204700,Microsoft,693,7948 +1724204700,Yandex,9115,54037 +1724204700,Ubuntu,6559,6156 +1724204700,Microsoft CryptoAPI,4295,3640 +1724204700,Microsoft WNS,693,7948 +1724204700,ICMP,1350,0 +1724204700,Telegram,1306,483 +1724204700,Edge Chromium,6804,21562 +1724204700,DNS over HTTPS,62896,200892 +1724205000,__unknown,22140,28379 +1724205000,Gmail,11013,20851 +1724205000,IMAPS,11013,20851 +1724205000,SSL client,11013,20851 +1724205000,VKontakte,15735,27325 +1724205000,HTTPS,15735,27325 +1724205000,SSL client,15735,27325 +1724205000,__unknown,25908,21758 +1724205000,ICMP,20172,0 +1724205000,Google APIs,2362,6268 +1724205000,HTTPS,69384,84576 +1724205000,SSL client,56831,67813 +1724205000,Telegram,54469,61545 +1724205000,__unknown,4001,3951 +1724205000,HTTPS,52935,38199 +1724205000,SSL client,52935,38199 +1724205000,Google Play,52935,38199 +1724205000,__unknown,3377,1347 +1724205000,Dropbox,3342,2538 +1724205000,Gmail,6132,3699 +1724205000,HTTP,3134,3668 +1724205000,Microsoft Update,1675,5433 +1724205000,SSL,2903,9256 +1724205000,HTTPS,167180,96122 +1724205000,Mozilla,2219,5311 +1724205000,SSL client,149983,79272 +1724205000,Microsoft,111330,31994 +1724205000,VeriSign,1075,1826 +1724205000,Mail.Ru,9352,10898 +1724205000,Yandex,9950,5955 +1724205000,Microsoft CryptoAPI,3134,3668 +1724205000,Office 365,1536,6959 +1724205000,Sharepoint Online,4447,6485 +1724205000,ICMP,7216,0 +1724205000,__unknown,114309,184892 +1724205000,Bing,7463,12845 +1724205000,Google,995,4566 +1724205000,HTTP,944,1708 +1724205000,Skype,2644,8266 +1724205000,Odnoklassniki,7360,13504 +1724205000,HTTPS,316731,8340604 +1724205000,WhatsApp,2986,5622 +1724205000,Avast,1314,13166 +1724205000,SSL client,141151,282826 +1724205000,Microsoft,29469,49009 +1724205000,Mail.Ru,58291,50179 +1724205000,Yandex,13234,38965 +1724205000,Microsoft CryptoAPI,565,1176 +1724205000,Apple Maps,82629,7810722 +1724205000,Office 365,14511,77768 +1724205000,Microsoft Windows Live Services Authentication,6435,15734 +1724205000,DNS over HTTPS,198291,444452 +1724205000,HTTPS,16122,23468 +1724205000,SSL client,16122,23468 +1724205000,DNS over HTTPS,16122,23468 +1724205000,CoAP,4116,3024 +1724205000,Google,60627,41054 +1724205000,Gmail,35631,25180 +1724205000,HTTPS,96258,66234 +1724205000,SSL client,96258,66234 +1724205000,HTTP,755,505 +1724205000,HTTPS,54271,62102 +1724205000,SSL client,54271,62102 +1724205000,ICMP,902,0 +1724205000,Telegram,54271,62102 +1724205000,HTTPS,16672,15613 +1724205000,__unknown,201137,218659 +1724205000,BitTorrent,310,496 +1724205000,DHCPv6,163,0 +1724205000,Google APIs,33415,17007 +1724205000,Google Drive,5980,10102 +1724205000,Google,34676,136485 +1724205000,DNS,23972,0 +1724205000,Gmail,12198,9381 +1724205000,NTP,25590,6090 +1724205000,STUN,984,888 +1724205000,VKontakte,2802,6157 +1724205000,Odnoklassniki,3067,8223 +1724205000,HTTPS,154483,314667 +1724205000,Apple sites,1470,5457 +1724205000,SSL client,100987,220202 +1724205000,Weather.com,5138,19613 +1724205000,ICMP,4000,0 +1724205000,Grammarly,2241,7777 +1724205000,__unknown,281255,266539 +1724205000,Google APIs,7796,23380 +1724205000,Google,29442,74756 +1724205000,Kaspersky,608,607 +1724205000,Chrome,641,664 +1724205000,DNS,40611,38415 +1724205000,Firefox,807,1129 +1724205000,HTTP,141789,4811702 +1724205000,Launchpad,3200,2414 +1724205000,Microsoft Update,3578,3174 +1724205000,NetBIOS-dgm,250,0 +1724205000,NTP,15000,5250 +1724205000,SSL,1710,14063 +1724205000,Advanced Packaging Tool,27787,25292 +1724205000,HTTPS,7195119,335428569 +1724205000,Avast,764,782 +1724205000,SSL client,51012,162589 +1724205000,Ubuntu Update Manager,20873,19554 +1724205000,Microsoft,86139,4734062 +1724205000,Yandex,9830,34225 +1724205000,Ubuntu,5414,5156 +1724205000,Microsoft CryptoAPI,7535,7509 +1724205000,Microsoft WNS,693,7999 +1724205000,Google Hangouts,1710,14063 +1724205000,ICMP,1794,0 +1724205000,ICMP for IPv6,70,0 +1724205000,Synology DSM,4059,24821 +1724205000,Edge Chromium,7738,23025 +1724205000,DNS over HTTPS,30270,97665 +1724205300,Google,81511,90089 +1724205300,HTTPS,81511,90089 +1724205300,SSL client,81511,90089 +1724205300,HTTPS,5266,8270 +1724205300,SSL client,5266,8270 +1724205300,Yandex,5266,8270 +1724205300,HTTPS,6772,10603 +1724205300,SSL client,3807,6620 +1724205300,Yandex,3807,6620 +1724205300,__unknown,21059,29667 +1724205300,HTTPS,35638,16371 +1724205300,SSL client,35638,16371 +1724205300,Google Play,35638,16371 +1724205300,__unknown,7222,6932 +1724205300,HTTPS,2255,6487 +1724205300,__unknown,12210,10440 +1724205300,Bing,3550,6540 +1724205300,HTTP,651,632 +1724205300,Microsoft Update,651,632 +1724205300,Skype,2642,8335 +1724205300,HTTPS,110800,117162 +1724205300,SSL client,85374,70324 +1724205300,Microsoft,24547,20647 +1724205300,Mail.Ru,53593,34195 +1724205300,Yandex,1042,607 +1724205300,Microsoft CryptoAPI,651,632 +1724205300,DNS over HTTPS,31457,74854 +1724205300,__unknown,1018409,461405 +1724205300,Bing,3578,6480 +1724205300,Google,4010140,1513118 +1724205300,SSL,4262,6640 +1724205300,Odnoklassniki,3680,6782 +1724205300,HTTPS,4220199,1966618 +1724205300,Apple sites,1945,17365 +1724205300,Mozilla,2177,5091 +1724205300,Avast,6286,45323 +1724205300,SSL client,4166421,1778305 +1724205300,CloudFront,6207,1213 +1724205300,Microsoft,31402,38124 +1724205300,Mail.Ru,71128,63100 +1724205300,Yandex,2939,19015 +1724205300,uTorrent,11004,19458 +1724205300,Office 365,5840,24225 +1724205300,Microsoft Visual Studio,3556,5543 +1724205300,Hola,4262,6640 +1724205300,Grammarly,2277,6828 +1724205300,DNS over HTTPS,10548,35083 +1724205300,HTTPS,8634,11541 +1724205300,SSL client,8634,11541 +1724205300,DNS over HTTPS,8634,11541 +1724205300,ICMP,4428,0 +1724205300,HTTPS,4667,7373 +1724205300,ICMP,1786,0 +1724205300,__unknown,752,468 +1724205300,HTTPS,36055,14904 +1724205300,__unknown,1048,2421 +1724205300,HTTPS,11795,14169 +1724205300,ICMP,974,0 +1724205300,__unknown,337685,653210 +1724205300,BITS,4929,18997 +1724205300,BitTorrent,310,496 +1724205300,DHCPv6,652,0 +1724205300,Google,46640,101132 +1724205300,Chrome,1335,869 +1724205300,DNS,15146,0 +1724205300,Gmail,45636,74254 +1724205300,HTTP,9041,23908 +1724205300,Microsoft Update,1624,1399 +1724205300,NetBIOS-dgm,243,0 +1724205300,NTP,13020,3270 +1724205300,STUN,2844,4188 +1724205300,TeamViewer,1458,5565 +1724205300,HTTPS,127349,246835 +1724205300,SSL client,101221,191529 +1724205300,VeriSign,566,2140 +1724205300,Yandex,1251,6151 +1724205300,Microsoft CryptoAPI,2777,4042 +1724205300,ICMP,29727,3000 +1724205300,Google Sign in,6236,4427 +1724205300,DNS over HTTPS,4504,10936 +1724205300,CoAP,1764,1296 +1724205300,__unknown,275781,396569 +1724205300,Apple Update,6148,533015 +1724205300,BitTorrent,153,537 +1724205300,DHCPv6,163,0 +1724205300,Google,2601,7145 +1724205300,BitTorrent tracker,153,537 +1724205300,DNS,42654,43781 +1724205300,HTTP,71877,94721 +1724205300,Launchpad,3200,2480 +1724205300,Microsoft Update,1929,1521 +1724205300,NTP,2340,2340 +1724205300,Advanced Packaging Tool,29772,27083 +1724205300,HTTPS,71185,633359 +1724205300,SSL client,24377,569056 +1724205300,Ubuntu Update Manager,21145,19725 +1724205300,Microsoft,699,8014 +1724205300,Yandex,7779,21780 +1724205300,Ubuntu,6277,5792 +1724205300,Microsoft CryptoAPI,6557,5452 +1724205300,Microsoft WNS,699,8014 +1724205300,ICMP,1830,0 +1724205300,Google Sign in,6225,4004 +1724205300,Edge Chromium,4636,15474 +1724205300,DNS over TLS,2158,9539 +1724205300,DNS over HTTPS,41980,146889 +1724205599,HTTPS,31332,37719 +1724205599,HTTPS,50592,53657 +1724205599,HTTPS,53789,63964 +1724205599,SSL client,53789,63964 +1724205599,Telegram,53789,63964 +1724205599,__unknown,72157,49871 +1724205599,Dropbox,1647,1519 +1724205599,Google,8211,4975 +1724205599,HTTPS,58644,107362 +1724205599,Mozilla,2381,5183 +1724205599,Avast,1314,11930 +1724205599,SSL client,35104,70047 +1724205599,Microsoft,14797,33557 +1724205599,Mail.Ru,5444,5539 +1724205599,Office 365,1310,7344 +1724205599,DNS over HTTPS,2358,7035 +1724205599,__unknown,66412,95768 +1724205599,Dropbox,3431,14499 +1724205599,Google APIs,2630,6876 +1724205599,Google,1232,7775 +1724205599,Dell,1117,4431 +1724205599,Microsoft Update,52060,4225 +1724205599,Skype,2029,87327 +1724205599,VKontakte,1011,4272 +1724205599,HTTPS,489410,1206546 +1724205599,WhatsApp,1798,5921 +1724205599,SSL client,198759,401398 +1724205599,Amazon Web Services,3199,21490 +1724205599,Microsoft,40821,72991 +1724205599,Mail.Ru,46874,34585 +1724205599,Yandex,23447,58736 +1724205599,Office 365,6361,28552 +1724205599,Grammarly,12451,9948 +1724205599,Microsoft Teams,2096,45691 +1724205599,DNS over HTTPS,6138,18484 +1724205599,HTTPS,569887,3876673 +1724205599,Google,113670,98526 +1724205599,HTTPS,190016,158546 +1724205599,SSL client,113670,98526 +1724205599,__unknown,4144,1767 +1724205599,__unknown,1759,5431 +1724205599,Google,11889,10766 +1724205599,Gmail,12195,10617 +1724205599,HTTPS,37072,39895 +1724205599,SSL client,24084,21383 +1724205599,__unknown,361902,602364 +1724205599,Apple Update,5943,537570 +1724205599,BitTorrent,310,496 +1724205599,Google APIs,50177,17686 +1724205599,Google,27046,80378 +1724205599,DNS,17080,0 +1724205599,HTTP,2171,1904 +1724205599,Microsoft Update,981,887 +1724205599,NTP,24870,5370 +1724205599,STUN,2844,4188 +1724205599,Odnoklassniki,3008,8221 +1724205599,HTTPS,172747,865340 +1724205599,Apple sites,32812,32073 +1724205599,SSL client,124478,687004 +1724205599,Mail.Ru,4301,4925 +1724205599,Yandex,1191,6151 +1724205599,Microsoft CryptoAPI,2171,1904 +1724205599,Apple Maps,2782,7035 +1724205599,ICMP,4114,0 +1724205599,DNS over HTTPS,20714,56328 +1724205599,__unknown,153603,175418 +1724205599,DHCPv6,978,0 +1724205599,Google APIs,30017,53358 +1724205599,Google,18493,37595 +1724205599,DNS,53375,47818 +1724205599,Firefox,1644,1954 +1724205599,HTTP,50446,95795 +1724205599,Launchpad,2560,1984 +1724205599,NTP,810,810 +1724205599,SSL,1652,14125 +1724205599,Steam,2211,27972 +1724205599,Advanced Packaging Tool,30440,27931 +1724205599,HTTPS,134526,337838 +1724205599,Apple sites,1487,6184 +1724205599,iCloud,15774,73888 +1724205599,SSL client,75782,204248 +1724205599,Ubuntu Update Manager,23771,22237 +1724205599,Yandex,10807,30201 +1724205599,Ubuntu,5809,5546 +1724205599,Microsoft CryptoAPI,583,499 +1724205599,Google Hangouts,1652,14125 +1724205599,ICMP,2517,0 +1724205599,Telegram,3156,14379 +1724205599,Edge Chromium,4696,16052 +1724205599,DNS over HTTPS,102178,308529 +1724205900,Skype,2769,8939 +1724205900,HTTPS,15278,134743 +1724205900,SSL client,15278,134743 +1724205900,Microsoft,8924,118366 +1724205900,Microsoft Teams,3585,7438 +1724205900,HTTPS,27224,363463 +1724205900,Apple sites,27224,363463 +1724205900,SSL client,27224,363463 +1724205900,HTTPS,42934,22680 +1724205900,SSL client,42934,22680 +1724205900,Google Play,42934,22680 +1724205900,__unknown,18535,18969 +1724205900,HTTPS,99272,190801 +1724205900,SSL client,79463,154364 +1724205900,Microsoft,11020,9868 +1724205900,Mail.Ru,46803,39950 +1724205900,Yandex,13620,57744 +1724205900,Google Sign in,4960,3885 +1724205900,Microsoft Teams,3060,42917 +1724205900,DNS over HTTPS,10037,25594 +1724205900,__unknown,1327605,1368370 +1724205900,Bing,2048,9271 +1724205900,Google,1569,1663 +1724205900,Dell,1051,4308 +1724205900,Skype,8895,95052 +1724205900,HTTPS,285961,5932154 +1724205900,WhatsApp,3223,5622 +1724205900,Mozilla,2332,5191 +1724205900,Avast,3144,13469 +1724205900,SSL client,165058,421537 +1724205900,Amazon Web Services,3385,21542 +1724205900,Microsoft,52980,99401 +1724205900,Mail.Ru,62453,78281 +1724205900,Yandex,13143,55347 +1724205900,GitHub,1526,6064 +1724205900,Apple Maps,48714,5294734 +1724205900,Office 365,3391,9213 +1724205900,Microsoft Windows Live Services Authentication,6390,15674 +1724205900,Grammarly,2751,7061 +1724205900,DNS over HTTPS,9585,37384 +1724205900,ICMP,19500,19500 +1724205900,ICMP,12000,11880 +1724205900,HTTPS,53623,63958 +1724205900,SSL client,53623,63958 +1724205900,Telegram,53623,63958 +1724205900,__unknown,187,228 +1724205900,HTTPS,23102,20919 +1724205900,__unknown,204,144 +1724205900,HTTPS,42143,92972 +1724205900,ICMP,6900,3600 +1724205900,CoAP,1568,1152 +1724205900,__unknown,289196,313225 +1724205900,BITS,8148,34042 +1724205900,BitTorrent,310,496 +1724205900,DHCPv6,163,0 +1724205900,Google APIs,9787,25157 +1724205900,Google,40424,66579 +1724205900,QQ,873,1167 +1724205900,DNS,18856,0 +1724205900,Gmail,33242,35910 +1724205900,HTTP,10121,36448 +1724205900,NetBIOS-dgm,250,0 +1724205900,NTP,12840,3090 +1724205900,STUN,2844,4188 +1724205900,Odnoklassniki,2546,7355 +1724205900,HTTPS,124593,191616 +1724205900,SSL client,94616,145935 +1724205900,Microsoft,2888,12052 +1724205900,Microsoft CryptoAPI,587,503 +1724205900,ICMP,5950,0 +1724205900,ICMP for IPv6,140,0 +1724205900,Browsec,2325,6867 +1724205900,Google Sign in,6292,4067 +1724205900,DNS over HTTPS,6099,16553 +1724205900,__unknown,252790,568627 +1724205900,BitTorrent,153,198 +1724205900,DHCPv6,978,0 +1724205900,Google Drive,8964,10800 +1724205900,Google,13950,23509 +1724205900,BitTorrent tracker,153,198 +1724205900,DNS,58012,54121 +1724205900,HTTP,112251,1564681 +1724205900,Launchpad,2560,1984 +1724205900,Microsoft Update,65555,1498044 +1724205900,NetBIOS-dgm,243,0 +1724205900,NTP,12930,3180 +1724205900,OpenSSH,9112,10034 +1724205900,SSH,9112,10034 +1724205900,Advanced Packaging Tool,30349,27813 +1724205900,Windows Update,54062,922817 +1724205900,HTTPS,94082,165646 +1724205900,SSL client,39751,73909 +1724205900,Ubuntu Update Manager,22362,20951 +1724205900,Yandex,8347,32147 +1724205900,Ubuntu,7193,6718 +1724205900,Microsoft CryptoAPI,646,501 +1724205900,ICMP,1822,0 +1724205900,Telegram,1217,495 +1724205900,Google Sign in,6222,4259 +1724205900,Edge Chromium,7798,23664 +1724205900,Grammarly,1941,7405 +1724205900,DNS over HTTPS,83390,268652 +1724206200,Google,97671,121050 +1724206200,HTTPS,97671,121050 +1724206200,SSL client,97671,121050 +1724206200,HTTPS,54469,62036 +1724206200,SSL client,54469,62036 +1724206200,Telegram,54469,62036 +1724206200,Google APIs,7164,25346 +1724206200,HTTPS,7164,25346 +1724206200,SSL client,7164,25346 +1724206200,__unknown,8812,20615 +1724206200,HTTPS,96797,199239 +1724206200,SSL client,71738,168907 +1724206200,Microsoft,10111,25573 +1724206200,Mail.Ru,17780,18121 +1724206200,Google Play,22708,13231 +1724206200,Rambler,15707,8453 +1724206200,Sharepoint Online,3238,94231 +1724206200,GISMETEO,2194,9298 +1724206200,__unknown,1875172,835060 +1724206200,Dropbox,2545,1390 +1724206200,Google APIs,8472,20381 +1724206200,Google,582226,499736 +1724206200,MSN,6927,20026 +1724206200,HTTP,1274,1193 +1724206200,Microsoft Update,420707,147346 +1724206200,Advanced Packaging Tool,1274,1193 +1724206200,HTTPS,1316809,1225737 +1724206200,SSL client,1250126,1048556 +1724206200,Amazon Web Services,3259,21490 +1724206200,CloudFront,6207,1213 +1724206200,Ubuntu Update Manager,1274,1193 +1724206200,Microsoft,38561,75306 +1724206200,Mail.Ru,106864,96537 +1724206200,Yandex,11652,25171 +1724206200,Office 365,2899,14220 +1724206200,Microsoft Windows Live Services Authentication,47386,115879 +1724206200,Grammarly,12421,9861 +1724206200,DNS over HTTPS,0,1390 +1724206200,__unknown,1383,540 +1724206200,HTTPS,133888,74006 +1724206200,__unknown,401,120 +1724206200,ICMP,2378,0 +1724206200,__unknown,11990,13838 +1724206200,Apple Update,3337,18970 +1724206200,HTTPS,27035,33568 +1724206200,SSL client,3337,18970 +1724206200,ICMP,946,0 +1724206200,__unknown,276,3292 +1724206200,Google,33932,46644 +1724206200,Gmail,12192,10816 +1724206200,HTTPS,73787,108039 +1724206200,SSL client,46124,57460 +1724206200,ICMP,328,0 +1724206200,DNS over HTTPS,4617,12456 +1724206200,__unknown,283238,659655 +1724206200,BitTorrent,310,496 +1724206200,DHCPv6,163,0 +1724206200,Google APIs,31477,8867 +1724206200,Google,67443,195679 +1724206200,DNS,25870,0 +1724206200,Gmail,6471,10204 +1724206200,HTTP,2466,2069 +1724206200,Microsoft Update,646,500 +1724206200,NTP,450,450 +1724206200,STUN,984,888 +1724206200,Odnoklassniki,2455,2277 +1724206200,HTTPS,211868,561844 +1724206200,SSL client,160006,256583 +1724206200,Microsoft,922,7532 +1724206200,Yandex,1313,907 +1724206200,Atlassian,45445,18223 +1724206200,Microsoft CryptoAPI,2466,2069 +1724206200,ICMP,12899,4680 +1724206200,Grammarly,2232,7887 +1724206200,DNS over HTTPS,14244,37461 +1724206200,__unknown,1031963,787751 +1724206200,Apple Update,1859,5531 +1724206200,BITS,3312,13563 +1724206200,Google,40525,49168 +1724206200,DNS,48919,46441 +1724206200,Firefox,822,1130 +1724206200,HTTP,75842,105254 +1724206200,Internet Explorer,6534,2172 +1724206200,Launchpad,3200,2480 +1724206200,Microsoft Update,2325,1821 +1724206200,NTP,13830,4080 +1724206200,SSL,855,7031 +1724206200,Advanced Packaging Tool,34207,31281 +1724206200,HTTPS,111618,224282 +1724206200,Apple sites,1802,4444 +1724206200,Avast,382,391 +1724206200,SSL client,62743,126809 +1724206200,Ubuntu Update Manager,23711,22297 +1724206200,Microsoft,4005,21508 +1724206200,Yandex,15529,35217 +1724206200,Ubuntu,8996,8336 +1724206200,Microsoft CryptoAPI,5647,6857 +1724206200,Microsoft WNS,693,7945 +1724206200,Google Hangouts,855,7031 +1724206200,ICMP,2630,0 +1724206200,Telegram,14822,10408 +1724206200,Edge Chromium,7618,21668 +1724206200,Grammarly,1933,7464 +1724206200,DNS over TLS,2356,9540 +1724206200,DNS over HTTPS,62035,190705 +1724206500,DNS over HTTPS,27330,70248 +1724206500,HTTPS,125240,559359 +1724206500,SSL client,125240,559359 +1724206500,Mail.Ru,125240,559359 +1724206500,HTTPS,31159,45254 +1724206500,SSL client,31159,45254 +1724206500,Telegram,31159,45254 +1724206500,HTTPS,16597,34293 +1724206500,SSL client,4137,6382 +1724206500,Sharepoint Online,4137,6382 +1724206500,__unknown,14160,17828 +1724206500,__unknown,4824,0 +1724206500,HTTPS,25677,62891 +1724206500,SSL client,3112,7571 +1724206500,Yandex,3112,7571 +1724206500,__unknown,22158,20316 +1724206500,Google APIs,3037,9879 +1724206500,HTTP,526,443 +1724206500,HTTPS,104859,202336 +1724206500,Mozilla,2337,5190 +1724206500,SSL client,47315,73078 +1724206500,Microsoft,6232,11115 +1724206500,Mail.Ru,22622,23121 +1724206500,Yandex,8005,19696 +1724206500,Microsoft CryptoAPI,526,443 +1724206500,Google Sign in,5082,4077 +1724206500,DNS over HTTPS,4361,11715 +1724206500,__unknown,81521,102941 +1724206500,MSN,4845,35999 +1724206500,HTTP,1009,1561 +1724206500,TwitchTV,6252,7003 +1724206500,Advanced Packaging Tool,587,530 +1724206500,HTTPS,362555,502575 +1724206500,WhatsApp,1798,5981 +1724206500,iCloud,3939,9305 +1724206500,Avast,2022,11590 +1724206500,SSL client,275212,290340 +1724206500,Microsoft,182962,110942 +1724206500,Mail.Ru,54513,39892 +1724206500,Yandex,6737,21345 +1724206500,Ubuntu,587,530 +1724206500,Office 365,7552,38590 +1724206500,Microsoft Windows Live Services Authentication,6390,15674 +1724206500,HTTPS,53933,63599 +1724206500,SSL client,53933,63599 +1724206500,ICMP,34768,0 +1724206500,Telegram,53933,63599 +1724206500,ICMP,4888,0 +1724206500,__unknown,5645,852 +1724206500,Google,16999,19649 +1724206500,HTTPS,16999,19649 +1724206500,SSL client,16999,19649 +1724206500,__unknown,23689,12369 +1724206500,HTTPS,20226,36092 +1724206500,DNS over HTTPS,5075,13598 +1724206500,CoAP,2352,1728 +1724206500,__unknown,331673,707548 +1724206500,BitTorrent,5900,4869 +1724206500,Google APIs,4951,16409 +1724206500,Google,14229,41429 +1724206500,DNS,15232,0 +1724206500,NTP,13740,3990 +1724206500,STUN,2926,4262 +1724206500,VKontakte,2689,6331 +1724206500,Odnoklassniki,3008,8205 +1724206500,Steam,45490,758394 +1724206500,HTTPS,100720,211956 +1724206500,SSL client,40894,94261 +1724206500,Google Play,9258,5942 +1724206500,ICMP,4747,840 +1724206500,Google Sign in,4597,8210 +1724206500,Grammarly,2162,7735 +1724206500,DNS over HTTPS,49402,129431 +1724206500,__unknown,219069,344391 +1724206500,BitTorrent,2013,537 +1724206500,DHCPv6,1141,0 +1724206500,Google APIs,17109,47055 +1724206500,Google,29440,65244 +1724206500,BitTorrent tracker,153,537 +1724206500,Chrome,48186,19586 +1724206500,DNS,59789,54392 +1724206500,Gmail,8690,15659 +1724206500,HTTP,150006,2768864 +1724206500,Launchpad,3134,2480 +1724206500,Microsoft Update,1627,1318 +1724206500,NetBIOS-dgm,250,0 +1724206500,NTP,270,270 +1724206500,Steam,0,78 +1724206500,Advanced Packaging Tool,70321,2704232 +1724206500,HTTPS,138783,360518 +1724206500,Mozilla,2702,4939 +1724206500,SSL client,68875,225204 +1724206500,Ubuntu Update Manager,26259,24689 +1724206500,Yandex,8044,86658 +1724206500,Ubuntu,42628,2678899 +1724206500,Microsoft CryptoAPI,2187,1781 +1724206500,Microsoft NCSI,471,487 +1724206500,ICMP,2304,0 +1724206500,Telegram,10673,8691 +1724206500,Edge Chromium,5917,16289 +1724206500,DNS over HTTPS,53996,177744 +1724206800,HTTPS,340336,91604 +1724206800,__unknown,1484,2060 +1724206800,HTTPS,14447,17025 +1724206800,SSL client,7390,9083 +1724206800,Microsoft,3956,1517 +1724206800,Microsoft Teams,3434,7566 +1724206800,Google APIs,2027,7205 +1724206800,HTTPS,56842,74788 +1724206800,SSL client,56842,74788 +1724206800,Google Play,24518,30561 +1724206800,Telegram,30297,37022 +1724206800,__unknown,6571,2718 +1724206800,Google,8366,5138 +1724206800,HTTPS,80914,101696 +1724206800,Avast,1254,10130 +1724206800,SSL client,50661,74250 +1724206800,Mail.Ru,15802,12500 +1724206800,Yandex,8546,11869 +1724206800,uTorrent,14034,20393 +1724206800,Office 365,2659,14220 +1724206800,__unknown,49006,47768 +1724206800,Google,1520337,626119 +1724206800,MSN,1426,7460 +1724206800,DNS,514,964 +1724206800,HTTP,6968,12851 +1724206800,Skype,7237,15252 +1724206800,Odnoklassniki,9200,16835 +1724206800,Steam,20248,36390 +1724206800,Advanced Packaging Tool,2256,2056 +1724206800,HTTPS,1875032,1473733 +1724206800,WhatsApp,2926,5622 +1724206800,Apple sites,2087,7272 +1724206800,Mozilla,2365,4857 +1724206800,SSL client,1725817,1081564 +1724206800,Ubuntu Update Manager,1621,1490 +1724206800,Microsoft,93262,192024 +1724206800,Mail.Ru,45161,33091 +1724206800,Yandex,7802,15368 +1724206800,Ubuntu,635,566 +1724206800,Google Update,4340,10370 +1724206800,Exchange Online,1309,6467 +1724206800,Office 365,5450,15032 +1724206800,Sharepoint Online,2578,94285 +1724206800,Microsoft Windows Live Services Authentication,7727,11537 +1724206800,DNS over HTTPS,1133,5393 +1724206800,HTTPS,36481,15802 +1724206800,Google,33679,27163 +1724206800,HTTPS,33679,27163 +1724206800,SSL client,33679,27163 +1724206800,Google,9653,15421 +1724206800,Gmail,12074,10816 +1724206800,HTTPS,30754,421180 +1724206800,SSL client,21727,26237 +1724206800,ICMP,2034,0 +1724206800,__unknown,293656,764662 +1724206800,BitTorrent,310,496 +1724206800,Google APIs,4302,15090 +1724206800,Google,51223,93115 +1724206800,DNS,24422,0 +1724206800,Gmail,6785,10135 +1724206800,HTTP,641,502 +1724206800,Microsoft Update,641,502 +1724206800,NetBIOS-dgm,243,0 +1724206800,NTP,630,630 +1724206800,STUN,984,888 +1724206800,Steam,78,86 +1724206800,HTTPS,128594,229087 +1724206800,SSL client,65811,124255 +1724206800,Yandex,1253,907 +1724206800,Microsoft CryptoAPI,641,502 +1724206800,ICMP,30744,4680 +1724206800,DNS over HTTPS,37332,87556 +1724206800,__unknown,194434,369586 +1724206800,DHCPv6,978,0 +1724206800,Google APIs,2410,6686 +1724206800,Google Drive,9262,40874 +1724206800,Google,5396,6932 +1724206800,DNS,42298,40242 +1724206800,HTTP,194003,5923283 +1724206800,Launchpad,3200,2480 +1724206800,Microsoft Update,1959,1636 +1724206800,NTP,810,810 +1724206800,SSL,1652,14124 +1724206800,VKontakte,2443,5591 +1724206800,Advanced Packaging Tool,172881,5875532 +1724206800,HTTPS,189190,254642 +1724206800,Mozilla,2758,1739 +1724206800,Avast,764,782 +1724206800,SSL client,51019,106878 +1724206800,Ubuntu Update Manager,35045,326827 +1724206800,Microsoft,633,7969 +1724206800,Yandex,6566,20445 +1724206800,Ubuntu,135911,5547600 +1724206800,Microsoft CryptoAPI,4893,4128 +1724206800,Microsoft WNS,633,7969 +1724206800,Google Play,18077,9718 +1724206800,Google Hangouts,1652,14124 +1724206800,ICMP,2087,0 +1724206800,Edge Chromium,6217,19518 +1724206800,DNS over HTTPS,48951,149288 +1724207100,__unknown,2665352,695632 +1724207100,__unknown,73427,1641098 +1724207100,__unknown,5318,3832 +1724207100,HTTPS,21527,24005 +1724207100,SSL client,3828,6468 +1724207100,Yandex,3828,6468 +1724207100,__unknown,18527,21612 +1724207100,Google,20435,31550 +1724207100,HTTPS,110028,169704 +1724207100,Mozilla,5855,5999 +1724207100,Avast,1254,8268 +1724207100,SSL client,60728,104469 +1724207100,Microsoft,12470,29371 +1724207100,Mail.Ru,9324,10958 +1724207100,Yandex,5404,3706 +1724207100,Splunk,4601,7273 +1724207100,Apple Maps,2912,6531 +1724207100,Office 365,1385,7344 +1724207100,DNS over HTTPS,7738,20222 +1724207100,__unknown,54628,37639 +1724207100,Google,12611,62632 +1724207100,Adobe Software,3600,5778 +1724207100,Gmail,25888,34153 +1724207100,Odnoklassniki,5520,10113 +1724207100,IMAPS,25888,34153 +1724207100,HTTPS,367331,672973 +1724207100,Apple sites,2044,9483 +1724207100,iCloud,4349,8793 +1724207100,SSL client,266879,343517 +1724207100,Microsoft,129875,107941 +1724207100,Mail.Ru,49808,42571 +1724207100,Yandex,17392,26358 +1724207100,uTorrent,10907,19517 +1724207100,Apple Maps,2513,89684 +1724207100,Office 365,4885,16178 +1724207100,DNS over HTTPS,877,4585 +1724207100,ICMP,21930,0 +1724207100,__unknown,2478,2518 +1724207100,Windows Live,4404,26116 +1724207100,HTTPS,8638,33156 +1724207100,SSL client,4404,26116 +1724207100,ICMP,1476,0 +1724207100,Telegram,808,472 +1724207100,__unknown,131767,39023 +1724207100,Google,11006,21859 +1724207100,Gmail,40598,70480 +1724207100,HTTPS,58649,106369 +1724207100,SSL client,51604,92339 +1724207100,ICMP,3120,3120 +1724207100,__unknown,324972,290913 +1724207100,BitTorrent,310,496 +1724207100,DHCPv6,163,0 +1724207100,Google APIs,3678,8506 +1724207100,Google,77151,108972 +1724207100,DNS,14720,0 +1724207100,Gmail,38767,31803 +1724207100,HTTP,587,503 +1724207100,NTP,37980,8730 +1724207100,STUN,984,888 +1724207100,Odnoklassniki,3008,8163 +1724207100,HTTPS,172370,225083 +1724207100,Mozilla,2615,1712 +1724207100,SSL client,129753,167140 +1724207100,Microsoft CryptoAPI,587,503 +1724207100,ICMP,4171,0 +1724207100,Google Sign in,4534,7984 +1724207100,DNS over HTTPS,7193,19704 +1724207100,__unknown,151507,125116 +1724207100,BitTorrent,153,198 +1724207100,Google APIs,4449,14065 +1724207100,Google,6912,15382 +1724207100,BitTorrent tracker,153,198 +1724207100,DNS,49658,46419 +1724207100,HTTP,183172,8884459 +1724207100,Internet Explorer,822,660 +1724207100,Launchpad,3200,2480 +1724207100,Microsoft Update,2605,2133 +1724207100,NTP,450,450 +1724207100,VKontakte,2383,5474 +1724207100,Advanced Packaging Tool,155579,8824473 +1724207100,HTTPS,137914,276999 +1724207100,SSL client,22828,64782 +1724207100,Ubuntu Update Manager,89251,4265984 +1724207100,Microsoft,693,7948 +1724207100,Yandex,9603,30085 +1724207100,Ubuntu,65253,4558306 +1724207100,Microsoft CryptoAPI,3479,2872 +1724207100,Microsoft WNS,693,7948 +1724207100,ICMP,1801,0 +1724207100,Xiaomi,529,1072 +1724207100,Edge Chromium,8325,24966 +1724207100,DNS over TLS,2224,9540 +1724207100,DNS over HTTPS,89824,275890 +1724207399,__unknown,1244,1838 +1724207399,HTTPS,14403,14566 +1724207399,SSL client,14403,14566 +1724207399,Yandex,14403,14566 +1724207399,HTTPS,53755,70611 +1724207399,SSL client,53755,70611 +1724207399,Telegram,53755,70611 +1724207399,__unknown,47189,48910 +1724207399,HTTPS,16737,33356 +1724207399,SSL client,2940,3076 +1724207399,Yandex,2940,3076 +1724207399,Google APIs,2027,7396 +1724207399,HTTPS,50661,53263 +1724207399,SSL client,48380,51596 +1724207399,Yandex,2298,1710 +1724207399,Google Play,44055,42490 +1724207399,__unknown,52045,48736 +1724207399,MSN,1307,7352 +1724207399,HTTPS,43081,83547 +1724207399,Mozilla,2301,4739 +1724207399,Avast,1254,8910 +1724207399,SSL client,28168,66741 +1724207399,Microsoft,7426,21963 +1724207399,Mail.Ru,14191,13203 +1724207399,Office 365,1689,10574 +1724207399,DNS over HTTPS,2384,7823 +1724207399,__unknown,6488,2952 +1724207399,Bing,1749,9274 +1724207399,Google,320068,238191 +1724207399,Dell,1111,4304 +1724207399,HTTP,871,2221 +1724207399,HTTPS,710774,1039130 +1724207399,WhatsApp,1858,5921 +1724207399,Apple sites,2069,7246 +1724207399,Mozilla,2141,4639 +1724207399,SSL client,536014,594850 +1724207399,Amazon Web Services,3325,21452 +1724207399,Microsoft,80991,94142 +1724207399,Mail.Ru,50003,42391 +1724207399,Yandex,20271,41515 +1724207399,Microsoft CryptoAPI,871,2221 +1724207399,Exchange Online,1198,8185 +1724207399,Office 365,3899,14226 +1724207399,Microsoft Windows Live Services Authentication,50060,111506 +1724207399,DNS over HTTPS,3079,11950 +1724207399,__unknown,521,240 +1724207399,ICMP,4214,0 +1724207399,__unknown,187,228 +1724207399,HTTPS,54984,21596 +1724207399,HTTP,739,457 +1724207399,HTTPS,3211,5416 +1724207399,__unknown,49531,16704 +1724207399,HTTPS,4351,12733 +1724207399,ICMP,1230,0 +1724207399,__unknown,418362,439770 +1724207399,BitTorrent,310,496 +1724207399,DHCPv6,978,0 +1724207399,Google APIs,12399,34069 +1724207399,Google,33257,94533 +1724207399,DNS,17816,0 +1724207399,HTTP,566,2141 +1724207399,NetBIOS-dgm,250,0 +1724207399,NTP,1350,1350 +1724207399,STUN,2844,4188 +1724207399,Odnoklassniki,3007,8221 +1724207399,HTTPS,86525,207376 +1724207399,SSL client,51488,147770 +1724207399,VeriSign,566,2141 +1724207399,Microsoft CryptoAPI,566,2141 +1724207399,Google Play,637,5999 +1724207399,ICMP,26870,0 +1724207399,DNS over HTTPS,7424,21203 +1724207399,__unknown,153498,125490 +1724207399,DHCPv6,163,0 +1724207399,Google APIs,39771,23379 +1724207399,Google Drive,7468,10252 +1724207399,Google,146959,45959 +1724207399,QQ,414,1584 +1724207399,DNS,47308,43433 +1724207399,HTTP,73642,757544 +1724207399,Launchpad,2560,1918 +1724207399,Microsoft Update,3857,3012 +1724207399,NetBIOS-dgm,243,0 +1724207399,NTP,24870,5370 +1724207399,Advanced Packaging Tool,44511,692506 +1724207399,HTTPS,284475,262355 +1724207399,Apple sites,1868,4445 +1724207399,Avast,1146,1173 +1724207399,SSL client,204832,105833 +1724207399,Ubuntu Update Manager,37111,686240 +1724207399,Microsoft,693,7999 +1724207399,Yandex,9086,27956 +1724207399,Ubuntu,5265,4809 +1724207399,Microsoft CryptoAPI,6738,5447 +1724207399,Microsoft WNS,693,7999 +1724207399,ICMP,1886,0 +1724207399,Telegram,1965,7377 +1724207399,Edge Chromium,8912,26975 +1724207399,DNS over HTTPS,101986,313901 +1724207700,HTTPS,30812,71522 +1724207700,SSL client,30812,71522 +1724207700,Yandex,30812,71522 +1724207700,Google,33684,41988 +1724207700,HTTPS,33684,41988 +1724207700,SSL client,33684,41988 +1724207700,HTTPS,204308,68519 +1724207700,HTTPS,140291,45360 +1724207700,Windows Live,78454,19219 +1724207700,HTTPS,78454,19219 +1724207700,SSL client,78454,19219 +1724207700,HTTPS,15947,18726 +1724207700,Skype,3976,8741 +1724207700,HTTPS,37910,247152 +1724207700,SSL client,31495,243225 +1724207700,Microsoft,27519,234484 +1724207700,__unknown,2231,8845 +1724207700,Google APIs,2027,7289 +1724207700,HTTPS,107616,79475 +1724207700,SSL client,88920,62860 +1724207700,Google Play,86893,55571 +1724207700,__unknown,91160,89796 +1724207700,Google APIs,2918,9738 +1724207700,Gmail,6384,8642 +1724207700,HTTPS,101087,159079 +1724207700,Avast,1254,8348 +1724207700,SSL client,65265,113139 +1724207700,Microsoft,8496,14778 +1724207700,Mail.Ru,15922,12618 +1724207700,Yandex,23344,42666 +1724207700,Office 365,2320,2405 +1724207700,ICMP,12660,12720 +1724207700,Grammarly,4627,13944 +1724207700,__unknown,23234,47421 +1724207700,Bing,3139,6400 +1724207700,Dropbox,9184,223955 +1724207700,MSN,1104,7134 +1724207700,HTTP,3329,4733 +1724207700,Microsoft Update,1442,2168 +1724207700,Skype,6457,15548 +1724207700,HTTPS,255278,738116 +1724207700,WhatsApp,3043,5682 +1724207700,SSL client,154602,497974 +1724207700,Microsoft,43683,76178 +1724207700,VeriSign,1071,1826 +1724207700,Mail.Ru,55645,44395 +1724207700,Yandex,14414,29748 +1724207700,GitHub,1652,6063 +1724207700,Microsoft CryptoAPI,3329,4733 +1724207700,Office 365,7134,25385 +1724207700,Microsoft Windows Live Services Authentication,6453,16752 +1724207700,DNS over HTTPS,1870,9170 +1724207700,Discord,1175,6466 +1724207700,DeepL Translator,4562,39950 +1724207700,HTTPS,362188,111661 +1724207700,SSL client,327410,97419 +1724207700,Google Play,327410,97419 +1724207700,__unknown,144,1246 +1724207700,CoAP,3724,2736 +1724207700,__unknown,1568,3938 +1724207700,__unknown,1312,878 +1724207700,HTTPS,9966,16291 +1724207700,ICMP,1500,1500 +1724207700,DNS over HTTPS,0,1736 +1724207700,__unknown,220977,395846 +1724207700,BitTorrent,310,496 +1724207700,Google APIs,17344,46071 +1724207700,Google Drive,28105,22824 +1724207700,Google,26037,81361 +1724207700,DNS,16115,0 +1724207700,Gmail,22226,27807 +1724207700,HTTP,389,456 +1724207700,NTP,12480,2730 +1724207700,STUN,984,888 +1724207700,VKontakte,2622,5723 +1724207700,Odnoklassniki,2333,7203 +1724207700,HTTPS,157083,248088 +1724207700,Mozilla,1876,4611 +1724207700,SSL client,109028,207748 +1724207700,ICMP,4720,60 +1724207700,Google Sign in,6234,4260 +1724207700,Grammarly,2251,7888 +1724207700,DNS over HTTPS,26139,63265 +1724207700,__unknown,223736,385978 +1724207700,Bing,4715,7756 +1724207700,BitTorrent,153,537 +1724207700,DHCPv6,978,0 +1724207700,Google APIs,86799352,2270682 +1724207700,Google,11051,38439 +1724207700,BitTorrent tracker,153,537 +1724207700,DNS,46757,47675 +1724207700,Gmail,9988,6287 +1724207700,HTTP,55318,74162 +1724207700,Launchpad,3200,2480 +1724207700,Microsoft Update,2326,1817 +1724207700,NTP,12210,2460 +1724207700,STUN,1962,2950 +1724207700,Advanced Packaging Tool,30933,28463 +1724207700,HTTPS,86900530,2470857 +1724207700,SSL client,86836379,2364593 +1724207700,Ubuntu Update Manager,23576,22237 +1724207700,Mail.Ru,2086,724 +1724207700,Yandex,5222,26654 +1724207700,Ubuntu,5498,5121 +1724207700,Microsoft CryptoAPI,6330,5494 +1724207700,Microsoft NCSI,925,974 +1724207700,ICMP,2348,0 +1724207700,Edge Chromium,6097,18220 +1724207700,DNS over TLS,4712,19078 +1724207700,DNS over HTTPS,56317,185877 +1724208000,HTTPS,160642,183350 +1724208000,DNS over HTTPS,129319,299733 +1724208000,__unknown,128767,3323129 +1724208000,HTTPS,11531,7056 +1724208000,SSL client,11531,7056 +1724208000,Google Play,11531,7056 +1724208000,HTTPS,11621,21752 +1724208000,__unknown,37185,19040 +1724208000,Skype,2846,7960 +1724208000,HTTPS,94534,159491 +1724208000,Mozilla,2201,4759 +1724208000,Avast,2442,21147 +1724208000,SSL client,46667,103866 +1724208000,Microsoft,5712,19307 +1724208000,Mail.Ru,26029,33138 +1724208000,Yandex,5243,8217 +1724208000,GISMETEO,2194,9338 +1724208000,__unknown,52594,19902 +1724208000,HTTP,1747,5561 +1724208000,Launchpad,640,496 +1724208000,Microsoft Update,1280,3548 +1724208000,Skype,6037,85896 +1724208000,TwitchTV,6461,7221 +1724208000,Advanced Packaging Tool,640,496 +1724208000,HTTPS,6571470,606372 +1724208000,Apple sites,1862,4533 +1724208000,SSL client,157579,330186 +1724208000,Microsoft,45232,76564 +1724208000,Mail.Ru,71630,57497 +1724208000,Yandex,19674,42111 +1724208000,Microsoft CryptoAPI,520,3055 +1724208000,Office 365,5990,54826 +1724208000,Edge Chromium,587,2010 +1724208000,Google,42258,32415 +1724208000,HTTPS,112277,124849 +1724208000,SSL client,112277,124849 +1724208000,Telegram,53723,69976 +1724208000,DNS over HTTPS,16296,22458 +1724208000,HTTPS,37515,15008 +1724208000,ICMP,4418,0 +1724208000,__unknown,1495,880 +1724208000,Google,11527,15078 +1724208000,HTTPS,15848,21832 +1724208000,SSL client,11527,15078 +1724208000,__unknown,1392,13788 +1724208000,Google,17497,18802 +1724208000,HTTPS,25240,33218 +1724208000,SSL client,17497,18802 +1724208000,ICMP,1230,0 +1724208000,__unknown,318535,491815 +1724208000,BitTorrent,310,496 +1724208000,DHCPv6,163,0 +1724208000,Google APIs,40802,8784 +1724208000,Google,35227,97222 +1724208000,DNS,19974,0 +1724208000,NetBIOS-dgm,250,0 +1724208000,NTP,990,990 +1724208000,STUN,984,888 +1724208000,VKontakte,2684,5854 +1724208000,HTTPS,123955,432725 +1724208000,SSL client,80901,116793 +1724208000,MDNS,364,0 +1724208000,ICMP,18778,2880 +1724208000,DNS over HTTPS,44839,109725 +1724208000,CoAP,1176,864 +1724208000,__unknown,296897,255955 +1724208000,DHCPv6,978,0 +1724208000,Google,8149,25268 +1724208000,DNS,58233,52647 +1724208000,HTTP,49495,68826 +1724208000,Internet Explorer,762,660 +1724208000,Launchpad,3200,2480 +1724208000,Microsoft Update,2329,1836 +1724208000,NTP,1170,1170 +1724208000,VKontakte,2384,5529 +1724208000,Advanced Packaging Tool,30853,28119 +1724208000,HTTPS,122466,179009 +1724208000,Avast,830,848 +1724208000,SSL client,17533,46660 +1724208000,Ubuntu Update Manager,21004,19665 +1724208000,Microsoft,693,7965 +1724208000,Yandex,4560,10584 +1724208000,Ubuntu,8906,8267 +1724208000,Microsoft CryptoAPI,3503,2842 +1724208000,Microsoft NCSI,454,487 +1724208000,Microsoft WNS,693,7965 +1724208000,ICMP,1139,0 +1724208000,Edge Chromium,4336,12208 +1724208000,DNS over HTTPS,68839,218666 +1724208299,__unknown,157210,698393 +1724208299,HTTPS,35584,43537 +1724208299,SSL client,35584,43537 +1724208299,Yandex,35584,43537 +1724208299,HTTPS,36897,69761 +1724208299,SSL client,36897,69761 +1724208299,Yandex,36897,69761 +1724208299,HTTPS,4197,6383 +1724208299,SSL client,4197,6383 +1724208299,Sharepoint Online,4197,6383 +1724208299,HTTPS,4537,4016 +1724208299,HTTPS,17309,16633 +1724208299,__unknown,162884,158868 +1724208299,Bing,3358,6423 +1724208299,Odnoklassniki,2947,8087 +1724208299,HTTPS,76492,102940 +1724208299,SSL client,23039,38157 +1724208299,Microsoft,4316,7390 +1724208299,Mail.Ru,12418,16257 +1724208299,Apple Maps,2780,7502 +1724208299,__unknown,8804,15625 +1724208299,Google,38374,66864 +1724208299,MSN,5392,19569 +1724208299,Gmail,1837,1816 +1724208299,HTTP,540,917 +1724208299,Skype,3332,7981 +1724208299,Steam,11660,19772 +1724208299,HTTPS,347133,531697 +1724208299,WhatsApp,1858,5981 +1724208299,Avast,1254,8156 +1724208299,SSL client,269406,361402 +1724208299,Microsoft,47170,77783 +1724208299,Mail.Ru,41300,36463 +1724208299,Yandex,10144,15052 +1724208299,Microsoft Azure,80615,9798 +1724208299,Microsoft CryptoAPI,540,917 +1724208299,Exchange Online,1317,7945 +1724208299,Office 365,12945,62900 +1724208299,Microsoft Windows Live Services Authentication,14066,27303 +1724208299,HTTPS,22810,20635 +1724208299,__unknown,144,78 +1724208299,HTTPS,47069,115170 +1724208299,ICMP,984,0 +1724208299,DNS over HTTPS,5338,13752 +1724208299,__unknown,274404,266832 +1724208299,BitTorrent,310,496 +1724208299,DHCPv6,163,0 +1724208299,Google APIs,2858,9080 +1724208299,Google,58304,137427 +1724208299,DNS,23979,0 +1724208299,Gmail,6074,6694 +1724208299,HTTP,1991,1782 +1724208299,Microsoft Update,981,826 +1724208299,NetBIOS-dgm,243,0 +1724208299,NTP,20810,5175 +1724208299,STUN,984,888 +1724208299,HTTPS,99983,207451 +1724208299,SSL client,73470,157662 +1724208299,Microsoft CryptoAPI,1991,1782 +1724208299,ICMP,7988,1800 +1724208299,Google Sign in,6234,4461 +1724208299,DNS over HTTPS,2504,7823 +1724208299,__unknown,334599,291537 +1724208299,BitTorrent,153,198 +1724208299,Google,6750,13648 +1724208299,BitTorrent tracker,153,198 +1724208299,DNS,44678,47015 +1724208299,HTTP,50886,80938 +1724208299,Launchpad,3200,2414 +1724208299,Microsoft Update,641,507 +1724208299,NTP,6760,2895 +1724208299,VKontakte,2383,5581 +1724208299,Advanced Packaging Tool,27897,25391 +1724208299,HTTPS,130295,241382 +1724208299,SSL client,15365,39436 +1724208299,Ubuntu Update Manager,21079,19725 +1724208299,Microsoft,693,7968 +1724208299,Yandex,6924,26600 +1724208299,Ubuntu,7084,6928 +1724208299,Microsoft CryptoAPI,2629,2312 +1724208299,Microsoft WNS,693,7968 +1724208299,ICMP,1910,0 +1724208299,Edge Chromium,6804,21463 +1724208299,DNS over HTTPS,86556,270370 +1724208600,HTTPS,52466,70055 +1724208600,HTTPS,31581,44855 +1724208600,__unknown,116322,3199296 +1724208600,Google APIs,4822,12743 +1724208600,HTTPS,66866,53395 +1724208600,SSL client,62349,46792 +1724208600,Google Play,57527,34049 +1724208600,__unknown,42848,32262 +1724208600,Dropbox,1638,1266 +1724208600,Google,16698,14920 +1724208600,HTTP,2127,2708 +1724208600,HTTPS,168667,232879 +1724208600,Mozilla,2143,4759 +1724208600,SSL client,94319,147892 +1724208600,Microsoft,4305,7388 +1724208600,VeriSign,1075,1822 +1724208600,Mail.Ru,23102,13945 +1724208600,Yandex,15876,72690 +1724208600,Microsoft CryptoAPI,2127,2708 +1724208600,uTorrent,9442,13616 +1724208600,Google Play,18921,10005 +1724208600,GISMETEO,2194,9303 +1724208600,__unknown,17025,16343 +1724208600,Bing,3671,6486 +1724208600,Google,103329,344829 +1724208600,MSN,2895,31346 +1724208600,HTTP,5534,6967 +1724208600,Microsoft Update,1317,1269 +1724208600,Steam,2222,5051 +1724208600,Advanced Packaging Tool,2836,2796 +1724208600,HTTPS,297309,766669 +1724208600,WhatsApp,3166,5622 +1724208600,SSL client,216936,580401 +1724208600,Ubuntu Update Manager,2369,2266 +1724208600,Microsoft,41729,76963 +1724208600,Mail.Ru,33894,24932 +1724208600,Yandex,5050,11383 +1724208600,Ubuntu,467,530 +1724208600,Microsoft CryptoAPI,1844,1772 +1724208600,Apple Maps,2966,6488 +1724208600,Exchange Online,1323,8191 +1724208600,Office 365,16855,57495 +1724208600,Microsoft Windows Live Services Authentication,6495,15734 +1724208600,Edge Chromium,527,2009 +1724208600,__unknown,53957,65252 +1724208600,ICMP,13284,0 +1724208600,DNS over HTTPS,12549,32982 +1724208600,ICMP,2132,0 +1724208600,Gmail,50820,75251 +1724208600,HTTPS,50820,75251 +1724208600,SSL client,50820,75251 +1724208600,__unknown,632,348 +1724208600,__unknown,5398,13533 +1724208600,Google,32951,26401 +1724208600,HTTP,467,443 +1724208600,HTTPS,40516,40363 +1724208600,SSL client,32951,26401 +1724208600,Microsoft CryptoAPI,467,443 +1724208600,ICMP,5508,0 +1724208600,__unknown,671681,431485 +1724208600,BitTorrent,310,496 +1724208600,Google,35520,149027 +1724208600,DNS,19848,260 +1724208600,Gmail,18510,28868 +1724208600,NTP,720,720 +1724208600,STUN,984,888 +1724208600,Odnoklassniki,3079,8300 +1724208600,HTTPS,93921,265700 +1724208600,SSL client,59340,194083 +1724208600,ICMP,12332,0 +1724208600,Grammarly,2231,7888 +1724208600,__unknown,282715,353260 +1724208600,DHCPv6,978,0 +1724208600,Google,39815,109125 +1724208600,DNS,35956,35824 +1724208600,HTTP,195458,5130094 +1724208600,Launchpad,3200,2480 +1724208600,NetBIOS-dgm,250,0 +1724208600,NTP,990,990 +1724208600,Advanced Packaging Tool,33037,30593 +1724208600,HTTPS,150779,271881 +1724208600,SSL client,50948,142156 +1724208600,Ubuntu Update Manager,23236,22175 +1724208600,Microsoft,145552,5064772 +1724208600,Yandex,11298,37718 +1724208600,Ubuntu,8367,7774 +1724208600,Microsoft CryptoAPI,3324,2695 +1724208600,Microsoft WNS,573,7995 +1724208600,ICMP,1224,60 +1724208600,Edge Chromium,4109,14039 +1724208600,DNS over HTTPS,54577,157498 +1724208900,__unknown,10773,27562 +1724208900,Windows Live,25843,9441 +1724208900,HTTPS,150931,299192 +1724208900,SSL client,42982,237919 +1724208900,Microsoft,17139,228478 +1724208900,__unknown,59796,33614 +1724208900,Google APIs,2362,6223 +1724208900,HTTPS,44972,51237 +1724208900,SSL client,13192,12343 +1724208900,Google Play,10830,6120 +1724208900,HTTPS,17937,16872 +1724208900,DNS over HTTPS,65437,151278 +1724208900,__unknown,11268,7570 +1724208900,Google,3545,7866 +1724208900,MSN,24882,108583 +1724208900,TeamViewer,1451,8847 +1724208900,Odnoklassniki,3079,8222 +1724208900,HTTPS,106369,244286 +1724208900,Avast,1254,8044 +1724208900,SSL client,71898,211154 +1724208900,Microsoft,11359,24446 +1724208900,Mail.Ru,5352,5539 +1724208900,Yandex,2689,6967 +1724208900,uTorrent,11072,19458 +1724208900,GISMETEO,2194,9303 +1724208900,Google Sign in,5021,3879 +1724208900,__unknown,24347,26823 +1724208900,Google,475932,715171 +1724208900,Gmail,932,5392 +1724208900,SMTPS,932,5392 +1724208900,HTTPS,748370,1708303 +1724208900,Apple sites,44176,360540 +1724208900,Mozilla,2141,4699 +1724208900,Avast,1710,6139 +1724208900,SSL client,592914,1192731 +1724208900,Microsoft,25530,58889 +1724208900,Mail.Ru,38063,26793 +1724208900,Yandex,2798,7297 +1724208900,Office 365,1632,7811 +1724208900,DNS over HTTPS,2266,10784 +1724208900,Google,128277,154261 +1724208900,HTTPS,128277,154261 +1724208900,SSL client,128277,154261 +1724208900,HTTPS,45819,63958 +1724208900,SSL client,45819,63958 +1724208900,ICMP,18060,18000 +1724208900,Telegram,45819,63958 +1724208900,HTTPS,26213,31682 +1724208900,HTTPS,8241,11429 +1724208900,SSL client,8241,11429 +1724208900,DNS over HTTPS,8241,11429 +1724208900,__unknown,442,505 +1724208900,HTTP,707,408 +1724208900,DNS over HTTPS,0,1390 +1724208900,__unknown,421,322 +1724208900,Google,11329,22329 +1724208900,HTTPS,27795,38956 +1724208900,SSL client,11329,22329 +1724208900,ICMP,656,0 +1724208900,__unknown,451034,5572217 +1724208900,BitTorrent,310,496 +1724208900,DHCPv6,163,0 +1724208900,Google APIs,2145,6886 +1724208900,Google,31903,74349 +1724208900,Chrome,1335,869 +1724208900,DNS,13443,0 +1724208900,Gmail,7094,4005 +1724208900,HTTP,4276,4980 +1724208900,Microsoft Update,641,501 +1724208900,NetBIOS-dgm,243,0 +1724208900,NTP,12570,2820 +1724208900,STUN,2844,4188 +1724208900,Odnoklassniki,3007,8282 +1724208900,HTTPS,95803,188891 +1724208900,SSL client,52514,105572 +1724208900,CloudFront,2132,7948 +1724208900,VeriSign,566,2141 +1724208900,Microsoft CryptoAPI,2941,4111 +1724208900,ICMP,5610,0 +1724208900,Google Sign in,6233,4102 +1724208900,DNS over HTTPS,2302,3630 +1724208900,__unknown,324891,202095 +1724208900,BITS,1857,4543 +1724208900,BitTorrent,153,537 +1724208900,DHCPv6,978,0 +1724208900,Google APIs,5675,13558 +1724208900,Google,50854,81651 +1724208900,BitTorrent tracker,153,537 +1724208900,DNS,42038,39265 +1724208900,HTTP,10783782,19137576 +1724208900,Internet Explorer,762,660 +1724208900,Launchpad,3200,2480 +1724208900,Microsoft Update,1287,1002 +1724208900,NTP,12570,2820 +1724208900,STUN,1860,3300 +1724208900,Odnoklassniki,2887,7784 +1724208900,Advanced Packaging Tool,29182,26634 +1724208900,HTTPS,265226,268826 +1724208900,SSL client,75807,138168 +1724208900,Ubuntu Update Manager,21238,19878 +1724208900,Microsoft,633,7966 +1724208900,VeriSign,566,2141 +1724208900,Yandex,8183,26133 +1724208900,Ubuntu,7360,7038 +1724208900,Microsoft CryptoAPI,4350,5180 +1724208900,Microsoft WNS,633,7966 +1724208900,Apple Maps,2750,6347 +1724208900,ICMP,2905,240 +1724208900,Google Sign in,6221,4259 +1724208900,Edge Chromium,7798,23593 +1724208900,DNS over TLS,2422,9541 +1724208900,DNS over HTTPS,52348,183244 +1724209200,HTTPS,62500,103356 +1724209200,VKontakte,610830,125320 +1724209200,HTTPS,610830,125320 +1724209200,SSL client,610830,125320 +1724209200,HTTPS,72527,30219 +1724209200,HTTPS,113487,503180 +1724209200,SSL client,113487,503180 +1724209200,Mail.Ru,113487,503180 +1724209200,HTTPS,172513,41416 +1724209200,SSL client,172513,41416 +1724209200,Mail.Ru,172513,41416 +1724209200,HTTPS,1860,7362 +1724209200,HTTPS,33905,37411 +1724209200,SSL client,25599,30481 +1724209200,Yandex,2636,6325 +1724209200,Google Play,22963,24156 +1724209200,__unknown,12441,10024 +1724209200,Dropbox,8339,1577 +1724209200,Google,8271,5471 +1724209200,HTTPS,90044,127701 +1724209200,Mozilla,2081,4639 +1724209200,SSL client,62917,104991 +1724209200,Microsoft,8070,22416 +1724209200,Mail.Ru,29940,21930 +1724209200,Yandex,2069,1765 +1724209200,Office 365,1953,37855 +1724209200,GISMETEO,2194,9338 +1724209200,__unknown,15757,2898 +1724209200,Bing,3429,6540 +1724209200,Google APIs,1940,6802 +1724209200,Google,1491,1597 +1724209200,Dell,1051,4365 +1724209200,HTTP,640,496 +1724209200,iTunes,5616,26311 +1724209200,Launchpad,640,496 +1724209200,SSL,1505,1392 +1724209200,Advanced Packaging Tool,640,496 +1724209200,HTTPS,320779,868292 +1724209200,WhatsApp,1858,5921 +1724209200,Apple sites,5244,19658 +1724209200,iCloud,3708,42883 +1724209200,Mozilla,1904,5631 +1724209200,Avast,2316,19423 +1724209200,Opera,9821,6073 +1724209200,SSL client,185837,392476 +1724209200,Microsoft,41138,62911 +1724209200,Mail.Ru,44722,45905 +1724209200,Yandex,34359,84998 +1724209200,Office 365,1522,4294 +1724209200,Microsoft Windows Live Services Authentication,21123,42873 +1724209200,Google Hangouts,1505,1392 +1724209200,Synology DSM,2199,6945 +1724209200,Grammarly,12570,9948 +1724209200,DNS over HTTPS,3902,14377 +1724209200,__unknown,187,228 +1724209200,ICMP,43214,0 +1724209200,Gmail,61343,36643 +1724209200,SSL,2677,9190 +1724209200,HTTPS,147866,125182 +1724209200,SSL client,115812,98679 +1724209200,Telegram,54469,62036 +1724209200,__unknown,1063,516 +1724209200,Google,75025,39700 +1724209200,Windows Live,8404,29141 +1724209200,HTTPS,87324,75531 +1724209200,SSL client,83429,68841 +1724209200,HTTPS,9212,10843 +1724209200,DNS over HTTPS,61837,144716 +1724209200,__unknown,321637,348428 +1724209200,BitTorrent,310,496 +1724209200,DHCPv6,163,0 +1724209200,Google APIs,50711,17014 +1724209200,Google,44634,79090 +1724209200,DNS,12311,0 +1724209200,Gmail,7162,7830 +1724209200,NetBIOS-ns,92,0 +1724209200,NTP,720,720 +1724209200,STUN,1066,962 +1724209200,HTTPS,160350,137585 +1724209200,SSL client,157912,131289 +1724209200,Atlassian,44197,13525 +1724209200,Google Play,8976,5942 +1724209200,ICMP,8914,4680 +1724209200,ICMP for IPv6,70,0 +1724209200,Grammarly,2232,7888 +1724209200,DNS over HTTPS,5778,17077 +1724209200,__unknown,364354,600306 +1724209200,Google APIs,3533,10962 +1724209200,Google,38161,78053 +1724209200,DNS,51411,43989 +1724209200,HTTP,56698,80069 +1724209200,Launchpad,3200,2480 +1724209200,Microsoft Update,1283,1010 +1724209200,NTP,13470,3720 +1724209200,STUN,82,74 +1724209200,Advanced Packaging Tool,33109,30351 +1724209200,HTTPS,187915,545676 +1724209200,Avast,448,457 +1724209200,SSL client,52443,117320 +1724209200,Ubuntu Update Manager,25069,23523 +1724209200,Microsoft,2814,1016 +1724209200,Yandex,6828,17464 +1724209200,Ubuntu,6541,6188 +1724209200,Microsoft CryptoAPI,2936,2524 +1724209200,ICMP,2672,0 +1724209200,ICMP for IPv6,70,0 +1724209200,Telegram,2037,7402 +1724209200,Edge Chromium,9439,28340 +1724209200,Grammarly,1903,7403 +1724209200,DNS over TLS,2158,9541 +1724209200,DNS over HTTPS,79276,255593 +1724209500,__unknown,106160,79464 +1724209500,HTTPS,105993,95721 +1724209500,HTTPS,34451,46306 +1724209500,SSL client,34451,46306 +1724209500,GitHub,34451,46306 +1724209500,HTTPS,196279,4155249 +1724209500,SSL client,45583,70808 +1724209500,Telegram,45583,70808 +1724209500,__unknown,540,0 +1724209500,HTTPS,45433,39065 +1724209500,SSL client,30623,10692 +1724209500,Google Play,30623,10692 +1724209500,__unknown,176520,177234 +1724209500,Dropbox,1787,5580 +1724209500,Google,8269,5098 +1724209500,HTTPS,81750,148328 +1724209500,SSL client,46210,95897 +1724209500,Microsoft,4184,7330 +1724209500,Mail.Ru,24404,23398 +1724209500,Yandex,2493,2365 +1724209500,GISMETEO,1939,2882 +1724209500,Microsoft Teams,3134,49244 +1724209500,__unknown,1654,7567 +1724209500,Bing,3494,6510 +1724209500,Google APIs,5759,13746 +1724209500,HTTP,1935,1918 +1724209500,OpenSSH,9700,30876 +1724209500,Skype,4369,88372 +1724209500,SSH,9700,30876 +1724209500,Odnoklassniki,1840,3391 +1724209500,Advanced Packaging Tool,1935,1918 +1724209500,HTTPS,472358,646887 +1724209500,WhatsApp,3043,5682 +1724209500,Mozilla,2296,4679 +1724209500,Avast,1884,4342 +1724209500,SSL client,377270,471357 +1724209500,Ubuntu Update Manager,1366,1352 +1724209500,Microsoft,217547,128867 +1724209500,Mail.Ru,87868,94551 +1724209500,Yandex,6736,17764 +1724209500,Ubuntu,569,566 +1724209500,Office 365,7663,20799 +1724209500,Microsoft Windows Live Services Authentication,37814,88336 +1724209500,HTTPS,49066,80644 +1724209500,CoAP,4312,3168 +1724209500,__unknown,672,480 +1724209500,HTTPS,3422,5460 +1724209500,DNS over HTTPS,8133,22361 +1724209500,__unknown,144,78 +1724209500,ICMP,2128,1800 +1724209500,__unknown,357654,675429 +1724209500,BitTorrent,310,496 +1724209500,Google APIs,13810,44498 +1724209500,Google,46574,156687 +1724209500,DNS,16133,0 +1724209500,Gmail,39349,37583 +1724209500,HTTP,1545,1289 +1724209500,NetBIOS-dgm,250,0 +1724209500,NTP,1350,1350 +1724209500,STUN,984,814 +1724209500,Odnoklassniki,3008,8026 +1724209500,HTTPS,156522,380126 +1724209500,SSL client,111217,256017 +1724209500,Microsoft CryptoAPI,816,740 +1724209500,ICMP,14384,60 +1724209500,Google Sign in,6228,4276 +1724209500,DNS over HTTPS,5519,14721 +1724209500,__unknown,230696,287606 +1724209500,BitTorrent,153,198 +1724209500,DHCPv6,1141,0 +1724209500,Google APIs,46811,16472 +1724209500,Google,12716,26566 +1724209500,BitTorrent tracker,153,198 +1724209500,Chrome,6985,6038 +1724209500,DNS,59718,53960 +1724209500,HTTP,62818,135950 +1724209500,Launchpad,4394,2554 +1724209500,Microsoft Update,1336,1280 +1724209500,NetBIOS-dgm,243,0 +1724209500,NTP,13200,3450 +1724209500,PcAnywhere,60,0 +1724209500,TeamViewer,27672,42116 +1724209500,Odnoklassniki,3699,2378 +1724209500,Steam,2931,59186 +1724209500,Advanced Packaging Tool,34087,30401 +1724209500,HTTPS,213359,337867 +1724209500,SSL client,71705,87467 +1724209500,Ubuntu Update Manager,24901,23535 +1724209500,Yandex,9370,44270 +1724209500,Ubuntu,6558,6148 +1724209500,Microsoft CryptoAPI,1227,1010 +1724209500,ICMP,2634,0 +1724209500,Telegram,1326,495 +1724209500,Edge Chromium,8205,23686 +1724209500,DNS over HTTPS,92085,293950 +1724209800,HTTPS,45245,70486 +1724209800,SSL client,45245,70486 +1724209800,Telegram,45245,70486 +1724209800,HTTPS,162076,106887 +1724209800,SSL client,53723,70115 +1724209800,Telegram,54023,70415 +1724209800,__unknown,38357,25769 +1724209800,__unknown,53996,59454 +1724209800,HTTPS,99193,180472 +1724209800,SSL client,20800,138807 +1724209800,Microsoft,7327,124974 +1724209800,Google Play,10641,6641 +1724209800,Microsoft Teams,2832,7192 +1724209800,HTTPS,2264,1826 +1724209800,__unknown,37703,19308 +1724209800,MSN,1541,7371 +1724209800,HTTPS,101378,151333 +1724209800,SSL client,54374,106286 +1724209800,Microsoft,8852,27745 +1724209800,Mail.Ru,33491,42396 +1724209800,Office 365,1749,7788 +1724209800,Sharepoint Online,5997,10710 +1724209800,OneDrive,2744,10276 +1724209800,__unknown,36282,20176 +1724209800,Google APIs,36079,8495 +1724209800,Google,106614,124632 +1724209800,MSN,3598,10456 +1724209800,Microsoft Update,1280,3548 +1724209800,Odnoklassniki,9200,16955 +1724209800,HTTPS,415270,624242 +1724209800,Apple sites,1770,4579 +1724209800,SSL client,348756,442874 +1724209800,Amazon Web Services,3265,21542 +1724209800,Microsoft,39097,63173 +1724209800,Mail.Ru,72249,57313 +1724209800,Yandex,6571,19047 +1724209800,Apple Maps,2792,6677 +1724209800,Exchange Online,2513,16003 +1724209800,Office 365,3216,17483 +1724209800,Microsoft Windows Live Services Authentication,50735,69616 +1724209800,Telegram,585,245 +1724209800,Grammarly,12569,10032 +1724209800,DNS over HTTPS,8399,22725 +1724209800,__unknown,1383,540 +1724209800,__unknown,5974,74 +1724209800,Google,42719,31022 +1724209800,HTTPS,51463,41275 +1724209800,SSL client,42719,31022 +1724209800,__unknown,1232,2110 +1724209800,SSL,10136,6485 +1724209800,APNS,10136,6485 +1724209800,SSL client,10136,6485 +1724209800,__unknown,397,466 +1724209800,HTTPS,9762,16687 +1724209800,ICMP,612,0 +1724209800,__unknown,320235,403434 +1724209800,BitTorrent,310,496 +1724209800,Google APIs,48328,27870 +1724209800,Google,24301,73737 +1724209800,DNS,22876,0 +1724209800,Gmail,5712,7686 +1724209800,HTTP,1190,1016 +1724209800,NTP,13110,3360 +1724209800,Odnoklassniki,3007,8221 +1724209800,HTTPS,191223,754808 +1724209800,SSL client,146279,604349 +1724209800,Microsoft,922,7532 +1724209800,Atlassian,45386,18259 +1724209800,Microsoft CryptoAPI,1190,1016 +1724209800,ICMP,6967,1920 +1724209800,ICMP for IPv6,70,0 +1724209800,JetBrains,16330,453157 +1724209800,Grammarly,2293,7887 +1724209800,DNS over HTTPS,15052,42183 +1724209800,__unknown,220611,311098 +1724209800,DHCPv6,978,0 +1724209800,Google APIs,1845,6565 +1724209800,Google,17639,44842 +1724209800,DNS,48074,43643 +1724209800,HTTP,55986,75003 +1724209800,Internet Explorer,6344,2100 +1724209800,Launchpad,3200,2480 +1724209800,Microsoft Update,1683,1320 +1724209800,NTP,270,270 +1724209800,STUN,984,888 +1724209800,VKontakte,2443,5529 +1724209800,Advanced Packaging Tool,26976,24581 +1724209800,HTTPS,144998,389829 +1724209800,Apple sites,1812,4554 +1724209800,Avast,382,391 +1724209800,SSL client,38713,107148 +1724209800,Ubuntu Update Manager,19571,18319 +1724209800,Microsoft,633,7965 +1724209800,Yandex,16365,27500 +1724209800,Ubuntu,5971,5622 +1724209800,Microsoft CryptoAPI,4776,6180 +1724209800,Microsoft WNS,633,7965 +1724209800,ICMP,1659,0 +1724209800,Xiaomi,525,1078 +1724209800,Edge Chromium,5270,13644 +1724209800,Grammarly,1903,7404 +1724209800,DNS over TLS,2158,9539 +1724209800,DNS over HTTPS,69277,209925 +1724210100,DNS over HTTPS,25483,65024 +1724210100,__unknown,45945,70618 +1724210100,HTTPS,274311,1645884 +1724210100,SSL client,238445,61861 +1724210100,Mail.Ru,238445,61861 +1724210100,HTTPS,3614,1623 +1724210100,__unknown,1809,0 +1724210100,HTTPS,7845,10192 +1724210100,__unknown,2844,6103 +1724210100,HTTPS,62329,79684 +1724210100,SSL client,20600,18540 +1724210100,Google Play,20600,18540 +1724210100,__unknown,246995,3363692 +1724210100,HTTPS,44289,83342 +1724210100,Mozilla,2361,5379 +1724210100,Avast,2376,18740 +1724210100,SSL client,34253,71433 +1724210100,Microsoft,3659,8186 +1724210100,Mail.Ru,13958,16377 +1724210100,Yandex,5129,11162 +1724210100,Office 365,1749,7788 +1724210100,Google Sign in,5021,3801 +1724210100,__unknown,6829,5975 +1724210100,Google APIs,3133,7074 +1724210100,Google,38309,58972 +1724210100,Gmail,11320,15201 +1724210100,HTTP,535,2994 +1724210100,Skype,8340,109197 +1724210100,VKontakte,2382,5512 +1724210100,Odnoklassniki,3680,6722 +1724210100,IMAPS,11320,15201 +1724210100,HTTPS,966331,25713284 +1724210100,WhatsApp,1798,5981 +1724210100,Apple sites,2016,11784 +1724210100,Avast,3451,12726 +1724210100,SSL client,884633,25483716 +1724210100,Amazon Web Services,3199,21490 +1724210100,Microsoft,27098,61347 +1724210100,Mail.Ru,53864,39375 +1724210100,Yandex,723205,25122533 +1724210100,GitHub,1592,6064 +1724210100,Microsoft CryptoAPI,535,2994 +1724210100,Office 365,3044,5719 +1724210100,DNS over HTTPS,1113,6557 +1724210100,HTTPS,53623,65884 +1724210100,SSL client,53623,65884 +1724210100,Telegram,53623,65884 +1724210100,__unknown,1047,1007 +1724210100,HTTPS,64513,75400 +1724210100,SSL client,54409,62036 +1724210100,Telegram,54409,62036 +1724210100,__unknown,144,78 +1724210100,HTTP,4015,182254 +1724210100,Advanced Packaging Tool,4015,182254 +1724210100,HTTPS,14495,26924 +1724210100,Apple Maps,2715,6936 +1724210100,ICMP,188,0 +1724210100,__unknown,600346,3098798 +1724210100,BitTorrent,310,496 +1724210100,DHCPv6,163,0 +1724210100,Google APIs,30232,13914 +1724210100,Google Drive,26884,15192 +1724210100,Google,73478,180657 +1724210100,DNS,16535,0 +1724210100,Gmail,15782,19353 +1724210100,HTTP,586,503 +1724210100,NTP,37980,8730 +1724210100,Odnoklassniki,3007,8282 +1724210100,HTTPS,193792,288612 +1724210100,SSL client,151631,242347 +1724210100,Microsoft CryptoAPI,586,503 +1724210100,ICMP,4445,1620 +1724210100,DNS over HTTPS,16274,48392 +1724210100,__unknown,222550,175615 +1724210100,BITS,13146,484192 +1724210100,BitTorrent,153,0 +1724210100,Google APIs,2308,11859 +1724210100,Google,20300,35141 +1724210100,BitTorrent tracker,153,0 +1724210100,DNS,58384,52193 +1724210100,HTTP,461963,18797341 +1724210100,Launchpad,3200,2282 +1724210100,Microsoft Update,1287,1008 +1724210100,NetBIOS-dgm,250,0 +1724210100,NTP,13290,3540 +1724210100,STUN,2214,1998 +1724210100,Odnoklassniki,3699,2393 +1724210100,Advanced Packaging Tool,414758,18255445 +1724210100,HTTPS,196872,405364 +1724210100,SSL client,67524,93278 +1724210100,Ubuntu Update Manager,404957,18247225 +1724210100,Microsoft,9951,11269 +1724210100,Yandex,37800,36363 +1724210100,Ubuntu,7451,6856 +1724210100,Microsoft CryptoAPI,2163,1747 +1724210100,Microsoft WNS,693,7969 +1724210100,ICMP,3044,0 +1724210100,Edge Chromium,3749,10198 +1724210100,DNS over HTTPS,73615,226669 +1724210400,__unknown,1484,2060 +1724210400,HTTPS,88316,87330 +1724210400,SSL client,66171,66855 +1724210400,Google Play,66171,66855 +1724210400,__unknown,8068,1860 +1724210400,Google,2779,9379 +1724210400,Gmail,8634,10423 +1724210400,TeamViewer,1518,8847 +1724210400,HTTPS,86716,137131 +1724210400,Avast,1314,10744 +1724210400,SSL client,48591,91607 +1724210400,Microsoft,4417,11051 +1724210400,Mail.Ru,11625,11379 +1724210400,Yandex,2433,1543 +1724210400,uTorrent,14122,20453 +1724210400,Apple Maps,4186,7980 +1724210400,Office 365,1749,7788 +1724210400,__unknown,2796,6696 +1724210400,Dropbox,1845,1894 +1724210400,MSN,1486,7460 +1724210400,Gmail,12904,13108 +1724210400,HTTP,4401,10370 +1724210400,Steam,12728,29850 +1724210400,IMAPS,12904,13108 +1724210400,HTTPS,242488,715854 +1724210400,WhatsApp,3166,5682 +1724210400,Mozilla,2490,1960 +1724210400,Avast,1254,8444 +1724210400,SSL client,125944,429065 +1724210400,Microsoft,27412,39912 +1724210400,Mail.Ru,34897,30690 +1724210400,Yandex,13321,38075 +1724210400,Google Update,4401,10370 +1724210400,Office 365,17607,257672 +1724210400,ICMP,4214,0 +1724210400,HTTPS,19832,25531 +1724210400,HTTPS,31562,26536 +1724210400,__unknown,1875,912 +1724210400,HTTPS,10205,12541 +1724210400,__unknown,5157,3396 +1724210400,Google,45848,39303 +1724210400,Gmail,17541,39171 +1724210400,HTTPS,72065,86774 +1724210400,SSL client,63389,78474 +1724210400,ICMP,6302,5400 +1724210400,__unknown,392178,570024 +1724210400,BitTorrent,310,496 +1724210400,DHCPv6,978,0 +1724210400,Google APIs,36521,9490 +1724210400,Google Drive,6042,10125 +1724210400,Google,18195,32617 +1724210400,DNS,20014,0 +1724210400,Gmail,14336,15624 +1724210400,HTTP,560,463 +1724210400,NetBIOS-dgm,243,0 +1724210400,NTP,540,540 +1724210400,Odnoklassniki,3007,8221 +1724210400,HTTPS,167462,268881 +1724210400,SSL client,78101,76077 +1724210400,Microsoft CryptoAPI,560,463 +1724210400,ICMP,27329,0 +1724210400,DNS over HTTPS,52172,125273 +1724210400,__unknown,187654,2378821 +1724210400,DHCPv6,163,0 +1724210400,Google APIs,4760,16064 +1724210400,Google,19574,52335 +1724210400,DNS,46319,41058 +1724210400,HTTP,58228,76355 +1724210400,Launchpad,3200,2480 +1724210400,Microsoft Update,2580,2049 +1724210400,NTP,270,270 +1724210400,STUN,984,888 +1724210400,Advanced Packaging Tool,31715,29041 +1724210400,HTTPS,174181,342872 +1724210400,Mozilla,2758,1739 +1724210400,Avast,388,457 +1724210400,SSL client,71942,111626 +1724210400,Ubuntu Update Manager,23627,22177 +1724210400,Microsoft,4796,2152 +1724210400,Yandex,43721,40750 +1724210400,Ubuntu,6654,6228 +1724210400,Microsoft CryptoAPI,3190,2569 +1724210400,ICMP,2026,0 +1724210400,Edge Chromium,7858,24250 +1724210400,Grammarly,1881,7388 +1724210400,DNS over HTTPS,45439,137735 +1724210700,HTTPS,22893,33150 +1724210700,SSL client,22893,33150 +1724210700,Sharepoint Online,22893,33150 +1724210700,HTTPS,4197,6442 +1724210700,SSL client,4197,6442 +1724210700,Sharepoint Online,4197,6442 +1724210700,Windows Live,31685,14173 +1724210700,HTTPS,144525,227689 +1724210700,SSL client,108642,203399 +1724210700,Microsoft,11056,124895 +1724210700,Google Play,11432,2229 +1724210700,Telegram,54469,62102 +1724210700,HTTPS,5326,3634 +1724210700,HTTPS,57431,76044 +1724210700,Avast,1260,9959 +1724210700,SSL client,16923,31866 +1724210700,Microsoft,2226,3724 +1724210700,Mail.Ru,5476,5539 +1724210700,Yandex,1193,907 +1724210700,Office 365,1749,7788 +1724210700,Google Sign in,5019,3949 +1724210700,__unknown,18386,10141 +1724210700,Google,121935,128018 +1724210700,HTTP,600,382 +1724210700,Microsoft Update,600,382 +1724210700,HTTPS,357239,755709 +1724210700,Apple sites,1614,8021 +1724210700,SSL client,217170,476851 +1724210700,Microsoft,32038,275845 +1724210700,Mail.Ru,51256,51481 +1724210700,Yandex,2600,1949 +1724210700,Microsoft CryptoAPI,600,382 +1724210700,Microsoft Windows Live Services Authentication,7727,11537 +1724210700,DNS over HTTPS,4262,19955 +1724210700,ICMP,11726,0 +1724210700,HTTPS,105471,90494 +1724210700,SSL client,53929,64032 +1724210700,ICMP,13694,0 +1724210700,Telegram,53929,64032 +1724210700,Gmail,88041,54586 +1724210700,HTTPS,88041,54586 +1724210700,SSL client,88041,54586 +1724210700,__unknown,50682,117045 +1724210700,Google,20478,19859 +1724210700,HTTPS,20478,19859 +1724210700,SSL client,20478,19859 +1724210700,ICMP,4428,0 +1724210700,__unknown,421,322 +1724210700,HTTPS,10316,18897 +1724210700,ICMP,880,0 +1724210700,__unknown,415315,373871 +1724210700,BitTorrent,310,496 +1724210700,Google APIs,6975,8132 +1724210700,Google,8721,18806 +1724210700,DNS,13828,0 +1724210700,Gmail,15280,23524 +1724210700,HTTP,1233,1009 +1724210700,Microsoft Update,646,506 +1724210700,NTP,1440,1440 +1724210700,Odnoklassniki,5192,14917 +1724210700,HTTPS,66083,168755 +1724210700,Mozilla,2615,1712 +1724210700,SSL client,43282,79928 +1724210700,Microsoft CryptoAPI,1233,1009 +1724210700,ICMP,8314,4740 +1724210700,Grammarly,2311,7887 +1724210700,DNS over HTTPS,10503,26143 +1724210700,__unknown,238401,672041 +1724210700,BitTorrent,153,537 +1724210700,DHCPv6,978,0 +1724210700,Google APIs,1902,6434 +1724210700,Google,43875,146191 +1724210700,BitTorrent tracker,153,537 +1724210700,Chrome,565,484 +1724210700,DNS,51683,47872 +1724210700,HTTP,58633,81415 +1724210700,Internet Explorer,762,498 +1724210700,Launchpad,3200,2414 +1724210700,NTP,25230,5730 +1724210700,STUN,984,888 +1724210700,Advanced Packaging Tool,34426,31641 +1724210700,HTTPS,164899,499815 +1724210700,SSL client,51152,165683 +1724210700,Ubuntu Update Manager,27608,25975 +1724210700,Yandex,6098,17971 +1724210700,Ubuntu,4468,4174 +1724210700,Microsoft CryptoAPI,1876,1494 +1724210700,ICMP,1962,0 +1724210700,Edge Chromium,8038,22311 +1724210700,Grammarly,1922,7404 +1724210700,DNS over HTTPS,98315,323143 +1724211000,SSL,24907,30262 +1724211000,HTTPS,1817532,34911672 +1724211000,__unknown,1244,1838 +1724211000,HTTPS,21503,846544 +1724211000,__unknown,2287,5977 +1724211000,HTTPS,20047,18324 +1724211000,SSL client,20047,18324 +1724211000,Google Play,20047,18324 +1724211000,__unknown,45787,52810 +1724211000,MSN,3214,28480 +1724211000,HTTP,2040,2091 +1724211000,Microsoft Update,2040,2091 +1724211000,TeamViewer,1510,8838 +1724211000,HTTPS,101723,151993 +1724211000,Mozilla,2421,5379 +1724211000,Avast,1254,9778 +1724211000,SSL client,77498,120189 +1724211000,Microsoft,9002,26769 +1724211000,Mail.Ru,53299,26599 +1724211000,Yandex,5109,3743 +1724211000,Microsoft CryptoAPI,2040,2091 +1724211000,Office 365,1689,10603 +1724211000,DNS over HTTPS,2654,8508 +1724211000,__unknown,29502,42145 +1724211000,Bing,1867,9270 +1724211000,Dropbox,1842,1962 +1724211000,Google,514807,521200 +1724211000,Dell,1111,4304 +1724211000,HTTP,640,496 +1724211000,Launchpad,640,496 +1724211000,Skype,3041,7715 +1724211000,Advanced Packaging Tool,640,496 +1724211000,HTTPS,779451,1717959 +1724211000,WhatsApp,1858,5921 +1724211000,Apple sites,1868,11894 +1724211000,iCloud,4149,8888 +1724211000,Mozilla,2087,5219 +1724211000,SSL client,644806,795700 +1724211000,Microsoft,33796,71441 +1724211000,Mail.Ru,46998,45786 +1724211000,Yandex,23482,62961 +1724211000,Office 365,8845,40324 +1724211000,DNS over TLS,913,4736 +1724211000,DNS over HTTPS,2028,10049 +1724211000,ICMP,8742,0 +1724211000,__unknown,187,228 +1724211000,Google,10880,14443 +1724211000,HTTPS,19234,24022 +1724211000,SSL client,10880,14443 +1724211000,__unknown,18643,72169 +1724211000,HTTPS,23437,9256 +1724211000,ICMP,3102,0 +1724211000,__unknown,9350,8413 +1724211000,HTTPS,3361,5416 +1724211000,ICMP,164,0 +1724211000,__unknown,330242,277895 +1724211000,BITS,1590,14365 +1724211000,BitTorrent,310,496 +1724211000,DHCPv6,163,0 +1724211000,Google APIs,78489,16747 +1724211000,Google,36413,62325 +1724211000,DNS,23158,0 +1724211000,Gmail,40804,78780 +1724211000,HTTP,3590,16696 +1724211000,Microsoft Update,606,502 +1724211000,NetBIOS-dgm,250,0 +1724211000,NTP,1530,1530 +1724211000,HTTPS,243868,294231 +1724211000,SSL client,169323,169206 +1724211000,Microsoft CryptoAPI,1166,965 +1724211000,Google Play,11369,6405 +1724211000,Office 365,2424,15731 +1724211000,ICMP,14802,0 +1724211000,DNS over HTTPS,10350,30484 +1724211000,__unknown,324033,206828 +1724211000,DHCPv6,978,0 +1724211000,Google APIs,46030,35246 +1724211000,Google Drive,7518,10453 +1724211000,Google,19634,37633 +1724211000,DNS,40753,40570 +1724211000,HTTP,96925,2755138 +1724211000,Launchpad,3200,2480 +1724211000,Microsoft Update,1292,1007 +1724211000,NetBIOS-dgm,243,0 +1724211000,NTP,1620,1620 +1724211000,STUN,984,888 +1724211000,Advanced Packaging Tool,71389,2705300 +1724211000,HTTPS,189850,424970 +1724211000,iCloud,4185,8679 +1724211000,Avast,382,391 +1724211000,SSL client,86490,123442 +1724211000,Ubuntu Update Manager,58689,2560999 +1724211000,Microsoft,693,7999 +1724211000,Yandex,3688,15252 +1724211000,Linux Mint,1244,1674 +1724211000,Ubuntu,9956,141979 +1724211000,Microsoft CryptoAPI,5361,4474 +1724211000,Microsoft WNS,693,7999 +1724211000,ICMP,5952,0 +1724211000,Telegram,1965,7377 +1724211000,Edge Chromium,4216,10915 +1724211000,DNS over TLS,2158,9541 +1724211000,DNS over HTTPS,110095,329266 +1724211300,HTTPS,9227,13519 +1724211300,SSL client,9227,13519 +1724211300,DNS over HTTPS,9227,13519 +1724211300,__unknown,47764,47723 +1724211300,HTTPS,72240,63411 +1724211300,SSL client,53577,33819 +1724211300,Google Play,53577,33819 +1724211300,__unknown,90371,89179 +1724211300,Google APIs,3043,9784 +1724211300,Google,2953,9077 +1724211300,HTTPS,290675,222247 +1724211300,SSL client,31417,101292 +1724211300,Microsoft,4087,7391 +1724211300,Mail.Ru,6273,5781 +1724211300,Yandex,15061,69259 +1724211300,__unknown,40035,37065 +1724211300,Bing,5218,15814 +1724211300,Google APIs,234056592,5903770 +1724211300,Google,14549,71936 +1724211300,HTTP,467,1364 +1724211300,Oracle Database,386,180 +1724211300,TNS/Oracle,386,180 +1724211300,SQL Server,262,180 +1724211300,TDS,262,180 +1724211300,Steam,7215,15633 +1724211300,HTTPS,234352355,6789272 +1724211300,WhatsApp,3106,5682 +1724211300,Apple sites,18498,260855 +1724211300,Avast,1254,8412 +1724211300,SSL client,234241656,6497247 +1724211300,Microsoft,59259,100642 +1724211300,Mail.Ru,47057,45544 +1724211300,Yandex,11898,30118 +1724211300,Office 365,2776,14782 +1724211300,Microsoft Windows Live Services Authentication,16165,23242 +1724211300,Edge Chromium,467,1364 +1724211300,DNS over HTTPS,8599,36071 +1724211300,Discord,1175,6499 +1724211300,ICMP,7138,0 +1724211300,HTTPS,33657,49248 +1724211300,SSL client,33657,49248 +1724211300,Telegram,33657,49248 +1724211300,__unknown,2755,9190 +1724211300,Windows Live,3423,19587 +1724211300,HTTPS,3423,19587 +1724211300,SSL client,3423,19587 +1724211300,HTTPS,8070,10673 +1724211300,ICMP,1128,0 +1724211300,__unknown,144,78 +1724211300,Google,115793,73564 +1724211300,HTTPS,115793,73564 +1724211300,SSL client,115793,73564 +1724211300,ICMP,7206,0 +1724211300,__unknown,335060,334595 +1724211300,BitTorrent,310,496 +1724211300,DHCPv6,163,0 +1724211300,Google APIs,8162,29127 +1724211300,Google Drive,9611,11394 +1724211300,Google,33249,73440 +1724211300,DNS,16934,0 +1724211300,Gmail,8568,15403 +1724211300,HTTP,1963,1633 +1724211300,Microsoft Update,1963,1633 +1724211300,NTP,25770,6270 +1724211300,Odnoklassniki,3007,8339 +1724211300,HTTPS,85981,223405 +1724211300,Mozilla,1876,4611 +1724211300,SSL client,72957,151459 +1724211300,Microsoft CryptoAPI,1963,1633 +1724211300,ICMP,6488,3420 +1724211300,Google Sign in,6236,4197 +1724211300,DNS over HTTPS,15778,40933 +1724211300,__unknown,260401,267859 +1724211300,BitTorrent,215,198 +1724211300,Google APIs,6162,15094 +1724211300,Google,26861,37987 +1724211300,BitTorrent tracker,153,198 +1724211300,DNS,49913,48262 +1724211300,HTTP,602521,26574782 +1724211300,Launchpad,3200,2480 +1724211300,Microsoft Update,641,501 +1724211300,NTP,12750,3000 +1724211300,STUN,984,888 +1724211300,Odnoklassniki,3730,7514 +1724211300,Steam,2669,16091 +1724211300,Advanced Packaging Tool,172469,7092027 +1724211300,HTTPS,152949,653919 +1724211300,SSL client,52397,124484 +1724211300,Ubuntu Update Manager,165699,7086259 +1724211300,Yandex,5466,40810 +1724211300,Ubuntu,4845,4663 +1724211300,Microsoft CryptoAPI,641,501 +1724211300,Office 365,407958,19430074 +1724211300,ICMP,1234,0 +1724211300,Synology DSM,2944,15017 +1724211300,Google Sign in,6217,4355 +1724211300,Edge Chromium,5330,14292 +1724211300,DNS over HTTPS,66571,216341 +1724211600,HTTPS,66516,141768 +1724211600,DNS over HTTPS,127312,293378 +1724211600,HTTPS,53689,63952 +1724211600,SSL client,53689,63952 +1724211600,Telegram,53689,63952 +1724211600,HTTPS,54469,62036 +1724211600,SSL client,54469,62036 +1724211600,Telegram,54469,62036 +1724211600,HTTPS,19801,23148 +1724211600,__unknown,20632,20525 +1724211600,Bing,3450,6484 +1724211600,MSN,1426,7461 +1724211600,Skype,2846,7960 +1724211600,TeamViewer,1450,8838 +1724211600,HTTPS,69267,222777 +1724211600,Mozilla,2141,5339 +1724211600,Avast,1320,10337 +1724211600,SSL client,32439,180359 +1724211600,Microsoft,6950,18365 +1724211600,Mail.Ru,5384,5539 +1724211600,Yandex,2100,6386 +1724211600,Apple Maps,2714,6465 +1724211600,Sharepoint Online,3178,94285 +1724211600,GISMETEO,2194,9365 +1724211600,DNS over HTTPS,9158,21286 +1724211600,__unknown,4702,7004 +1724211600,HTTP,526,443 +1724211600,iTunes,2040,12195 +1724211600,Skype,8651,92912 +1724211600,Odnoklassniki,1840,3391 +1724211600,HTTPS,288022,771362 +1724211600,SSL client,167142,351312 +1724211600,Amazon Web Services,3217,21490 +1724211600,CloudFront,2265,1747 +1724211600,Microsoft,40502,90742 +1724211600,Mail.Ru,75539,63774 +1724211600,Yandex,11243,38497 +1724211600,Microsoft CryptoAPI,526,443 +1724211600,Microsoft Windows Live Services Authentication,7727,11597 +1724211600,BlueStacks,1599,5046 +1724211600,Grammarly,12519,9921 +1724211600,DNS over HTTPS,136896,319325 +1724211600,HTTPS,23959,35318 +1724211600,SSL client,23959,35318 +1724211600,DNS over HTTPS,23959,35318 +1724211600,HTTPS,32294,27558 +1724211600,__unknown,1967,904 +1724211600,__unknown,517,4062 +1724211600,ICMP,1026,0 +1724211600,__unknown,316179,344381 +1724211600,BitTorrent,310,496 +1724211600,Google APIs,88425,44512 +1724211600,Google,16128,31950 +1724211600,DNS,21369,0 +1724211600,Gmail,5596,8899 +1724211600,HTTP,646,500 +1724211600,Microsoft Update,646,500 +1724211600,NetBIOS-dgm,250,0 +1724211600,NetBIOS-ns,92,0 +1724211600,NTP,450,450 +1724211600,STUN,1860,3300 +1724211600,HTTPS,136760,167602 +1724211600,SSL client,121377,99144 +1724211600,Microsoft CryptoAPI,646,500 +1724211600,Google Play,8986,5896 +1724211600,ICMP,6444,2220 +1724211600,Grammarly,2242,7887 +1724211600,DNS over HTTPS,57349,141581 +1724211600,__unknown,146075,196864 +1724211600,DHCPv6,1141,0 +1724211600,Google APIs,7344,23853 +1724211600,Google,193057,87499 +1724211600,DNS,70226,53674 +1724211600,Firefox,822,1129 +1724211600,HTTP,105100,1071576 +1724211600,Launchpad,3200,2480 +1724211600,Microsoft Update,47728,982528 +1724211600,NTP,810,810 +1724211600,SSL,797,7092 +1724211600,STUN,984,888 +1724211600,Advanced Packaging Tool,33366,30642 +1724211600,Windows Update,47082,982022 +1724211600,HTTPS,282151,414580 +1724211600,Avast,382,391 +1724211600,SSL client,207632,133976 +1724211600,Ubuntu Update Manager,23565,22191 +1724211600,Microsoft,633,7968 +1724211600,Yandex,7456,27750 +1724211600,Ubuntu,8379,7807 +1724211600,Microsoft CryptoAPI,3243,4344 +1724211600,Microsoft WNS,633,7968 +1724211600,Office 365,940,2318 +1724211600,ICMP,1632,0 +1724211600,Edge Chromium,8852,26276 +1724211600,DNS over HTTPS,42962,135801 +1724211900,__unknown,61860,67704 +1724211900,Windows Live,9326,10279 +1724211900,HTTPS,9326,10279 +1724211900,SSL client,9326,10279 +1724211900,HTTPS,3165,7561 +1724211900,SSL client,3165,7561 +1724211900,Microsoft,3165,7561 +1724211900,HTTPS,5522,4875 +1724211900,__unknown,442049,491229 +1724211900,Dropbox,5827,222582 +1724211900,HTTP,467,683 +1724211900,HTTPS,64428,299467 +1724211900,Avast,1122,8702 +1724211900,SSL client,22536,248280 +1724211900,Microsoft,2072,3665 +1724211900,Mail.Ru,5352,5539 +1724211900,Yandex,1133,907 +1724211900,Microsoft CryptoAPI,467,683 +1724211900,GISMETEO,2005,2872 +1724211900,Google Sign in,5025,4013 +1724211900,__unknown,18793,7929 +1724211900,Dropbox,1270445,71870 +1724211900,HTTP,505,2081 +1724211900,Skype,3336,7921 +1724211900,Odnoklassniki,9200,16895 +1724211900,HTTPS,1511511,663132 +1724211900,WhatsApp,1798,5921 +1724211900,Avast,1122,8545 +1724211900,SSL client,1392370,266786 +1724211900,Microsoft,19918,30443 +1724211900,VeriSign,505,2081 +1724211900,Mail.Ru,50967,50397 +1724211900,Yandex,24911,53816 +1724211900,Microsoft CryptoAPI,505,2081 +1724211900,Google Play,1303,628 +1724211900,Office 365,2665,14734 +1724211900,Microsoft Windows Live Services Authentication,8503,11537 +1724211900,HTTPS,20955,30362 +1724211900,SSL client,20955,30362 +1724211900,DNS over HTTPS,20955,30362 +1724211900,HTTPS,53623,69605 +1724211900,SSL client,53623,69605 +1724211900,Telegram,53623,69605 +1724211900,ICMP,2580,0 +1724211900,Google,14053,19224 +1724211900,HTTPS,14053,19224 +1724211900,SSL client,14053,19224 +1724211900,__unknown,4816,22946 +1724211900,ICMP,7520,0 +1724211900,__unknown,144,78 +1724211900,Google,10108,15878 +1724211900,HTTPS,86895,107120 +1724211900,SSL client,38486,33618 +1724211900,Google Play,28378,17740 +1724211900,ICMP,376,0 +1724211900,__unknown,294769,518661 +1724211900,BitTorrent,310,496 +1724211900,Google APIs,40622,20529 +1724211900,Google,29458,63726 +1724211900,DNS,15036,0 +1724211900,Gmail,6016,6597 +1724211900,HTTP,642,503 +1724211900,Microsoft Update,642,503 +1724211900,NetBIOS-dgm,243,0 +1724211900,NTP,1530,1530 +1724211900,Odnoklassniki,2947,8222 +1724211900,HTTPS,153937,319215 +1724211900,iCloud,7129,113109 +1724211900,SSL client,125084,243795 +1724211900,Yandex,2010,6775 +1724211900,Microsoft CryptoAPI,642,503 +1724211900,Google Play,30671,20489 +1724211900,ICMP,3664,360 +1724211900,Google Sign in,6231,4348 +1724211900,DNS over HTTPS,31646,78829 +1724211900,__unknown,193009,191880 +1724211900,BITS,2948,12166 +1724211900,BitTorrent,153,537 +1724211900,DHCPv6,978,0 +1724211900,Google APIs,2351,6745 +1724211900,Google,22654,44173 +1724211900,BitTorrent tracker,153,537 +1724211900,DNS,48939,47906 +1724211900,HTTP,60685,100878 +1724211900,Launchpad,3200,2480 +1724211900,Microsoft Update,642,508 +1724211900,NTP,540,540 +1724211900,STUN,984,888 +1724211900,VKontakte,2545,5592 +1724211900,Odnoklassniki,1840,3391 +1724211900,Advanced Packaging Tool,34958,32184 +1724211900,HTTPS,107627,344860 +1724211900,SSL client,48622,97554 +1724211900,Ubuntu Update Manager,26427,24871 +1724211900,Microsoft,3521,20134 +1724211900,Yandex,10316,26600 +1724211900,Ubuntu,7534,7192 +1724211900,Microsoft CryptoAPI,1816,1514 +1724211900,Microsoft WNS,573,7968 +1724211900,ICMP,1696,0 +1724211900,Google Sign in,6216,4149 +1724211900,Edge Chromium,8265,24372 +1724211900,DNS over TLS,2158,9541 +1724211900,DNS over HTTPS,55566,172085 +1724212200,__unknown,389960,448293 +1724212200,HTTPS,131034,579705 +1724212200,SSL client,131034,579705 +1724212200,Mail.Ru,131034,579705 +1724212200,IMAPS,15103,519244 +1724212200,__unknown,1608,0 +1724212200,HTTPS,3109,3954 +1724212200,__unknown,1608,0 +1724212200,HTTPS,74063,48368 +1724212200,SSL client,71565,46542 +1724212200,Google Play,71565,46542 +1724212200,__unknown,1320,10736 +1724212200,Dropbox,41160,286348 +1724212200,Google,8274,4897 +1724212200,HTTP,2662,3814 +1724212200,Microsoft Update,535,1102 +1724212200,Windows Update,535,1102 +1724212200,HTTPS,135480,398376 +1724212200,Mozilla,2203,4639 +1724212200,SSL client,80648,337748 +1724212200,Microsoft,5871,13403 +1724212200,VeriSign,1075,1826 +1724212200,Mail.Ru,5416,5539 +1724212200,Yandex,3626,2469 +1724212200,Microsoft CryptoAPI,2127,2712 +1724212200,uTorrent,14098,20453 +1724212200,__unknown,4798,2742 +1724212200,Google,7599,38016 +1724212200,HTTP,10936,15246 +1724212200,Microsoft Update,20487,4832 +1724212200,Skype,6380,15604 +1724212200,Odnoklassniki,9200,16955 +1724212200,HTTPS,246024,1035568 +1724212200,WhatsApp,2986,5562 +1724212200,Apple sites,3874,23571 +1724212200,Avast,3985,18093 +1724212200,SSL client,200331,890822 +1724212200,Amazon Web Services,3265,21662 +1724212200,Microsoft,51195,85037 +1724212200,Mail.Ru,35059,26010 +1724212200,Yandex,39641,574364 +1724212200,Microsoft CryptoAPI,565,1176 +1724212200,Exchange Online,1223,8065 +1724212200,Office 365,10081,31452 +1724212200,Microsoft Windows Live Services Authentication,14180,27843 +1724212200,Grammarly,4628,13944 +1724212200,DNS over HTTPS,6333,19854 +1724212200,Google,52544,38462 +1724212200,Gmail,35699,25164 +1724212200,HTTPS,88243,63626 +1724212200,SSL client,88243,63626 +1724212200,ICMP,3478,0 +1724212200,__unknown,1472,820 +1724212200,Google,9974,13740 +1724212200,HTTPS,13475,30947 +1724212200,Apple sites,3501,17207 +1724212200,SSL client,13475,30947 +1724212200,ICMP,1204,0 +1724212200,__unknown,240,4838 +1724212200,HTTPS,6215,8323 +1724212200,ICMP,2648,1500 +1724212200,__unknown,277581,330830 +1724212200,BitTorrent,310,496 +1724212200,DHCPv6,163,0 +1724212200,Google APIs,27708,8470 +1724212200,Google Drive,5970,9746 +1724212200,Google,29962,60472 +1724212200,DNS,23594,1464 +1724212200,Gmail,8630,15500 +1724212200,HTTP,586,563 +1724212200,NTP,13380,3540 +1724212200,STUN,1860,3300 +1724212200,Odnoklassniki,3007,8163 +1724212200,HTTPS,128652,175923 +1724212200,SSL client,95265,130665 +1724212200,Microsoft CryptoAPI,586,563 +1724212200,Google Play,15507,15380 +1724212200,ICMP,3495,0 +1724212200,Grammarly,2293,7947 +1724212200,DNS over HTTPS,32560,80068 +1724212200,__unknown,219088,228481 +1724212200,Google APIs,2351,6687 +1724212200,Google,30264,66974 +1724212200,Chrome,1208,1034 +1724212200,DNS,47422,43139 +1724212200,HTTP,56650,78326 +1724212200,Launchpad,3200,2480 +1724212200,Microsoft Update,977,829 +1724212200,NetBIOS-dgm,250,0 +1724212200,NTP,13560,3810 +1724212200,SSL,855,7032 +1724212200,STUN,984,888 +1724212200,VKontakte,7214,15918 +1724212200,Advanced Packaging Tool,34235,31459 +1724212200,HTTPS,145654,389933 +1724212200,Apple sites,853,2484 +1724212200,Mozilla,2460,5186 +1724212200,Avast,764,782 +1724212200,SSL client,64119,163431 +1724212200,Ubuntu Update Manager,25069,23583 +1724212200,Microsoft,573,7965 +1724212200,Mail.Ru,5416,5479 +1724212200,Yandex,9363,33981 +1724212200,Ubuntu,7308,6775 +1724212200,Microsoft CryptoAPI,2418,2032 +1724212200,Microsoft WNS,573,7965 +1724212200,Google Hangouts,855,7032 +1724212200,ICMP,2863,0 +1724212200,Synology DSM,2167,8180 +1724212200,Edge Chromium,5270,13644 +1724212200,DNS over TLS,2158,9541 +1724212200,DNS over HTTPS,24233,82792 +1724212500,__unknown,62420,69861 +1724212500,HTTPS,135651,709441 +1724212500,SSL client,135651,709441 +1724212500,Yandex,135651,709441 +1724212500,HTTPS,48015,96060 +1724212500,SSL client,48015,96060 +1724212500,Yandex,48015,96060 +1724212500,HTTPS,25502,27013 +1724212500,SSL client,25502,27013 +1724212500,Yandex,25502,27013 +1724212500,Google,418137,222340 +1724212500,HTTPS,418137,222340 +1724212500,SSL client,418137,222340 +1724212500,DNS over HTTPS,194855,437760 +1724212500,HTTPS,10247,30226 +1724212500,__unknown,126857,3051674 +1724212500,HTTPS,108547,32292 +1724212500,SSL client,108547,32292 +1724212500,Mail.Ru,97626,25481 +1724212500,Google Play,10921,6811 +1724212500,HTTPS,47333,25639 +1724212500,SSL client,41935,16442 +1724212500,Google Play,41935,16442 +1724212500,ICMP,21648,0 +1724212500,__unknown,9811,9630 +1724212500,Google APIs,3582,12620 +1724212500,HTTP,651,634 +1724212500,Microsoft Update,651,634 +1724212500,HTTPS,62961,92204 +1724212500,Avast,1254,8412 +1724212500,SSL client,30972,65562 +1724212500,Microsoft,12920,22138 +1724212500,Mail.Ru,5416,5479 +1724212500,Yandex,5183,8085 +1724212500,Microsoft CryptoAPI,651,634 +1724212500,Office 365,2617,8828 +1724212500,__unknown,443917,249359 +1724212500,Apple Update,1787,4723 +1724212500,Bing,3558,6426 +1724212500,Dropbox,2302,4758 +1724212500,Google APIs,3057,2190 +1724212500,Google,106243,129123 +1724212500,HTTP,5246,5615 +1724212500,Skype,1731,82575 +1724212500,SSL,3039,9190 +1724212500,Odnoklassniki,9200,16955 +1724212500,Advanced Packaging Tool,1741,1723 +1724212500,HTTPS,537812,1022399 +1724212500,Mozilla,2201,5399 +1724212500,Avast,1733,6385 +1724212500,SSL client,235922,404945 +1724212500,Amazon Web Services,3265,21542 +1724212500,Ubuntu Update Manager,1214,1193 +1724212500,Microsoft,39034,54899 +1724212500,Mail.Ru,57267,44635 +1724212500,Yandex,2519,5886 +1724212500,GitHub,1652,6063 +1724212500,Ubuntu,527,530 +1724212500,Google Update,3057,2190 +1724212500,Office 365,3430,15576 +1724212500,DNS over HTTPS,3821,15828 +1724212500,HTTPS,14638,19153 +1724212500,SSL client,14638,19153 +1724212500,DNS over HTTPS,14638,19153 +1724212500,SSL,1512,1392 +1724212500,SSL client,1512,1392 +1724212500,Google Hangouts,1512,1392 +1724212500,__unknown,10031,8730 +1724212500,HTTPS,36180,14314 +1724212500,__unknown,911,568 +1724212500,ICMP,1032,0 +1724212500,__unknown,1091,500 +1724212500,HTTPS,6423,3943 +1724212500,__unknown,6978,396 +1724212500,Google,4414,12078 +1724212500,HTTPS,25682,20860 +1724212500,SSL client,4414,12078 +1724212500,ICMP,10932,7920 +1724212500,DNS over HTTPS,3574,9967 +1724212500,__unknown,1014057,765427 +1724212500,BitTorrent,310,496 +1724212500,Google APIs,2205,6951 +1724212500,Google,49066,125571 +1724212500,Chrome,1275,869 +1724212500,DNS,18187,0 +1724212500,Gmail,8688,15385 +1724212500,HTTP,1275,869 +1724212500,NetBIOS-dgm,243,0 +1724212500,NTP,13290,3540 +1724212500,Odnoklassniki,3007,8025 +1724212500,HTTPS,106871,289813 +1724212500,SSL client,65961,165798 +1724212500,Google Play,2995,9866 +1724212500,ICMP,5965,1320 +1724212500,DNS over HTTPS,25538,59926 +1724212500,__unknown,291108,327420 +1724212500,BitTorrent,153,198 +1724212500,DHCPv6,1141,0 +1724212500,Google APIs,2100,6374 +1724212500,Google,38846,75601 +1724212500,BitTorrent tracker,153,198 +1724212500,DNS,49531,45630 +1724212500,HTTP,62718,82071 +1724212500,Launchpad,3200,2480 +1724212500,Microsoft Update,4148,3499 +1724212500,NTP,270,270 +1724212500,STUN,984,888 +1724212500,VKontakte,5047,11308 +1724212500,Advanced Packaging Tool,33704,30971 +1724212500,HTTPS,132029,388396 +1724212500,Avast,500,3198 +1724212500,SSL client,60537,136246 +1724212500,Ubuntu Update Manager,25173,23667 +1724212500,Microsoft,693,7970 +1724212500,VeriSign,1132,4282 +1724212500,Yandex,6677,18551 +1724212500,Ubuntu,7881,7578 +1724212500,Microsoft CryptoAPI,10412,12066 +1724212500,Microsoft WNS,693,7970 +1724212500,uTorrent,2706,1922 +1724212500,ICMP,2841,0 +1724212500,Edge Chromium,587,2063 +1724212500,DNS over TLS,4514,19081 +1724212500,DNS over HTTPS,70904,227670 +1724212800,HTTPS,183525,681079 +1724212800,SSL client,183525,681079 +1724212800,Yandex,183525,681079 +1724212800,HTTPS,50583,103415 +1724212800,SSL client,50583,103415 +1724212800,Yandex,50583,103415 +1724212800,HTTPS,42145,49865 +1724212800,SSL client,42145,49865 +1724212800,Yandex,42145,49865 +1724212800,HTTPS,61583,142908 +1724212800,SSL client,61583,142908 +1724212800,Yandex,61583,142908 +1724212800,ICMP,22714,0 +1724212800,Google,160562,181564 +1724212800,HTTPS,160562,181564 +1724212800,SSL client,160562,181564 +1724212800,Google,53438,66918 +1724212800,HTTPS,53438,66918 +1724212800,SSL client,53438,66918 +1724212800,HTTPS,249539,137931 +1724212800,SSL client,45687,69496 +1724212800,Telegram,45687,69496 +1724212800,__unknown,1608,0 +1724212800,HTTPS,13206,224602 +1724212800,SSL client,13206,224602 +1724212800,Microsoft,13206,224602 +1724212800,Skype,4036,8741 +1724212800,HTTPS,4036,8741 +1724212800,SSL client,4036,8741 +1724212800,HTTPS,99103,55231 +1724212800,SSL client,99103,55231 +1724212800,Mail.Ru,74906,29758 +1724212800,Yandex,3159,7046 +1724212800,Google Play,21038,18427 +1724212800,__unknown,67433,50030 +1724212800,Gmail,9874,8033 +1724212800,HTTPS,65489,66568 +1724212800,SSL client,28823,33554 +1724212800,Microsoft,8411,18440 +1724212800,Mail.Ru,10538,7081 +1724212800,__unknown,69099,62189 +1724212800,Bing,3395,6424 +1724212800,Google APIs,2778,7323 +1724212800,Google,4665,16846 +1724212800,Dell,1111,4306 +1724212800,HTTP,43332,16428 +1724212800,TwitchTV,6251,7063 +1724212800,Odnoklassniki,5520,10173 +1724212800,HTTPS,436201,993008 +1724212800,WhatsApp,1858,5921 +1724212800,Apple sites,1796,4666 +1724212800,Mozilla,2201,5339 +1724212800,SSL client,315707,488164 +1724212800,Microsoft,189641,99818 +1724212800,Mail.Ru,74892,62632 +1724212800,Yandex,25888,65236 +1724212800,Exchange Online,1231,6471 +1724212800,Office 365,11887,97288 +1724212800,Microsoft Windows Live Services Authentication,21608,57432 +1724212800,Google Inbox,3887,8494 +1724212800,Microsoft Teams,2288,45081 +1724212800,DNS over HTTPS,12033,43392 +1724212800,HTTPS,31728,26740 +1724212800,__unknown,2034,18030 +1724212800,Chrome,809,3010 +1724212800,Gmail,12144,10524 +1724212800,HTTP,809,3010 +1724212800,HTTPS,16753,15940 +1724212800,SSL client,12144,10524 +1724212800,__unknown,543335,3931118 +1724212800,BitTorrent,310,496 +1724212800,Google APIs,2327,7032 +1724212800,Google Drive,5443,12134 +1724212800,Google,107122,158647 +1724212800,DNS,16787,0 +1724212800,Gmail,5657,8274 +1724212800,HTTP,1153,2644 +1724212800,NTP,13110,3360 +1724212800,Odnoklassniki,3007,8205 +1724212800,HTTPS,198275,396843 +1724212800,SSL client,127751,202863 +1724212800,VeriSign,566,2141 +1724212800,Microsoft CryptoAPI,1153,2644 +1724212800,Google Play,4195,8571 +1724212800,ICMP,4860,60 +1724212800,ICMP for IPv6,70,0 +1724212800,DNS over HTTPS,17142,49641 +1724212800,__unknown,279709,415679 +1724212800,DHCPv6,978,0 +1724212800,Google APIs,55133,37198 +1724212800,Google Drive,7408,10071 +1724212800,Google,19400,30247 +1724212800,QQ,414,1583 +1724212800,DNS,53619,48402 +1724212800,HTTP,60146,88328 +1724212800,Launchpad,3200,2282 +1724212800,Microsoft Update,1623,1334 +1724212800,NTP,1440,1440 +1724212800,SSL,797,7093 +1724212800,STUN,984,888 +1724212800,VKontakte,4927,11106 +1724212800,Odnoklassniki,2064,6833 +1724212800,Advanced Packaging Tool,35425,32363 +1724212800,HTTPS,180432,400669 +1724212800,Avast,382,391 +1724212800,SSL client,101345,149547 +1724212800,Ubuntu Update Manager,26259,24689 +1724212800,Microsoft,693,7965 +1724212800,Yandex,9984,44575 +1724212800,Ubuntu,6882,6306 +1724212800,Microsoft CryptoAPI,3333,2873 +1724212800,Microsoft WNS,693,7965 +1724212800,uTorrent,649,476 +1724212800,Google Hangouts,797,7093 +1724212800,ICMP,1820,0 +1724212800,Synology DSM,2106,8533 +1724212800,Telegram,1905,7361 +1724212800,Edge Chromium,5163,16824 +1724212800,DNS over HTTPS,95348,288731 +1724213100,DNS over HTTPS,101637,193133 +1724213100,HTTPS,56342,103256 +1724213100,HTTPS,369383,652715 +1724213100,HTTPS,45819,63952 +1724213100,SSL client,45819,63952 +1724213100,Telegram,45819,63952 +1724213100,__unknown,4274,8616 +1724213100,Google APIs,2460,6488 +1724213100,HTTPS,46548,56096 +1724213100,SSL client,39451,49223 +1724213100,Google Play,36991,42735 +1724213100,__unknown,40675,41975 +1724213100,Google,109408,2658205 +1724213100,HTTPS,174843,2769095 +1724213100,Avast,1254,8252 +1724213100,SSL client,134854,2718683 +1724213100,Microsoft,2042,3666 +1724213100,Mail.Ru,10418,7021 +1724213100,Yandex,8660,5361 +1724213100,Microsoft Teams,3072,36178 +1724213100,__unknown,1790227,1575234 +1724213100,Google,254698,278173 +1724213100,MSN,2895,28466 +1724213100,DNS,942,2080 +1724213100,HTTP,3150,155935 +1724213100,Skype,4367,88050 +1724213100,SSL,2326,2410 +1724213100,Steam,12028,22941 +1724213100,Advanced Packaging Tool,3150,155935 +1724213100,HTTPS,1581416,5501436 +1724213100,WhatsApp,3043,5682 +1724213100,Mozilla,8050,24675 +1724213100,Avast,3198,13284 +1724213100,SSL client,505566,1056808 +1724213100,Microsoft,38016,66572 +1724213100,Mail.Ru,94543,105222 +1724213100,Yandex,22198,39621 +1724213100,Rambler,15524,8112 +1724213100,Exchange Online,2489,12934 +1724213100,Office 365,23325,321239 +1724213100,Microsoft Windows Live Services Authentication,14206,27327 +1724213100,AnyDesk,2326,2410 +1724213100,Xiaomi,10029,20192 +1724213100,DNS over HTTPS,4350,16009 +1724213100,__unknown,390,240 +1724213100,__unknown,3010404,775891 +1724213100,HTTPS,33575,40435 +1724213100,HTTPS,88630,30156 +1724213100,HTTPS,115088,51981 +1724213100,SSL client,115088,51981 +1724213100,Google Play,115088,51981 +1724213100,__unknown,2681,1692 +1724213100,HTTPS,13255,4114 +1724213100,Avast,13255,4114 +1724213100,SSL client,13255,4114 +1724213100,__unknown,1138,14662 +1724213100,HTTPS,27498,71056 +1724213100,Apple sites,1470,5455 +1724213100,SSL client,1470,5455 +1724213100,ICMP,17630,7740 +1724213100,__unknown,226039,220634 +1724213100,BitTorrent,310,496 +1724213100,DHCPv6,163,0 +1724213100,Google APIs,11113,35736 +1724213100,Google,4616,12812 +1724213100,DNS,18939,0 +1724213100,Gmail,6529,8088 +1724213100,NetBIOS-dgm,250,0 +1724213100,NTP,12660,2910 +1724213100,HTTPS,79990,233282 +1724213100,SSL client,26815,69698 +1724213100,ICMP,4238,0 +1724213100,ICMP for IPv6,70,0 +1724213100,Grammarly,2237,7669 +1724213100,DNS over HTTPS,21825,52520 +1724213100,__unknown,223942,448344 +1724213100,BitTorrent,153,537 +1724213100,Google Drive,16643,7128 +1724213100,Google,26057,77689 +1724213100,BitTorrent tracker,153,537 +1724213100,DNS,50352,49003 +1724213100,Gmail,16475,11264 +1724213100,HTTP,57467,76516 +1724213100,Launchpad,4320,2554 +1724213100,Microsoft Update,1254,1014 +1724213100,NetBIOS-dgm,243,0 +1724213100,NTP,4590,4590 +1724213100,Safari,329,1060 +1724213100,STUN,984,888 +1724213100,VKontakte,2546,5570 +1724213100,Advanced Packaging Tool,30711,25586 +1724213100,HTTPS,181221,452454 +1724213100,Avast,382,391 +1724213100,SSL client,74878,136526 +1724213100,Ubuntu Update Manager,19721,18571 +1724213100,Yandex,13357,40969 +1724213100,Ubuntu,7945,5844 +1724213100,Microsoft CryptoAPI,3787,3273 +1724213100,ICMP,2090,0 +1724213100,Edge Chromium,9439,28333 +1724213100,DNS over HTTPS,61363,191282 +1724213400,HTTPS,155124,192378 +1724213400,HTTPS,4466,3977 +1724213400,HTTPS,17820,6940 +1724213400,SSL client,17820,6940 +1724213400,Google Play,17820,6940 +1724213400,HTTPS,15340,8268 +1724213400,__unknown,704996,753398 +1724213400,Google,19882,31320 +1724213400,MSN,1497,7352 +1724213400,Gmail,6131,3636 +1724213400,Microsoft Update,2070,5988 +1724213400,HTTPS,260768,1276699 +1724213400,Mozilla,10698,37417 +1724213400,SSL client,90695,174372 +1724213400,Microsoft,40113,67041 +1724213400,Mail.Ru,5354,1613 +1724213400,OneDrive,2744,10278 +1724213400,GISMETEO,2206,9727 +1724213400,__unknown,15716,98364 +1724213400,Google,110728,129172 +1724213400,MSN,3539,10456 +1724213400,Gmail,7258,16328 +1724213400,HTTP,1033,1065 +1724213400,Microsoft Update,19253,4077 +1724213400,Odnoklassniki,5520,10173 +1724213400,IMAPS,7258,16328 +1724213400,HTTPS,523310,910059 +1724213400,Mozilla,5525,15139 +1724213400,Avast,471,602 +1724213400,SSL client,392468,640522 +1724213400,Amazon Web Services,3385,21564 +1724213400,Microsoft,34366,55046 +1724213400,Mail.Ru,92451,85012 +1724213400,Yandex,61503,102145 +1724213400,Microsoft CryptoAPI,562,463 +1724213400,Office 365,29873,163990 +1724213400,Microsoft Windows Live Services Authentication,6436,17328 +1724213400,Grammarly,12631,10092 +1724213400,DNS over HTTPS,30438,88541 +1724213400,__unknown,1844,720 +1724213400,__unknown,716,480 +1724213400,ICMP,516,0 +1724213400,__unknown,21038,48440 +1724213400,Google,24822,29721 +1724213400,HTTPS,37167,41473 +1724213400,SSL client,24822,29721 +1724213400,ICMP,470,0 +1724213400,__unknown,406222,491836 +1724213400,BitTorrent,310,496 +1724213400,DHCPv6,978,0 +1724213400,Google Drive,25667,18453 +1724213400,Google,22797,62297 +1724213400,DNS,19152,0 +1724213400,Gmail,6467,10122 +1724213400,HTTP,1455,1293 +1724213400,NTP,37710,8460 +1724213400,Odnoklassniki,3007,8146 +1724213400,HTTPS,101597,378169 +1724213400,SSL client,61032,114437 +1724213400,Microsoft,862,7532 +1724213400,Microsoft CryptoAPI,1455,1293 +1724213400,ICMP,36346,60 +1724213400,Grammarly,2232,7887 +1724213400,DNS over HTTPS,17694,54790 +1724213400,__unknown,230573,425581 +1724213400,DHCPv6,163,0 +1724213400,Google Drive,6426,13137 +1724213400,Google,30567,49993 +1724213400,DNS,49232,45948 +1724213400,HTTP,55641,78020 +1724213400,Launchpad,3200,2480 +1724213400,Microsoft Update,4017,3364 +1724213400,NTP,1980,1980 +1724213400,SSL,855,7032 +1724213400,VKontakte,2443,5589 +1724213400,Advanced Packaging Tool,28960,26526 +1724213400,HTTPS,169336,416548 +1724213400,SSL client,55777,129192 +1724213400,Ubuntu Update Manager,20920,19698 +1724213400,Microsoft,759,7965 +1724213400,Yandex,15917,55950 +1724213400,Ubuntu,6115,5727 +1724213400,Microsoft CryptoAPI,8519,9324 +1724213400,Microsoft WNS,759,7965 +1724213400,Google Hangouts,855,7032 +1724213400,ICMP,2186,0 +1724213400,ICMP for IPv6,70,0 +1724213400,Edge Chromium,4109,14056 +1724213400,Grammarly,1922,7389 +1724213400,DNS over HTTPS,84122,248906 +1724213700,DNS over HTTPS,6051,18115 +1724213700,Windows Live,62555,12908 +1724213700,HTTPS,116410,76860 +1724213700,SSL client,116410,76860 +1724213700,Telegram,53855,63952 +1724213700,Windows Live,16131,7254 +1724213700,HTTPS,16131,7254 +1724213700,SSL client,16131,7254 +1724213700,HTTPS,28907,27551 +1724213700,__unknown,21934,16552 +1724213700,HTTPS,3595,2161 +1724213700,__unknown,2975,7192 +1724213700,Skype,2764,9005 +1724213700,HTTPS,10395,133978 +1724213700,SSL client,10395,133978 +1724213700,Microsoft,7631,124973 +1724213700,HTTP,4408,205506 +1724213700,Advanced Packaging Tool,4408,205506 +1724213700,HTTPS,23443,40225 +1724213700,CoAP,13720,10080 +1724213700,__unknown,16026,11310 +1724213700,Google,143730,25605 +1724213700,TeamViewer,1518,8876 +1724213700,HTTPS,267067,237359 +1724213700,Mozilla,2414,1798 +1724213700,SSL client,233556,198890 +1724213700,Microsoft,26897,55887 +1724213700,Mail.Ru,43728,44009 +1724213700,Yandex,13069,53160 +1724213700,GISMETEO,2200,9555 +1724213700,__unknown,28037,39725 +1724213700,HTTP,40170,24468 +1724213700,Odnoklassniki,7360,13564 +1724213700,HTTPS,399838,810356 +1724213700,WhatsApp,1798,5981 +1724213700,Apple sites,4236,19092 +1724213700,SSL client,297418,431499 +1724213700,Amazon Web Services,3265,21602 +1724213700,Microsoft,71203,74401 +1724213700,Mail.Ru,130860,132712 +1724213700,Yandex,105131,152443 +1724213700,GitHub,1586,5976 +1724213700,Google Update,4382,10304 +1724213700,Apple Maps,2846,7558 +1724213700,Office 365,9565,25873 +1724213700,DNS over HTTPS,10958,33342 +1724213700,__unknown,17092,17308 +1724213700,Google,13840,19113 +1724213700,HTTPS,13840,19113 +1724213700,SSL client,13840,19113 +1724213700,__unknown,1079,1902 +1724213700,Google,17427,18682 +1724213700,Gmail,66137,41051 +1724213700,HTTPS,106873,93897 +1724213700,SSL client,106873,93897 +1724213700,Telegram,23309,34164 +1724213700,__unknown,601,3526 +1724213700,Google,9987,15687 +1724213700,Skype Auth,760,464 +1724213700,Skype,760,464 +1724213700,HTTPS,16562,26548 +1724213700,SSL client,9987,15687 +1724213700,ICMP,328,0 +1724213700,__unknown,282938,307817 +1724213700,BitTorrent,310,496 +1724213700,Google APIs,31876,18711 +1724213700,Google Drive,5557,29129 +1724213700,Google,11416,24263 +1724213700,DNS,16116,0 +1724213700,Gmail,6381,8743 +1724213700,HTTP,1772,1523 +1724213700,Microsoft Update,642,508 +1724213700,NTP,12750,3000 +1724213700,STUN,984,888 +1724213700,Odnoklassniki,3007,8087 +1724213700,HTTPS,89550,229879 +1724213700,SSL client,62658,101736 +1724213700,Microsoft CryptoAPI,1772,1523 +1724213700,ICMP,5544,0 +1724213700,Grammarly,2233,7853 +1724213700,DNS over HTTPS,14717,41164 +1724213700,__unknown,139945,694582 +1724213700,BitTorrent,153,198 +1724213700,DHCPv6,978,0 +1724213700,Google APIs,5637,7751 +1724213700,Google,33924,66190 +1724213700,Android browser,456,333 +1724213700,BitTorrent tracker,153,198 +1724213700,DNS,45612,47950 +1724213700,HTTP,1260960,58589067 +1724213700,Launchpad,3200,2348 +1724213700,Microsoft Update,61580,1009860 +1724213700,NetBIOS-dgm,250,0 +1724213700,NTP,2700,2700 +1724213700,Advanced Packaging Tool,29141,26575 +1724213700,Windows Update,57117,1005802 +1724213700,HTTPS,128315,333603 +1724213700,Avast,382,391 +1724213700,SSL client,45731,99491 +1724213700,Ubuntu Update Manager,22371,21011 +1724213700,Microsoft,1144441,57506692 +1724213700,Yandex,4185,21103 +1724213700,Ubuntu,4845,4591 +1724213700,Microsoft CryptoAPI,7099,6306 +1724213700,Microsoft WNS,693,7965 +1724213700,ICMP,2342,0 +1724213700,Edge Chromium,6684,20225 +1724213700,Grammarly,1959,7405 +1724213700,DNS over HTTPS,95324,297036 +1724214000,__unknown,1522,2090 +1724214000,HTTPS,77230,338962 +1724214000,SSL client,77230,338962 +1724214000,Mail.Ru,77230,338962 +1724214000,HTTPS,8938,20319 +1724214000,SSL,2899,9642 +1724214000,HTTPS,78895,33108 +1724214000,SSL client,2899,9642 +1724214000,Google Hangouts,2899,9642 +1724214000,HTTPS,5953,4786 +1724214000,HTTPS,52269,54841 +1724214000,SSL client,46497,48495 +1724214000,Yandex,3026,5995 +1724214000,Google Play,43471,42500 +1724214000,__unknown,42482,42497 +1724214000,Google APIs,6561,9743 +1724214000,Google,372140,142482 +1724214000,Skype,2653,8336 +1724214000,HTTPS,444861,273770 +1724214000,Avast,2376,18805 +1724214000,SSL client,411069,225654 +1724214000,Microsoft,9775,18424 +1724214000,Mail.Ru,6305,5899 +1724214000,Yandex,7565,5084 +1724214000,Office 365,1434,7344 +1724214000,GISMETEO,2260,9537 +1724214000,__unknown,21662,9276 +1724214000,Bing,3609,6480 +1724214000,Google APIs,3108,7149 +1724214000,Google,245261,166855 +1724214000,MSN,9822,46313 +1724214000,HTTP,48643,26196 +1724214000,Skype,1840,86260 +1724214000,SSL,1496,1392 +1724214000,HTTPS,750975,1415893 +1724214000,WhatsApp,3102,5711 +1724214000,Mozilla,7858,7470 +1724214000,SSL client,593253,809215 +1724214000,Microsoft,74869,72111 +1724214000,Mail.Ru,91985,78819 +1724214000,Yandex,154035,57000 +1724214000,Google Update,4401,10370 +1724214000,Office 365,10373,47283 +1724214000,Sharepoint Online,9328,213034 +1724214000,Microsoft Windows Live Services Authentication,23911,34875 +1724214000,Google Hangouts,1496,1392 +1724214000,HTTPS,33426,13190 +1724214000,__unknown,1913,15684 +1724214000,ICMP,10260,10260 +1724214000,__unknown,17900,38437 +1724214000,Google,33840,27416 +1724214000,HTTPS,41331,43642 +1724214000,SSL client,33840,27416 +1724214000,Apple Maps,4278,10794 +1724214000,ICMP,656,0 +1724214000,__unknown,271314,441233 +1724214000,BitTorrent,310,496 +1724214000,DHCPv6,163,0 +1724214000,Google Drive,21825,50565 +1724214000,Google,15624,41649 +1724214000,DNS,21704,0 +1724214000,Gmail,8504,15022 +1724214000,NetBIOS-dgm,243,0 +1724214000,NTP,12750,3000 +1724214000,STUN,984,888 +1724214000,HTTPS,111752,240035 +1724214000,SSL client,48081,112168 +1724214000,ICMP,27182,1560 +1724214000,DNS over HTTPS,8105,23968 +1724214000,CoAP,1176,864 +1724214000,__unknown,259322,514592 +1724214000,DHCPv6,978,0 +1724214000,Google APIs,6488,16364 +1724214000,Google,43877,80557 +1724214000,DNS,43994,40567 +1724214000,HTTP,58768,322848 +1724214000,Launchpad,3200,2480 +1724214000,Microsoft Update,695,773 +1724214000,NTP,13290,3540 +1724214000,SSL,797,7093 +1724214000,Advanced Packaging Tool,37606,278205 +1724214000,HTTPS,188667,447743 +1724214000,Mozilla,2758,1739 +1724214000,Avast,382,391 +1724214000,SSL client,71396,145004 +1724214000,Ubuntu Update Manager,27266,269293 +1724214000,Yandex,6683,26402 +1724214000,Ubuntu,8415,7807 +1724214000,Microsoft CryptoAPI,1733,1444 +1724214000,Google Play,9507,10430 +1724214000,Google Hangouts,797,7093 +1724214000,ICMP,1798,0 +1724214000,Edge Chromium,7858,24240 +1724214000,DNS over TLS,2158,9540 +1724214000,DNS over HTTPS,56279,165399 +1724214300,SSL,21101,29878 +1724214300,SSL client,21101,29878 +1724214300,Google Hangouts,21101,29878 +1724214300,Google,128137,51202 +1724214300,HTTPS,128137,51202 +1724214300,SSL client,128137,51202 +1724214300,__unknown,44436,45350 +1724214300,HTTPS,37837,16193 +1724214300,SSL client,37837,16193 +1724214300,Microsoft,17598,7963 +1724214300,Google Play,20239,8230 +1724214300,HTTPS,23053,20543 +1724214300,__unknown,9860,19994 +1724214300,HTTP,1560,1521 +1724214300,Microsoft Update,1560,1521 +1724214300,Steam,4222,9857 +1724214300,HTTPS,99586,118315 +1724214300,SSL client,57365,74115 +1724214300,Microsoft,10433,19340 +1724214300,Mail.Ru,27087,19832 +1724214300,Microsoft CryptoAPI,1560,1521 +1724214300,uTorrent,11228,19518 +1724214300,Office 365,2330,2465 +1724214300,GISMETEO,2065,3103 +1724214300,__unknown,780,480 +1724214300,Google APIs,13767,43732 +1724214300,Google,116898,163378 +1724214300,OpenVPN,0,648 +1724214300,Gmail,5531,6716 +1724214300,HTTP,465,397 +1724214300,Skype,2475,8276 +1724214300,IMAPS,5531,6716 +1724214300,HTTPS,486467,976618 +1724214300,Avast,465,397 +1724214300,SSL client,364704,454836 +1724214300,Microsoft,16944,42984 +1724214300,Mail.Ru,130647,129220 +1724214300,Yandex,67154,33325 +1724214300,Office 365,3558,15576 +1724214300,Microsoft Windows Live Services Authentication,7730,11629 +1724214300,DNS over HTTPS,3487,12711 +1724214300,__unknown,187,228 +1724214300,HTTPS,76302,27411 +1724214300,__unknown,4061,3421 +1724214300,Windows Live,4404,26116 +1724214300,HTTPS,4404,26116 +1724214300,SSL client,4404,26116 +1724214300,ICMP,2408,0 +1724214300,__unknown,878,3425 +1724214300,HTTPS,13498,23906 +1724214300,__unknown,282292,1827261 +1724214300,BitTorrent,310,496 +1724214300,DHCPv6,163,0 +1724214300,Google,13541,43872 +1724214300,DNS,12427,0 +1724214300,Gmail,14077,11343 +1724214300,NTP,900,900 +1724214300,STUN,2844,4188 +1724214300,Odnoklassniki,3007,8223 +1724214300,HTTPS,76967,168079 +1724214300,Mozilla,2615,1712 +1724214300,SSL client,41764,78590 +1724214300,ICMP,5548,660 +1724214300,Google Sign in,6276,8493 +1724214300,DNS over HTTPS,42628,107495 +1724214300,CoAP,1372,1008 +1724214300,__unknown,274622,510032 +1724214300,BitTorrent,153,537 +1724214300,Google APIs,2410,6686 +1724214300,Google,24669,49296 +1724214300,BitTorrent tracker,153,537 +1724214300,DNS,44731,42997 +1724214300,Gmail,6982,3963 +1724214300,HTTP,243955,9361720 +1724214300,Launchpad,3200,2414 +1724214300,Microsoft Update,3251,2638 +1724214300,NTP,1530,1530 +1724214300,Odnoklassniki,2093,1696 +1724214300,Advanced Packaging Tool,220200,9310146 +1724214300,HTTPS,166343,430853 +1724214300,SSL client,51923,105196 +1724214300,Ubuntu Update Manager,211621,9302890 +1724214300,Microsoft,633,7965 +1724214300,Yandex,13224,38164 +1724214300,Ubuntu,7079,6682 +1724214300,Microsoft CryptoAPI,5544,4569 +1724214300,Microsoft WNS,633,7965 +1724214300,ICMP,2274,0 +1724214300,Telegram,1902,7704 +1724214300,Edge Chromium,6744,20871 +1724214300,DNS over TLS,2158,9539 +1724214300,DNS over HTTPS,68213,227304 +1724214599,SSL,14171,39392 +1724214599,SSL client,14171,39392 +1724214599,Google Hangouts,14171,39392 +1724214599,__unknown,1222,1874 +1724214599,HTTPS,4197,6502 +1724214599,SSL client,4197,6502 +1724214599,Sharepoint Online,4197,6502 +1724214599,__unknown,136641,3378437 +1724214599,HTTPS,26454,25225 +1724214599,SSL client,3895,8240 +1724214599,Microsoft,3895,8240 +1724214599,HTTPS,7420,8918 +1724214599,__unknown,19917,11646 +1724214599,HTTPS,35265,77344 +1724214599,Mozilla,2337,5131 +1724214599,Avast,1122,10102 +1724214599,SSL client,13829,50652 +1724214599,Microsoft,6334,18169 +1724214599,Google Play,2287,6593 +1724214599,Office 365,1749,10657 +1724214599,__unknown,23287,32644 +1724214599,Bing,3561,6484 +1724214599,Google APIs,3673,11592 +1724214599,Google,105395,138509 +1724214599,Dell,1051,4365 +1724214599,Gmail,13125,16502 +1724214599,HTTP,2974,4766 +1724214599,Microsoft Update,22640,10315 +1724214599,Skype,2462,8217 +1724214599,IMAPS,13125,16502 +1724214599,HTTPS,469228,796633 +1724214599,WhatsApp,1858,5921 +1724214599,Mozilla,2063,5091 +1724214599,Avast,2376,16428 +1724214599,SSL client,342484,508158 +1724214599,Microsoft,26391,56309 +1724214599,Mail.Ru,126586,130048 +1724214599,Yandex,18120,41794 +1724214599,Microsoft CryptoAPI,2974,4766 +1724214599,Office 365,13822,53750 +1724214599,Grammarly,4193,13520 +1724214599,DNS over HTTPS,4560,18222 +1724214599,SSL,3027,9322 +1724214599,HTTPS,35903,14920 +1724214599,__unknown,1123,1977 +1724214599,Google,9904,15803 +1724214599,HTTPS,9904,15803 +1724214599,SSL client,9904,15803 +1724214599,HTTPS,6459,11767 +1724214599,__unknown,384764,729893 +1724214599,BitTorrent,310,496 +1724214599,Google APIs,107194,50151 +1724214599,Google,80234,138529 +1724214599,DNS,17690,0 +1724214599,Gmail,7052,8311 +1724214599,HTTP,2720,2321 +1724214599,Microsoft Update,641,507 +1724214599,NetBIOS-dgm,250,0 +1724214599,NTP,25230,5730 +1724214599,STUN,4704,7488 +1724214599,Advanced Packaging Tool,1349,1286 +1724214599,HTTPS,265394,372381 +1724214599,SSL client,203599,213020 +1724214599,Ubuntu Update Manager,1349,1286 +1724214599,Microsoft CryptoAPI,1371,1035 +1724214599,ICMP,6412,600 +1724214599,Telegram,9119,16029 +1724214599,DNS over HTTPS,12156,39461 +1724214599,__unknown,252307,528407 +1724214599,DHCPv6,1141,0 +1724214599,Google APIs,3457,8955 +1724214599,Google,11573,17411 +1724214599,QQ,414,1583 +1724214599,DNS,41577,39024 +1724214599,HTTP,60671,79807 +1724214599,Launchpad,3200,2480 +1724214599,Microsoft Update,1929,1516 +1724214599,NetBIOS-dgm,243,0 +1724214599,NTP,1170,1170 +1724214599,VKontakte,2503,5661 +1724214599,Advanced Packaging Tool,30429,27863 +1724214599,HTTPS,143638,554950 +1724214599,SSL client,36698,273740 +1724214599,Ubuntu Update Manager,22437,21071 +1724214599,Yandex,15842,236320 +1724214599,Ubuntu,6558,6148 +1724214599,Microsoft CryptoAPI,4901,4066 +1724214599,Office 365,748,4616 +1724214599,ICMP,1247,0 +1724214599,Telegram,2729,7844 +1724214599,Edge Chromium,6217,19509 +1724214599,DNS over HTTPS,98746,304154 +1724214900,SSL,19790,28419 +1724214900,SSL client,19790,28419 +1724214900,Google Hangouts,19790,28419 +1724214900,Google,33953,42048 +1724214900,HTTPS,33953,42048 +1724214900,SSL client,33953,42048 +1724214900,Windows Live,28072,7874 +1724214900,HTTPS,55873,15714 +1724214900,SSL client,55873,15714 +1724214900,Microsoft,27801,7840 +1724214900,Google APIs,6321,21593 +1724214900,Google,11422,15920 +1724214900,HTTPS,49271,59581 +1724214900,SSL client,45415,55700 +1724214900,Google Play,27672,18187 +1724214900,__unknown,6896,17214 +1724214900,HTTPS,77710,88772 +1724214900,Avast,1122,8254 +1724214900,SSL client,38802,41609 +1724214900,Microsoft,4364,7329 +1724214900,Mail.Ru,20295,11071 +1724214900,Yandex,7998,11093 +1724214900,Apple Maps,2870,7488 +1724214900,Google Sign in,5023,3862 +1724214900,__unknown,54382,77165 +1724214900,Google,145686,153542 +1724214900,Dell,1051,4308 +1724214900,Microsoft Update,47741,34831 +1724214900,Steam,2112,4925 +1724214900,HTTPS,562388,791948 +1724214900,WhatsApp,3162,5622 +1724214900,SSL client,416944,475841 +1724214900,Microsoft,39346,60666 +1724214900,Mail.Ru,86592,80556 +1724214900,Yandex,76366,81034 +1724214900,GitHub,1526,6063 +1724214900,Office 365,8854,38347 +1724214900,Microsoft Windows Live Services Authentication,7670,11569 +1724214900,DNS over HTTPS,5627,17426 +1724214900,Google,506440,4408142 +1724214900,HTTPS,506440,4408142 +1724214900,SSL client,506440,4408142 +1724214900,__unknown,100156,63760 +1724214900,HTTPS,148374,85748 +1724214900,HTTPS,32446,42181 +1724214900,SSL client,9578,13417 +1724214900,DNS over HTTPS,9578,13417 +1724214900,__unknown,3326,1896 +1724214900,ICMP,774,0 +1724214900,__unknown,264,1000 +1724214900,Google APIs,4175,10560 +1724214900,Google,103879,77271 +1724214900,HTTPS,122993,93655 +1724214900,SSL client,108054,87831 +1724214900,ICMP,4270,0 +1724214900,DNS over HTTPS,2266,10785 +1724214900,__unknown,430279,666461 +1724214900,BitTorrent,310,496 +1724214900,Google APIs,4568,16749 +1724214900,Google Drive,7528,10305 +1724214900,Google,56605,123909 +1724214900,MSN,22691,1223340 +1724214900,DNS,12117,590 +1724214900,Gmail,18957,19396 +1724214900,HTTP,2432,3865 +1724214900,Microsoft Update,641,507 +1724214900,NTP,12660,2910 +1724214900,STUN,2844,4188 +1724214900,Odnoklassniki,3007,8281 +1724214900,HTTPS,160899,1970131 +1724214900,Mozilla,1876,4611 +1724214900,SSL client,121853,1431606 +1724214900,Mail.Ru,1204,5223 +1724214900,MDNS,364,0 +1724214900,Microsoft CryptoAPI,2432,3865 +1724214900,ICMP,52352,3240 +1724214900,Grammarly,4428,15473 +1724214900,DNS over HTTPS,14723,38725 +1724214900,__unknown,162706,351884 +1724214900,Bing,4715,7756 +1724214900,BitTorrent,153,198 +1724214900,DHCPv6,978,0 +1724214900,Google APIs,15458,11430 +1724214900,Google Drive,8830,10891 +1724214900,Google,144142,54935 +1724214900,BitTorrent tracker,153,198 +1724214900,DNS,45724,46877 +1724214900,Gmail,9991,6358 +1724214900,HTTP,58282,91142 +1724214900,Launchpad,3200,2480 +1724214900,Microsoft Update,3530,11004 +1724214900,NTP,180,180 +1724214900,Advanced Packaging Tool,31142,28694 +1724214900,HTTPS,309161,472263 +1724214900,iCloud,4120,8679 +1724214900,SSL client,203796,144660 +1724214900,Ubuntu Update Manager,24324,22962 +1724214900,Yandex,15171,48830 +1724214900,Ubuntu,5743,5549 +1724214900,Microsoft CryptoAPI,4731,12031 +1724214900,Microsoft NCSI,925,974 +1724214900,ICMP,2943,0 +1724214900,Edge Chromium,8912,27020 +1724214900,DNS over HTTPS,73816,232785 +1724215200,HTTPS,28203,42365 +1724215200,SSL client,28203,42365 +1724215200,Telegram,28203,42365 +1724215200,HTTPS,74398,79147 +1724215200,SSL client,65534,68936 +1724215200,Google Play,11065,6900 +1724215200,Telegram,54469,62036 +1724215200,Google APIs,2027,7221 +1724215200,HTTPS,11288,11784 +1724215200,SSL client,2027,7221 +1724215200,__unknown,9754,28215 +1724215200,Google APIs,2002,7717 +1724215200,Google,13503,10415 +1724215200,Gmail,5895,3780 +1724215200,HTTP,1316,9481 +1724215200,Microsoft Update,1316,9481 +1724215200,Skype,2912,7906 +1724215200,HTTPS,118325,124086 +1724215200,Mozilla,2117,5091 +1724215200,Avast,1122,8253 +1724215200,SSL client,86036,93815 +1724215200,Microsoft,8325,25639 +1724215200,Mail.Ru,50160,25014 +1724215200,Microsoft CryptoAPI,1316,9481 +1724215200,DNS over HTTPS,2570,3737 +1724215200,__unknown,14040,11904 +1724215200,BITS,7751,470990 +1724215200,Dropbox,1244,4605 +1724215200,Google APIs,2668,6657 +1724215200,Google,3590,13473 +1724215200,MSN,4885,36199 +1724215200,HTTP,7751,470990 +1724215200,Microsoft Update,115286,250007 +1724215200,Skype,5797,92369 +1724215200,Odnoklassniki,3680,6722 +1724215200,HTTPS,653133,999556 +1724215200,SSL client,543170,717263 +1724215200,Microsoft,218835,88950 +1724215200,Mail.Ru,141110,143024 +1724215200,Yandex,9043,17491 +1724215200,Office 365,1749,7788 +1724215200,Microsoft Windows Live Services Authentication,22671,39886 +1724215200,Grammarly,12612,10092 +1724215200,HTTPS,11576,15232 +1724215200,SSL client,11576,15232 +1724215200,DNS over HTTPS,11576,15232 +1724215200,__unknown,4377,10736 +1724215200,Google,42457,30885 +1724215200,HTTP,595,505 +1724215200,HTTPS,42457,30885 +1724215200,SSL client,42457,30885 +1724215200,__unknown,277,244 +1724215200,Google,5027,10369 +1724215200,HTTPS,15901,499025 +1724215200,SSL client,5027,10369 +1724215200,__unknown,345922,871551 +1724215200,BitTorrent,310,496 +1724215200,DHCPv6,163,0 +1724215200,Google APIs,41809,8940 +1724215200,Google,26386,61102 +1724215200,DNS,19095,0 +1724215200,Gmail,8694,15446 +1724215200,HTTP,1006,814 +1724215200,Microsoft Update,1006,814 +1724215200,NetBIOS-dgm,250,0 +1724215200,NTP,12390,2640 +1724215200,STUN,984,888 +1724215200,Odnoklassniki,5283,15441 +1724215200,HTTPS,123421,202388 +1724215200,SSL client,88707,121970 +1724215200,Microsoft,922,7534 +1724215200,Yandex,1133,670 +1724215200,Microsoft CryptoAPI,1006,814 +1724215200,ICMP,19650,0 +1724215200,Grammarly,2232,7887 +1724215200,DNS over HTTPS,11360,31390 +1724215200,__unknown,194807,358189 +1724215200,Google APIs,5323,34395 +1724215200,Google,41169,80288 +1724215200,DNS,60920,52252 +1724215200,HTTP,55968,93926 +1724215200,Launchpad,3200,2480 +1724215200,Microsoft Update,1041,850 +1724215200,NTP,13110,3360 +1724215200,SSL,855,7032 +1724215200,VKontakte,2545,5646 +1724215200,Steam,2031,10144 +1724215200,Advanced Packaging Tool,31025,28333 +1724215200,HTTPS,151335,431414 +1724215200,Avast,382,391 +1724215200,SSL client,65612,175300 +1724215200,Ubuntu Update Manager,22446,21011 +1724215200,Microsoft,1326,15930 +1724215200,Yandex,16311,52191 +1724215200,Ubuntu,6654,6221 +1724215200,Microsoft CryptoAPI,2111,1866 +1724215200,Microsoft NCSI,1028,974 +1724215200,Microsoft WNS,1326,15930 +1724215200,Google Hangouts,855,7032 +1724215200,ICMP,1586,0 +1724215200,Edge Chromium,4109,14047 +1724215200,Grammarly,1941,7405 +1724215200,DNS over HTTPS,95756,287551 +1724215500,HTTPS,27493,21152 +1724215500,SSL client,27493,21152 +1724215500,Yandex,27493,21152 +1724215500,HTTPS,45819,63449 +1724215500,SSL client,45819,63449 +1724215500,Telegram,45819,63449 +1724215500,__unknown,47634,48713 +1724215500,HTTPS,3583,3896 +1724215500,HTTPS,12450,12092 +1724215500,SSL client,12450,12092 +1724215500,Google Play,12450,12092 +1724215500,__unknown,478022,555755 +1724215500,Google,23856,317373 +1724215500,TeamViewer,1508,8838 +1724215500,HTTPS,87180,416579 +1724215500,Avast,1122,8239 +1724215500,SSL client,47057,375791 +1724215500,Microsoft,10709,18324 +1724215500,Mail.Ru,6301,5841 +1724215500,GISMETEO,1269,9289 +1724215500,Grammarly,2292,7887 +1724215500,DNS over HTTPS,0,1270 +1724215500,__unknown,10394,14095 +1724215500,Bing,3706,6424 +1724215500,Dropbox,5395,222470 +1724215500,Google APIs,6435,14475 +1724215500,Google,1259,1634 +1724215500,MSN,2227,8103 +1724215500,Gmail,2995,7441 +1724215500,HTTP,693,7968 +1724215500,TwitchTV,6393,7023 +1724215500,Odnoklassniki,7360,13564 +1724215500,IMAPS,2995,7441 +1724215500,HTTPS,265692,744444 +1724215500,WhatsApp,1798,5981 +1724215500,Apple sites,4140,29842 +1724215500,SSL client,148979,495664 +1724215500,Amazon Web Services,3199,21430 +1724215500,Microsoft,21112,51819 +1724215500,Mail.Ru,66944,68318 +1724215500,Yandex,16855,45113 +1724215500,GitHub,1652,5976 +1724215500,Microsoft WNS,693,7968 +1724215500,DNS over HTTPS,6696,31036 +1724215500,Google,33193,24708 +1724215500,HTTPS,33193,24708 +1724215500,SSL client,33193,24708 +1724215500,HTTPS,29512,12742 +1724215500,__unknown,10406,2761 +1724215500,Google,31848,39228 +1724215500,HTTPS,31848,39228 +1724215500,SSL client,31848,39228 +1724215500,ICMP,9268,0 +1724215500,__unknown,1011,9106 +1724215500,Google,14247,17598 +1724215500,Gmail,29643,19736 +1724215500,HTTPS,79835,162658 +1724215500,SSL client,43890,37334 +1724215500,ICMP,2050,0 +1724215500,__unknown,564726,744682 +1724215500,BitTorrent,310,496 +1724215500,DHCPv6,978,0 +1724215500,Google APIs,6848,64444 +1724215500,Google Drive,5059,12233 +1724215500,Google,17628,49387 +1724215500,DNS,19052,0 +1724215500,Gmail,6589,7902 +1724215500,HTTP,2608,2226 +1724215500,Microsoft Update,2608,2226 +1724215500,NetBIOS-dgm,243,0 +1724215500,NTP,450,450 +1724215500,STUN,984,888 +1724215500,Odnoklassniki,2520,7771 +1724215500,HTTPS,82137,279457 +1724215500,SSL client,46300,161978 +1724215500,Microsoft CryptoAPI,2608,2226 +1724215500,ICMP,3595,0 +1724215500,Office Mobile,607,6605 +1724215500,Google Sign in,4861,8504 +1724215500,DNS over HTTPS,11573,33628 +1724215500,__unknown,253313,621571 +1724215500,BitTorrent,153,537 +1724215500,DHCPv6,163,0 +1724215500,Google APIs,4912,14227 +1724215500,Google,30760,76435 +1724215500,BitTorrent tracker,153,537 +1724215500,DNS,73790,59672 +1724215500,Gmail,6545,8010 +1724215500,HTTP,60259,538382 +1724215500,Launchpad,3200,2480 +1724215500,Microsoft Update,641,507 +1724215500,NTP,2700,2700 +1724215500,STUN,1230,1110 +1724215500,Advanced Packaging Tool,41140,497864 +1724215500,HTTPS,160969,385496 +1724215500,SSL client,63574,163279 +1724215500,Ubuntu Update Manager,21888,150834 +1724215500,Yandex,12357,56563 +1724215500,Ubuntu,17327,345921 +1724215500,Microsoft CryptoAPI,1228,1010 +1724215500,ICMP,2219,0 +1724215500,Google Sign in,6219,4244 +1724215500,Edge Chromium,3522,12041 +1724215500,DNS over TLS,2290,9541 +1724215500,DNS over HTTPS,109198,345421 +1724215800,HTTPS,336270,452592 +1724215800,__unknown,98691,169104 +1724215800,ICMP,10086,0 +1724215800,HTTPS,53789,70618 +1724215800,SSL client,53789,70618 +1724215800,Telegram,53789,70618 +1724215800,HTTPS,9170,110783 +1724215800,SSL client,9170,110783 +1724215800,Microsoft,9170,110783 +1724215800,__unknown,360,7635 +1724215800,HTTPS,25325,8090 +1724215800,SSL client,25325,8090 +1724215800,Microsoft,25325,8090 +1724215800,HTTPS,31088,24219 +1724215800,SSL client,31088,24219 +1724215800,Google Play,31088,24219 +1724215800,__unknown,19340,10027 +1724215800,Dropbox,3335,2538 +1724215800,Gmail,6075,3413 +1724215800,HTTP,2608,3225 +1724215800,HTTPS,56268,76091 +1724215800,Mozilla,2219,5251 +1724215800,Avast,1254,8732 +1724215800,SSL client,19518,32864 +1724215800,Microsoft,2008,3665 +1724215800,VeriSign,1075,1826 +1724215800,Yandex,2433,2168 +1724215800,Microsoft CryptoAPI,2608,3225 +1724215800,GISMETEO,2194,7097 +1724215800,__unknown,5866,13613 +1724215800,Bing,1868,9330 +1724215800,Google APIs,3063,7154 +1724215800,Google,95319,163639 +1724215800,Skype,3293,7945 +1724215800,Odnoklassniki,9200,16955 +1724215800,HTTPS,336971,631115 +1724215800,WhatsApp,3045,5682 +1724215800,Apple sites,1654,9932 +1724215800,Mozilla,2219,5406 +1724215800,Avast,1952,6136 +1724215800,SSL client,265716,448981 +1724215800,Microsoft,33358,62870 +1724215800,Mail.Ru,66103,65799 +1724215800,Yandex,18384,42357 +1724215800,Apple Maps,2768,6495 +1724215800,Office 365,1171,7775 +1724215800,Microsoft Windows Live Services Authentication,7667,11597 +1724215800,DNS over HTTPS,22677,42872 +1724215800,ICMP,1640,0 +1724215800,__unknown,187,228 +1724215800,__unknown,3717,42320 +1724215800,__unknown,919,500 +1724215800,__unknown,3369,1612 +1724215800,Google,18066,19688 +1724215800,HTTPS,18066,19688 +1724215800,SSL client,18066,19688 +1724215800,ICMP,258,0 +1724215800,__unknown,398587,934093 +1724215800,BitTorrent,310,496 +1724215800,Google Drive,5979,9853 +1724215800,Google,28340,121542 +1724215800,DNS,18838,0 +1724215800,NTP,13290,3540 +1724215800,STUN,2844,4188 +1724215800,YouTube,13995,4168 +1724215800,Odnoklassniki,3008,8147 +1724215800,HTTPS,119778,241595 +1724215800,SSL client,53554,151596 +1724215800,Apple Maps,2630,6566 +1724215800,ICMP,6988,0 +1724215800,Grammarly,2232,7886 +1724215800,DNS over HTTPS,3689,9501 +1724215800,__unknown,285972,446426 +1724215800,Apple Update,1859,5531 +1724215800,DHCPv6,978,0 +1724215800,Google APIs,10971,16972 +1724215800,Google,18132,43206 +1724215800,DNS,45341,42365 +1724215800,HTTP,77621,229026 +1724215800,Launchpad,3200,2480 +1724215800,Microsoft Update,1288,1004 +1724215800,NetBIOS-dgm,250,0 +1724215800,NTP,1260,1260 +1724215800,SSL,795,7031 +1724215800,VKontakte,2562,5606 +1724215800,Advanced Packaging Tool,38583,163842 +1724215800,HTTPS,94868,230439 +1724215800,SSL client,43830,119181 +1724215800,Ubuntu Update Manager,29417,155960 +1724215800,Microsoft,573,7964 +1724215800,Yandex,6939,29586 +1724215800,Ubuntu,6882,6320 +1724215800,Microsoft CryptoAPI,3029,2473 +1724215800,Microsoft WNS,573,7964 +1724215800,Google Hangouts,795,7031 +1724215800,ICMP,2819,60 +1724215800,Office Mobile,759,6590 +1724215800,Edge Chromium,6217,19510 +1724215800,DNS over TLS,2290,9539 +1724215800,DNS over HTTPS,88143,270244 +1724216100,Google,669569,257304 +1724216100,HTTPS,669569,257304 +1724216100,SSL client,669569,257304 +1724216100,DNS over HTTPS,182882,416753 +1724216100,HTTPS,45831,63952 +1724216100,SSL client,45831,63952 +1724216100,Telegram,45831,63952 +1724216100,HTTPS,74648,70342 +1724216100,SSL client,74648,70342 +1724216100,Google Play,20179,8306 +1724216100,Telegram,54469,62036 +1724216100,HTTPS,18170,19377 +1724216100,Bing,3490,6423 +1724216100,TeamViewer,2969,17694 +1724216100,HTTPS,36830,78573 +1724216100,Avast,2442,16390 +1724216100,SSL client,18068,62280 +1724216100,Microsoft,6639,20437 +1724216100,Yandex,2528,1336 +1724216100,__unknown,593498,407711 +1724216100,Bing,7425,13020 +1724216100,Google,100967,64414 +1724216100,Gmail,3115,7579 +1724216100,HTTP,585,446 +1724216100,Microsoft Update,585,446 +1724216100,IMAPS,3115,7579 +1724216100,HTTPS,628546,1059913 +1724216100,iCloud,4670,5970 +1724216100,Mozilla,2117,5091 +1724216100,Avast,1644,6139 +1724216100,SSL client,275828,310422 +1724216100,Amazon Web Services,3199,21490 +1724216100,CloudFront,8551,8525 +1724216100,Microsoft,18299,36178 +1724216100,Mail.Ru,104925,87708 +1724216100,Yandex,10169,16570 +1724216100,Microsoft CryptoAPI,585,446 +1724216100,Exchange Online,1291,6471 +1724216100,Office 365,5410,14994 +1724216100,GISMETEO,2140,9581 +1724216100,Grammarly,1906,6692 +1724216100,DNS over HTTPS,16421,57031 +1724216100,HTTPS,8394,11311 +1724216100,SSL client,8394,11311 +1724216100,DNS over HTTPS,8394,11311 +1724216100,CoAP,5292,3888 +1724216100,__unknown,12862,15583 +1724216100,Google,136097,132284 +1724216100,HTTPS,136097,132284 +1724216100,SSL client,136097,132284 +1724216100,ICMP,3854,0 +1724216100,__unknown,120,2866 +1724216100,ICMP,656,0 +1724216100,__unknown,421,322 +1724216100,Google Drive,18961,13546 +1724216100,HTTPS,22985,17363 +1724216100,SSL client,18961,13546 +1724216100,ICMP,1316,0 +1724216100,__unknown,387138,1277542 +1724216100,BitTorrent,310,496 +1724216100,DHCPv6,163,0 +1724216100,Google APIs,2205,6890 +1724216100,Google,196540,2348196 +1724216100,Chrome,1275,869 +1724216100,DNS,12936,0 +1724216100,Gmail,6322,8537 +1724216100,HTTP,2511,2328 +1724216100,Microsoft Update,641,507 +1724216100,NetBIOS-dgm,243,0 +1724216100,NTP,24690,5190 +1724216100,STUN,984,888 +1724216100,Odnoklassniki,2515,2360 +1724216100,HTTPS,260277,2670452 +1724216100,SSL client,226727,2401641 +1724216100,Microsoft CryptoAPI,1236,1459 +1724216100,ICMP,27445,60 +1724216100,Grammarly,4562,15680 +1724216100,DNS over HTTPS,10938,29101 +1724216100,Google Meet,12395,15028 +1724216100,__unknown,308196,526121 +1724216100,BitTorrent,153,198 +1724216100,Google APIs,9740,21239 +1724216100,Google,42526,135490 +1724216100,BitTorrent tracker,153,198 +1724216100,DNS,48125,46628 +1724216100,HTTP,52682,89554 +1724216100,Launchpad,2560,1984 +1724216100,Microsoft Update,1929,1512 +1724216100,NTP,270,270 +1724216100,VKontakte,2383,5534 +1724216100,Advanced Packaging Tool,25158,23018 +1724216100,HTTPS,135827,1481129 +1724216100,Avast,382,391 +1724216100,SSL client,60926,183054 +1724216100,Ubuntu Update Manager,18297,17159 +1724216100,Microsoft,633,7964 +1724216100,VeriSign,1132,4282 +1724216100,Yandex,2755,10440 +1724216100,Ubuntu,5217,4793 +1724216100,Microsoft CryptoAPI,8565,12775 +1724216100,Microsoft WNS,633,7964 +1724216100,ICMP,1080,0 +1724216100,Edge Chromium,5857,15651 +1724216100,Grammarly,1921,7405 +1724216100,DNS over HTTPS,84868,279894 +1724216400,ICMP,45300,45420 +1724216400,HTTPS,10301,25533 +1724216400,HTTPS,53789,63952 +1724216400,SSL client,53789,63952 +1724216400,Telegram,53789,63952 +1724216400,HTTPS,4168,3877 +1724216400,__unknown,576,0 +1724216400,HTTPS,19120,21519 +1724216400,HTTPS,4134,1917 +1724216400,__unknown,45194,43816 +1724216400,Gmail,5956,3729 +1724216400,HTTPS,70031,101921 +1724216400,SSL client,25315,44733 +1724216400,Samsung,2749,7763 +1724216400,Microsoft,6063,18362 +1724216400,Mail.Ru,9492,10247 +1724216400,Yandex,1055,4632 +1724216400,__unknown,42645,97730 +1724216400,Dropbox,1730,1678 +1724216400,Google APIs,3006,7150 +1724216400,Google,44575,54263 +1724216400,MSN,2227,8104 +1724216400,Dell,1111,4307 +1724216400,HTTPS,400479,966196 +1724216400,WhatsApp,1917,5921 +1724216400,Mozilla,2117,5091 +1724216400,Opera,9821,6074 +1724216400,SSL client,218954,435202 +1724216400,Samsung,25431,19810 +1724216400,Microsoft,26414,53321 +1724216400,Mail.Ru,78204,71455 +1724216400,Yandex,26524,114869 +1724216400,Office 365,5421,85865 +1724216400,ICMP,7708,0 +1724216400,GISMETEO,2194,9289 +1724216400,HTTPS,32466,27678 +1724216400,__unknown,2890,1580 +1724216400,HTTPS,17118,171967 +1724216400,ICMP,7766,0 +1724216400,__unknown,755408,666109 +1724216400,BitTorrent,248,496 +1724216400,DHCPv6,978,0 +1724216400,Google APIs,20420,257120 +1724216400,Google Drive,3270,10272 +1724216400,Google,136454,2437624 +1724216400,Windows Live,3783,19767 +1724216400,DNS,17662,0 +1724216400,HTTP,4554,5713 +1724216400,Launchpad,640,496 +1724216400,Microsoft Update,641,502 +1724216400,NTP,24780,5280 +1724216400,STUN,2844,4188 +1724216400,Odnoklassniki,3007,8205 +1724216400,Advanced Packaging Tool,3347,3070 +1724216400,HTTPS,247948,2876156 +1724216400,WhatsApp,1977,5981 +1724216400,Mozilla,1996,4611 +1724216400,SSL client,176852,2758150 +1724216400,Ubuntu Update Manager,2707,2574 +1724216400,VeriSign,566,2141 +1724216400,Yandex,3484,7715 +1724216400,Microsoft CryptoAPI,1207,2643 +1724216400,ICMP,28831,0 +1724216400,Grammarly,2250,7887 +1724216400,DNS over HTTPS,13641,41233 +1724216400,__unknown,217301,285730 +1724216400,BITS,2498,5238 +1724216400,DHCPv6,163,0 +1724216400,Google APIs,44955,8286 +1724216400,Google Drive,7467,10160 +1724216400,Google,6187,20973 +1724216400,Chrome,1130,968 +1724216400,DNS,50140,44826 +1724216400,Gmail,2476,6673 +1724216400,HTTP,58477,76498 +1724216400,Launchpad,3200,2480 +1724216400,NTP,2790,2790 +1724216400,Advanced Packaging Tool,36419,33580 +1724216400,HTTPS,145116,286018 +1724216400,SSL client,78937,138246 +1724216400,Ubuntu Update Manager,28966,27261 +1724216400,Yandex,13296,82281 +1724216400,Ubuntu,6019,5675 +1724216400,Microsoft CryptoAPI,1376,1203 +1724216400,ICMP,4914,0 +1724216400,ICMP for IPv6,70,0 +1724216400,Telegram,1965,7285 +1724216400,Edge Chromium,5270,13642 +1724216400,DNS over HTTPS,98316,301893 +1724216400,IPv6 No Next Header,98,0 +1724216699,Google,52551,67437 +1724216699,HTTPS,52551,67437 +1724216699,SSL client,52551,67437 +1724216699,__unknown,34827,21238 +1724216699,HTTPS,56655,156879 +1724216699,SSL client,34014,126787 +1724216699,Microsoft,8777,117522 +1724216699,Google Play,25237,9265 +1724216699,HTTPS,46473,48549 +1724216699,SSL client,42601,28025 +1724216699,Google Play,42601,28025 +1724216699,ICMP,9718,0 +1724216699,__unknown,124018,72486 +1724216699,Dropbox,1845,1894 +1724216699,Google APIs,3055,7379 +1724216699,HTTPS,211702,182918 +1724216699,Mozilla,5499,5991 +1724216699,Avast,1122,8149 +1724216699,SSL client,175713,146693 +1724216699,Yandex,2433,1601 +1724216699,Google Play,156962,59807 +1724216699,Office 365,1803,12462 +1724216699,Microsoft Teams,2994,49410 +1724216699,__unknown,805647,615444 +1724216699,Bing,1866,9330 +1724216699,Google APIs,20570,14438 +1724216699,Google,125926,128527 +1724216699,Microsoft Update,19224,5563 +1724216699,Skype,11169,101148 +1724216699,HTTPS,857237,1359806 +1724216699,WhatsApp,3222,5682 +1724216699,Mozilla,2392,5190 +1724216699,Avast,1944,4342 +1724216699,SSL client,469825,616254 +1724216699,Amazon Web Services,3259,21430 +1724216699,Microsoft,25533,26056 +1724216699,Mail.Ru,90814,94003 +1724216699,Yandex,143230,69153 +1724216699,Exchange Online,1358,7946 +1724216699,Office 365,12676,108140 +1724216699,Microsoft Windows Live Services Authentication,7670,11629 +1724216699,GISMETEO,2194,9359 +1724216699,DNS over HTTPS,0,668 +1724216699,__unknown,16382,14936 +1724216699,HTTPS,53689,63892 +1724216699,SSL client,53689,63892 +1724216699,Telegram,53689,63892 +1724216699,HTTPS,22864,28650 +1724216699,ICMP,1548,0 +1724216699,__unknown,957,962 +1724216699,HTTPS,8942,10477 +1724216699,ICMP,1974,0 +1724216699,__unknown,10823,114232 +1724216699,__unknown,33225,31446 +1724216699,Google Drive,44878,20847 +1724216699,Google,8014,15560 +1724216699,HTTPS,75425,46029 +1724216699,SSL client,52892,36407 +1724216699,CoAP,1764,1296 +1724216699,__unknown,370596,354008 +1724216699,BitTorrent,310,496 +1724216699,Google APIs,3687,13044 +1724216699,Google Drive,4664,11931 +1724216699,Google,202618,80197 +1724216699,QQ,609,946 +1724216699,DNS,16699,0 +1724216699,Gmail,20198,64027 +1724216699,HTTP,1926,2080 +1724216699,Microsoft Update,1317,1134 +1724216699,NetBIOS-dgm,250,0 +1724216699,NTP,20180,4545 +1724216699,STUN,984,888 +1724216699,HTTPS,373124,642525 +1724216699,SSL client,241968,195706 +1724216699,CloudFront,2096,10287 +1724216699,Yandex,4225,3385 +1724216699,Microsoft CryptoAPI,1317,1134 +1724216699,ICMP,7246,4140 +1724216699,ICMP for IPv6,70,0 +1724216699,Grammarly,2232,7886 +1724216699,DNS over HTTPS,24091,59328 +1724216699,IPv6 No Next Header,196,0 +1724216699,__unknown,185716,337308 +1724216699,BitTorrent,153,537 +1724216699,DHCPv6,978,0 +1724216699,Google APIs,55803,34643 +1724216699,Google,46109,162911 +1724216699,BitTorrent tracker,153,537 +1724216699,Chrome,565,484 +1724216699,DNS,58310,57382 +1724216699,Gmail,9562,7278 +1724216699,HTTP,49147,52779 +1724216699,Launchpad,1920,1488 +1724216699,Microsoft Update,1283,1009 +1724216699,NetBIOS-dgm,243,0 +1724216699,NTP,6400,2535 +1724216699,VKontakte,1648,4356 +1724216699,Advanced Packaging Tool,27670,24407 +1724216699,HTTPS,208326,416689 +1724216699,Apple sites,614,550 +1724216699,Avast,382,391 +1724216699,SSL client,123028,243625 +1724216699,Ubuntu Update Manager,21088,19725 +1724216699,Yandex,3312,14999 +1724216699,Ubuntu,6362,5030 +1724216699,Microsoft CryptoAPI,6199,5248 +1724216699,Microsoft NCSI,925,974 +1724216699,ICMP,2008,0 +1724216699,Edge Chromium,2635,6824 +1724216699,DNS over TLS,2158,9541 +1724216699,DNS over HTTPS,61622,196763 +1724217000,__unknown,97165,228744 +1724217000,STUN,168018,151774 +1724217000,__unknown,125970,74160 +1724217000,__unknown,102916,86919 +1724217000,SSL,22108,30619 +1724217000,SSL client,22108,30619 +1724217000,Google Hangouts,22108,30619 +1724217000,Windows Live,27208,12735 +1724217000,HTTPS,27208,12735 +1724217000,SSL client,27208,12735 +1724217000,HTTPS,204562,73917 +1724217000,__unknown,8093,9955 +1724217000,Windows Live,32482,11794 +1724217000,HTTPS,32482,11794 +1724217000,SSL client,32482,11794 +1724217000,HTTPS,32663,13310 +1724217000,SSL client,22862,4478 +1724217000,Google Play,22862,4478 +1724217000,HTTPS,4842,3982 +1724217000,__unknown,60178,35098 +1724217000,Google APIs,12272,69774 +1724217000,Google,87724,57734 +1724217000,Gmail,6135,3745 +1724217000,Skype,2097,16513 +1724217000,HTTPS,204624,3954683 +1724217000,Avast,1254,9206 +1724217000,SSL client,146380,206280 +1724217000,Samsung,17715,7735 +1724217000,Microsoft,9714,22366 +1724217000,Mail.Ru,5297,1589 +1724217000,Office 365,1428,7344 +1724217000,OneDrive,2744,10274 +1724217000,__unknown,53230,63494 +1724217000,Google APIs,36647,35252 +1724217000,MSN,3536,10515 +1724217000,HTTP,1274,1193 +1724217000,Skype,3159,7884 +1724217000,Advanced Packaging Tool,1274,1193 +1724217000,HTTPS,544305,597285 +1724217000,SSL client,469593,410652 +1724217000,Ubuntu Update Manager,1274,1193 +1724217000,Microsoft,31924,52495 +1724217000,Mail.Ru,138172,138296 +1724217000,Yandex,232823,130926 +1724217000,Apple Maps,2768,7286 +1724217000,Rambler,15526,8103 +1724217000,Office 365,5927,24404 +1724217000,GISMETEO,1879,2777 +1724217000,DNS over HTTPS,7001,23505 +1724217000,__unknown,1383,540 +1724217000,__unknown,9346,143212 +1724217000,HTTPS,7745,104083 +1724217000,__unknown,2056,3599 +1724217000,__unknown,554,488 +1724217000,Google,24439,56121 +1724217000,HTTPS,38242,84303 +1724217000,SSL client,29043,63670 +1724217000,Yandex,4604,7549 +1724217000,ICMP,2274,0 +1724217000,__unknown,333082,464524 +1724217000,BITS,4292,18479 +1724217000,BitTorrent,310,496 +1724217000,DHCPv6,163,0 +1724217000,Google APIs,1399,1796 +1724217000,Google Drive,30883,11380 +1724217000,Google,46343,105382 +1724217000,DNS,25143,0 +1724217000,Gmail,8049,5667 +1724217000,HTTP,10297,34629 +1724217000,Launchpad,640,496 +1724217000,NTP,990,990 +1724217000,STUN,2844,4188 +1724217000,VKontakte,86344,117122 +1724217000,Odnoklassniki,2396,7278 +1724217000,Steam,1454,12373 +1724217000,Advanced Packaging Tool,3347,3134 +1724217000,HTTPS,326796,966686 +1724217000,SSL client,225062,280804 +1724217000,Ubuntu Update Manager,2707,2638 +1724217000,Microsoft,922,7534 +1724217000,Yandex,3280,6631 +1724217000,Atlassian,45446,18014 +1724217000,ICMP,16068,0 +1724217000,DNS over HTTPS,8854,27021 +1724217000,IPv6 No Next Header,98,0 +1724217000,__unknown,320185,853690 +1724217000,Apple Update,1793,5443 +1724217000,DHCPv6,978,0 +1724217000,Google APIs,1845,6433 +1724217000,Google,18352,77635 +1724217000,DNS,51431,49151 +1724217000,Gmail,8591,15466 +1724217000,HTTP,55785,96763 +1724217000,Launchpad,3200,2480 +1724217000,Microsoft Update,982,851 +1724217000,_err_742,782,7491 +1724217000,NTP,13830,4080 +1724217000,YouTube,8507,20871 +1724217000,Advanced Packaging Tool,22427,20277 +1724217000,HTTPS,115737,243020 +1724217000,Apple sites,2058,4795 +1724217000,Avast,764,782 +1724217000,SSL client,55207,153451 +1724217000,Ubuntu Update Manager,15561,14497 +1724217000,Microsoft,3905,10281 +1724217000,Mail.Ru,7061,7023 +1724217000,Yandex,7320,21963 +1724217000,Ubuntu,6216,6058 +1724217000,Microsoft CryptoAPI,6121,5850 +1724217000,Microsoft WNS,693,7965 +1724217000,Office 365,619,1199 +1724217000,ICMP,2594,0 +1724217000,Edge Chromium,7858,24246 +1724217000,DNS over HTTPS,69333,208595 +1724217300,HTTPS,57726,69887 +1724217300,SSL client,54887,64742 +1724217300,Telegram,54887,64742 +1724217300,HTTPS,12517,14219 +1724217300,HTTPS,20982,18208 +1724217300,SSL client,20982,18208 +1724217300,Google Play,20982,18208 +1724217300,__unknown,15034,13634 +1724217300,HTTP,592,760 +1724217300,HTTPS,112014,190950 +1724217300,Mozilla,2201,4639 +1724217300,Avast,2376,17361 +1724217300,SSL client,54836,102233 +1724217300,Microsoft,26052,56918 +1724217300,Mail.Ru,24207,23315 +1724217300,Microsoft CryptoAPI,592,760 +1724217300,__unknown,42473,7116 +1724217300,Google APIs,9196,21169 +1724217300,MSN,7615,44503 +1724217300,HTTP,1123,2917 +1724217300,SSL,1505,1392 +1724217300,HTTPS,350102,743657 +1724217300,WhatsApp,1917,5981 +1724217300,Avast,1254,8508 +1724217300,SSL client,234231,433213 +1724217300,Microsoft,35652,76751 +1724217300,Mail.Ru,60225,56192 +1724217300,Yandex,69897,53304 +1724217300,Microsoft CryptoAPI,536,911 +1724217300,Office 365,7121,60097 +1724217300,Microsoft Windows Live Services Authentication,40219,104070 +1724217300,Google Hangouts,1505,1392 +1724217300,GISMETEO,2134,9233 +1724217300,Edge Chromium,587,2006 +1724217300,DNS over HTTPS,17872,55745 +1724217300,__unknown,68843,95888 +1724217300,VKontakte,158135,1380655 +1724217300,HTTPS,158135,1380655 +1724217300,SSL client,158135,1380655 +1724217300,ICMP,43460,0 +1724217300,HTTPS,6601,10800 +1724217300,__unknown,1175,658 +1724217300,HTTPS,20983,16825 +1724217300,ICMP,6630,5400 +1724217300,__unknown,4543721,8262949 +1724217300,BITS,3033,12605 +1724217300,BitTorrent,310,496 +1724217300,DHCPv6,163,0 +1724217300,Google APIs,10028,109809 +1724217300,Google,347404,285346 +1724217300,DNS,20311,0 +1724217300,Gmail,6322,8506 +1724217300,HTTP,4223,13622 +1724217300,NTP,1080,1080 +1724217300,SSL,797,7092 +1724217300,STUN,984,888 +1724217300,YouTube,3909,26659 +1724217300,VKontakte,123949,49949 +1724217300,Odnoklassniki,5424,15642 +1724217300,HTTPS,564823,587248 +1724217300,SSL client,499361,505626 +1724217300,Microsoft,3033,12605 +1724217300,Microsoft CryptoAPI,1190,1017 +1724217300,Google Play,1528,2623 +1724217300,Google Hangouts,797,7092 +1724217300,ICMP,14860,0 +1724217300,ICMP for IPv6,70,0 +1724217300,DNS over HTTPS,21926,63574 +1724217300,IPv6 No Next Header,98,0 +1724217300,__unknown,893677,1039159 +1724217300,BITS,2918,12057 +1724217300,BitTorrent,153,198 +1724217300,Google APIs,53486,62865 +1724217300,Google,59035,131159 +1724217300,BitTorrent tracker,153,198 +1724217300,DNS,45856,46223 +1724217300,Gmail,10047,6631 +1724217300,HTTP,102067,1039961 +1724217300,Launchpad,2560,1984 +1724217300,Microsoft Update,48712,956828 +1724217300,NetBIOS-dgm,250,0 +1724217300,NTP,13290,3450 +1724217300,YouTube,6669,21949 +1724217300,VKontakte,10140,35985 +1724217300,Odnoklassniki,2395,2278 +1724217300,Advanced Packaging Tool,30169,27759 +1724217300,Windows Update,47124,955510 +1724217300,HTTPS,247661,401228 +1724217300,Mozilla,7897,6114 +1724217300,Avast,448,457 +1724217300,SSL client,157873,297536 +1724217300,Ubuntu Update Manager,22278,20951 +1724217300,Microsoft,2918,12057 +1724217300,Yandex,5976,28976 +1724217300,Ubuntu,5756,5285 +1724217300,Microsoft CryptoAPI,2171,1817 +1724217300,Criteo,1961,5752 +1724217300,ICMP,1630,60 +1724217300,Telegram,913,511 +1724217300,Edge Chromium,6744,20873 +1724217300,DNS over HTTPS,68106,212880 +1724217300,IPv6 No Next Header,98,0 +1724217600,HTTPS,156286,699929 +1724217600,SSL client,156286,699929 +1724217600,Mail.Ru,156286,699929 +1724217600,__unknown,1484,2060 +1724217600,HTTPS,53755,63952 +1724217600,SSL client,53755,63952 +1724217600,Telegram,53755,63952 +1724217600,Google APIs,4054,14436 +1724217600,HTTPS,36121,37361 +1724217600,SSL client,24963,32716 +1724217600,Google Play,20909,18280 +1724217600,__unknown,49703,51676 +1724217600,Google APIs,43610,13983 +1724217600,Google,8395,4908 +1724217600,Gmail,2719,2147 +1724217600,Microsoft Update,92554,264036 +1724217600,TeamViewer,1458,8847 +1724217600,HTTPS,221109,368996 +1724217600,Avast,1254,8620 +1724217600,SSL client,181524,327274 +1724217600,Microsoft,14451,9005 +1724217600,Mail.Ru,11242,7458 +1724217600,Yandex,5841,8270 +1724217600,__unknown,450,180 +1724217600,Bing,1869,9269 +1724217600,MSN,3396,9441 +1724217600,HTTP,4401,10370 +1724217600,HTTPS,329863,622899 +1724217600,WhatsApp,3222,5682 +1724217600,Mozilla,2365,4857 +1724217600,SSL client,235320,365402 +1724217600,Amazon Web Services,3265,21542 +1724217600,Microsoft,46203,88954 +1724217600,Mail.Ru,152679,154726 +1724217600,Yandex,19853,51452 +1724217600,Google Update,4401,10370 +1724217600,Office 365,3430,15576 +1724217600,GISMETEO,2260,9585 +1724217600,DNS over HTTPS,1211,5459 +1724217600,__unknown,187,60 +1724217600,__unknown,187,228 +1724217600,HTTPS,28308,26937 +1724217600,HTTPS,31814,27109 +1724217600,__unknown,2253,7585 +1724217600,__unknown,24756,319304 +1724217600,Gmail,12193,10815 +1724217600,HTTPS,19695,98424 +1724217600,SSL client,12193,10815 +1724217600,ICMP,540,0 +1724217600,__unknown,429729,288497 +1724217600,BITS,3384,12554 +1724217600,BitTorrent,310,496 +1724217600,Google APIs,5274,37039 +1724217600,Google Drive,6040,9787 +1724217600,Google,24910,72446 +1724217600,DNS,20762,0 +1724217600,Gmail,22374,26629 +1724217600,HTTP,3384,12554 +1724217600,NetBIOS-dgm,243,0 +1724217600,NTP,13110,3360 +1724217600,SSL,2122,12679 +1724217600,STUN,2782,4078 +1724217600,YouTube,5559,7662 +1724217600,Odnoklassniki,5164,15297 +1724217600,HTTPS,129562,239204 +1724217600,Mozilla,2400,5126 +1724217600,SSL client,78698,206050 +1724217600,Microsoft,3384,12554 +1724217600,Google Play,1225,6626 +1724217600,Google Hangouts,2122,12679 +1724217600,ICMP,25871,0 +1724217600,Grammarly,1382,7822 +1724217600,DNS over HTTPS,36423,89176 +1724217600,__unknown,486455,291469 +1724217600,Apple Update,1798,4925 +1724217600,DHCPv6,1141,0 +1724217600,Google APIs,13327,73920 +1724217600,Google,49045,121367 +1724217600,Chrome,565,484 +1724217600,DNS,46889,42109 +1724217600,HTTP,65917,491572 +1724217600,Launchpad,2486,1984 +1724217600,NTP,11740,3000 +1724217600,SSL,1650,14064 +1724217600,STUN,82,74 +1724217600,YouTube,3589,21511 +1724217600,VKontakte,10878,35053 +1724217600,Advanced Packaging Tool,41030,438781 +1724217600,HTTPS,145484,393703 +1724217600,Mozilla,2758,1739 +1724217600,Avast,1146,1173 +1724217600,SSL client,94139,313722 +1724217600,Ubuntu Update Manager,33800,432518 +1724217600,Microsoft,573,7965 +1724217600,Yandex,8804,37901 +1724217600,Ubuntu,6019,5650 +1724217600,Microsoft CryptoAPI,1984,1719 +1724217600,Microsoft WNS,573,7965 +1724217600,Google Hangouts,1650,14064 +1724217600,ICMP,2474,0 +1724217600,Edge Chromium,7798,23594 +1724217600,Grammarly,1903,7403 +1724217600,DNS over HTTPS,42230,126912 +1724217900,__unknown,70320,81311 +1724217900,HTTPS,2114647,1399146 +1724217900,Telegram,2114647,1399146 +1724217900,SSL,10981,18793 +1724217900,SSL client,10981,18793 +1724217900,Google Hangouts,10981,18793 +1724217900,HTTPS,45687,63952 +1724217900,SSL client,45687,63952 +1724217900,Telegram,45687,63952 +1724217900,HTTPS,53855,63952 +1724217900,SSL client,53855,63952 +1724217900,Telegram,53855,63952 +1724217900,HTTPS,18662,238653 +1724217900,SSL client,15391,234842 +1724217900,Microsoft,12566,227584 +1724217900,Microsoft Teams,2825,7258 +1724217900,Google APIs,1987,6300 +1724217900,HTTPS,4569,8546 +1724217900,SSL client,1987,6300 +1724217900,__unknown,45139,32953 +1724217900,Google APIs,4731,7971 +1724217900,HTTPS,99753,110026 +1724217900,Mozilla,5937,5988 +1724217900,SSL client,35333,66060 +1724217900,Microsoft,10834,18305 +1724217900,uTorrent,11104,19578 +1724217900,Office 365,2727,14218 +1724217900,__unknown,12786,19077 +1724217900,Bing,7054,36863 +1724217900,Google APIs,2565,6658 +1724217900,Google,107632,114735 +1724217900,HTTP,600,382 +1724217900,Microsoft Update,600,382 +1724217900,Skype,3254,7019 +1724217900,TeamViewer,866,5289 +1724217900,Steam,2580,5245 +1724217900,HTTPS,555870,867377 +1724217900,Apple sites,2213,8775 +1724217900,Avast,2376,16492 +1724217900,SSL client,384540,510120 +1724217900,CloudFront,3772,1093 +1724217900,Microsoft,43964,54810 +1724217900,Mail.Ru,117108,124187 +1724217900,Yandex,23355,22329 +1724217900,Microsoft CryptoAPI,600,382 +1724217900,Google Play,47792,51829 +1724217900,Exchange Online,1257,8065 +1724217900,Office 365,6886,16473 +1724217900,Sharepoint Online,3505,8619 +1724217900,Microsoft Windows Live Services Authentication,8361,21639 +1724217900,Telegram,2060,7510 +1724217900,DNS over HTTPS,3980,13909 +1724217900,ICMP,5074,0 +1724217900,ICMP,4510,0 +1724217900,ICMP,5076,0 +1724217900,__unknown,1086,1610 +1724217900,HTTP,1206,833 +1724217900,HTTPS,3369,5460 +1724217900,__unknown,4750,35144 +1724217900,HTTPS,13263,19349 +1724217900,ICMP,6730,0 +1724217900,__unknown,440898,1404811 +1724217900,BitTorrent,310,496 +1724217900,Google APIs,2205,6891 +1724217900,Google,26530,57610 +1724217900,Google Translate,4186,8148 +1724217900,DNS,14030,0 +1724217900,Gmail,6590,8072 +1724217900,HTTP,560,462 +1724217900,NTP,12504,3360 +1724217900,STUN,984,888 +1724217900,YouTube,2637,13314 +1724217900,Odnoklassniki,5224,15424 +1724217900,HTTPS,72203,138063 +1724217900,Mozilla,2615,1712 +1724217900,SSL client,60699,125689 +1724217900,Mail.Ru,8422,6630 +1724217900,Microsoft CryptoAPI,560,462 +1724217900,ICMP,3700,0 +1724217900,Grammarly,2290,7888 +1724217900,DNS over HTTPS,4525,15135 +1724217900,IPv6 No Next Header,98,0 +1724217900,__unknown,333371,495084 +1724217900,BitTorrent,153,537 +1724217900,DHCPv6,978,0 +1724217900,Google APIs,16920,43240 +1724217900,Google Drive,4224,12143 +1724217900,Google,492,606 +1724217900,BitTorrent tracker,153,537 +1724217900,DNS,45529,44009 +1724217900,HTTP,73166,995544 +1724217900,Launchpad,2486,1984 +1724217900,Microsoft Update,695,771 +1724217900,NTP,1710,1620 +1724217900,VKontakte,2383,5590 +1724217900,Steam,757,6530 +1724217900,Advanced Packaging Tool,46935,938862 +1724217900,HTTPS,98440,214775 +1724217900,Avast,1057,9382 +1724217900,SSL client,31598,81745 +1724217900,Ubuntu Update Manager,40244,933096 +1724217900,Yandex,7022,17477 +1724217900,Ubuntu,5480,5161 +1724217900,Microsoft CryptoAPI,1147,965 +1724217900,ICMP,1452,0 +1724217900,Telegram,2117,1496 +1724217900,Edge Chromium,9774,29629 +1724217900,DNS over HTTPS,89045,285535 +1724218200,__unknown,39040,38010 +1724218200,Gmail,11814,23067 +1724218200,IMAPS,11814,23067 +1724218200,SSL client,11814,23067 +1724218200,Google,192500,277645 +1724218200,HTTPS,1913036,34658868 +1724218200,SSL client,192500,277645 +1724218200,__unknown,1244,1838 +1724218200,__unknown,118537,3245218 +1724218200,HTTPS,2977,1540 +1724218200,__unknown,46812,54221 +1724218200,HTTPS,20439,32455 +1724218200,HTTPS,33181,38040 +1724218200,SSL client,22234,24128 +1724218200,Google Play,22234,24128 +1724218200,__unknown,25580,36843 +1724218200,HTTPS,92219,152644 +1724218200,Avast,1254,9906 +1724218200,SSL client,29386,65905 +1724218200,Microsoft,12719,21986 +1724218200,Google Play,10920,8722 +1724218200,Office 365,4493,25291 +1724218200,__unknown,76481,42940 +1724218200,Bing,1988,9269 +1724218200,MSN,9322,33991 +1724218200,Adobe Software,4290,24433 +1724218200,Dell,1111,4305 +1724218200,Gmail,5874,7179 +1724218200,HTTP,1885,1922 +1724218200,iTunes,6709,80362 +1724218200,Microsoft Update,611,636 +1724218200,Skype,2089,87273 +1724218200,SSL,2326,2411 +1724218200,Odnoklassniki,5520,10173 +1724218200,Advanced Packaging Tool,1274,1286 +1724218200,IMAPS,5874,7179 +1724218200,HTTPS,646455,1582713 +1724218200,WhatsApp,1917,5921 +1724218200,Apple sites,1869,11971 +1724218200,Mozilla,2141,4639 +1724218200,Avast,1254,8268 +1724218200,SSL client,505696,1179538 +1724218200,Ubuntu Update Manager,1274,1286 +1724218200,Microsoft,47391,92055 +1724218200,Mail.Ru,324765,518550 +1724218200,Yandex,14239,51987 +1724218200,Microsoft CryptoAPI,611,636 +1724218200,Apple Maps,2792,7070 +1724218200,Google Play,1798,2225 +1724218200,Exchange Online,1197,8005 +1724218200,Office 365,22682,64171 +1724218200,Microsoft Windows Live Services Authentication,42619,109682 +1724218200,OneDrive,2477,11410 +1724218200,Telegram,661,289 +1724218200,AnyDesk,2326,2411 +1724218200,Google Inbox,6361,39590 +1724218200,DNS over HTTPS,3604,9674 +1724218200,HTTPS,53476,63863 +1724218200,SSL client,53476,63863 +1724218200,Telegram,53476,63863 +1724218200,ICMP,9540,9780 +1724218200,__unknown,203,1122 +1724218200,__unknown,9552,13266 +1724218200,HTTPS,8957,8819 +1724218200,__unknown,860,424 +1724218200,HTTPS,32188,16729 +1724218200,__unknown,3153,1666 +1724218200,Google,11631,17755 +1724218200,HTTP,1313,20615 +1724218200,SSL,1686,3624 +1724218200,HTTPS,11631,17755 +1724218200,SSL client,13317,21379 +1724218200,Google Hangouts,1686,3624 +1724218200,ICMP,4446,4140 +1724218200,__unknown,464888,781483 +1724218200,BitTorrent,310,496 +1724218200,DHCPv6,163,0 +1724218200,Google APIs,32446,22164 +1724218200,Google,66300,115604 +1724218200,DNS,18331,0 +1724218200,Gmail,46036,181274 +1724218200,HTTP,3641,2771 +1724218200,Launchpad,640,496 +1724218200,Microsoft Update,1627,1318 +1724218200,NetBIOS-dgm,250,0 +1724218200,NTP,12570,2820 +1724218200,STUN,2844,4188 +1724218200,Advanced Packaging Tool,1275,996 +1724218200,HTTPS,211311,462805 +1724218200,SSL client,169539,358472 +1724218200,Yandex,1253,847 +1724218200,Ubuntu,635,500 +1724218200,Microsoft CryptoAPI,1627,1318 +1724218200,Apple Maps,2781,6962 +1724218200,Google Play,11312,10429 +1724218200,ICMP,8436,1320 +1724218200,Grammarly,2191,7888 +1724218200,DNS over HTTPS,11148,30822 +1724218200,Google Meet,7693,15274 +1724218200,IPv6 No Next Header,98,0 +1724218200,__unknown,195265,358143 +1724218200,BITS,1710,14469 +1724218200,GACP,630,540 +1724218200,Google APIs,22076,60888 +1724218200,Google,8423,22776 +1724218200,DNS,50890,44707 +1724218200,Firefox,822,1130 +1724218200,Gmail,680,757 +1724218200,HTTP,89532,648596 +1724218200,Launchpad,3200,2414 +1724218200,Microsoft Update,30922,418965 +1724218200,NetBIOS-dgm,243,0 +1724218200,NTP,14100,4350 +1724218200,SSL,795,7033 +1724218200,Advanced Packaging Tool,32150,155286 +1724218200,Windows Update,24663,413565 +1724218200,IMAPS,680,757 +1724218200,HTTPS,112991,323399 +1724218200,Mozilla,1038,3914 +1724218200,Avast,770,848 +1724218200,SSL client,48090,138231 +1724218200,Ubuntu Update Manager,24631,149054 +1724218200,Microsoft,4186,15726 +1724218200,Yandex,8740,25120 +1724218200,Ubuntu,5594,5197 +1724218200,Microsoft CryptoAPI,6773,5581 +1724218200,Microsoft WNS,633,7968 +1724218200,Apple Maps,2552,5380 +1724218200,Office 365,2778,16425 +1724218200,Google Hangouts,795,7033 +1724218200,ICMP,2826,0 +1724218200,Telegram,2025,7361 +1724218200,Edge Chromium,9379,27691 +1724218200,DNS over TLS,4646,19080 +1724218200,DNS over HTTPS,91215,283359 +1724218200,IPv6 No Next Header,98,0 +1724218500,__unknown,150348,125560 +1724218500,HTTPS,117403,137916 +1724218500,HTTPS,45885,63952 +1724218500,SSL client,45885,63952 +1724218500,Telegram,45885,63952 +1724218500,HTTPS,30572,50887 +1724218500,HTTPS,19948,8564 +1724218500,SSL,1901,8974 +1724218500,HTTPS,79972,31460 +1724218500,SSL client,81873,40434 +1724218500,Google Play,79972,31460 +1724218500,Google Hangouts,1901,8974 +1724218500,__unknown,40949,22212 +1724218500,Bing,11274,665347 +1724218500,Google,5341,5008 +1724218500,MSN,32348,172937 +1724218500,HTTPS,219301,1563409 +1724218500,Avast,1320,9063 +1724218500,SSL client,69940,898787 +1724218500,Microsoft,5572,10013 +1724218500,Mail.Ru,2323,6161 +1724218500,Yandex,10012,23071 +1724218500,Office 365,1750,7187 +1724218500,__unknown,41544,31077 +1724218500,Google,142931,133673 +1724218500,HTTP,1148,716 +1724218500,Microsoft Update,69155,105173 +1724218500,Odnoklassniki,5520,10173 +1724218500,Advanced Packaging Tool,527,530 +1724218500,HTTPS,590087,1061955 +1724218500,WhatsApp,3162,5651 +1724218500,SSL client,534483,892781 +1724218500,Amazon Web Services,3325,21602 +1724218500,Microsoft,51829,116750 +1724218500,Mail.Ru,147953,156906 +1724218500,Yandex,65605,72738 +1724218500,Ubuntu,527,530 +1724218500,Asus,1349,10204 +1724218500,Google Play,16436,17930 +1724218500,Office 365,10874,198261 +1724218500,Microsoft Windows Live Services Authentication,16080,23194 +1724218500,DNS over HTTPS,1055,5313 +1724218500,Discord,1175,6469 +1724218500,DeepL Translator,2251,19708 +1724218500,HTTPS,32051,41696 +1724218500,SSL client,9338,13170 +1724218500,DNS over HTTPS,9338,13170 +1724218500,__unknown,5814,3420 +1724218500,__unknown,6247,132193 +1724218500,ICMP,738,0 +1724218500,__unknown,3461,5630 +1724218500,Google,16601,19530 +1724218500,HTTPS,29049,30280 +1724218500,SSL client,25747,24804 +1724218500,Google Play,9146,5274 +1724218500,ICMP,1020,0 +1724218500,__unknown,458742,745113 +1724218500,BitTorrent,310,496 +1724218500,DHCPv6,978,0 +1724218500,GACP,90,90 +1724218500,Google APIs,5593,18440 +1724218500,Google Drive,7409,10317 +1724218500,Google,17396,44427 +1724218500,DNS,15950,0 +1724218500,Gmail,6377,8702 +1724218500,HTTP,2513,2218 +1724218500,NTP,900,900 +1724218500,STUN,984,888 +1724218500,YouTube,4670,11056 +1724218500,HTTPS,76678,160057 +1724218500,Mozilla,1876,4611 +1724218500,SSL client,45509,102501 +1724218500,Microsoft CryptoAPI,2513,2218 +1724218500,ICMP,4910,0 +1724218500,DNS over HTTPS,7965,22401 +1724218500,__unknown,215106,420635 +1724218500,BitTorrent,153,198 +1724218500,DHCPv6,163,0 +1724218500,Google APIs,14726,29930 +1724218500,Google,27161,98968 +1724218500,BitTorrent tracker,153,198 +1724218500,Chrome,3955,3388 +1724218500,DNS,50900,49403 +1724218500,Gmail,10660,45859 +1724218500,HTTP,57234,75127 +1724218500,Launchpad,3200,2480 +1724218500,Microsoft Update,2579,2025 +1724218500,NTP,13020,3270 +1724218500,Advanced Packaging Tool,30476,28129 +1724218500,HTTPS,96852,432835 +1724218500,Avast,382,391 +1724218500,SSL client,65336,228348 +1724218500,Ubuntu Update Manager,21849,20771 +1724218500,Mail.Ru,1204,4991 +1724218500,Yandex,7308,34400 +1724218500,Ubuntu,6702,6315 +1724218500,Microsoft CryptoAPI,4927,4037 +1724218500,ICMP,810,0 +1724218500,Edge Chromium,7738,23644 +1724218500,DNS over TLS,4382,19083 +1724218500,DNS over HTTPS,15484,58038 +1724218500,IPv6 No Next Header,98,0 +1724218800,__unknown,73168,95242 +1724218800,DNS over HTTPS,151207,351157 +1724218800,HTTPS,517927,129661 +1724218800,SSL client,517927,129661 +1724218800,Mail.Ru,517927,129661 +1724218800,Windows Live,44335,10579 +1724218800,HTTPS,44335,10579 +1724218800,SSL client,44335,10579 +1724218800,HTTPS,34725,45671 +1724218800,SSL client,34725,45671 +1724218800,Telegram,34725,45671 +1724218800,HTTPS,10194,19681 +1724218800,SSL client,10194,19681 +1724218800,Telegram,10194,19681 +1724218800,Skype,3976,8741 +1724218800,HTTPS,94671,318139 +1724218800,SSL client,94671,318139 +1724218800,Microsoft,13189,234111 +1724218800,Google Play,23097,13251 +1724218800,Telegram,54409,62036 +1724218800,Google APIs,2087,7358 +1724218800,HTTPS,25726,30566 +1724218800,SSL client,2087,7358 +1724218800,__unknown,5464,13455 +1724218800,Dropbox,1670,1358 +1724218800,Gmail,6018,3909 +1724218800,TeamViewer,1510,8838 +1724218800,HTTPS,94712,109264 +1724218800,Mozilla,2241,4799 +1724218800,SSL client,60049,70073 +1724218800,Microsoft,11825,40942 +1724218800,Mail.Ru,7974,6429 +1724218800,Yandex,28811,3798 +1724218800,__unknown,11050,10041 +1724218800,Google,481226,521340 +1724218800,MSN,4338,14945 +1724218800,Skype,5557,86001 +1724218800,Odnoklassniki,1840,3391 +1724218800,Steam,10947,25198 +1724218800,HTTPS,1032079,1363612 +1724218800,Apple sites,1679,7001 +1724218800,iCloud,2203,11506 +1724218800,SSL client,937407,1183252 +1724218800,Amazon Web Services,3265,21542 +1724218800,Microsoft,25847,47234 +1724218800,Mail.Ru,157543,183475 +1724218800,Yandex,185642,202696 +1724218800,Google Play,38593,25398 +1724218800,Office 365,6088,23484 +1724218800,Grammarly,12639,10041 +1724218800,__unknown,10626,8976 +1724218800,HTTPS,16203,22425 +1724218800,SSL client,16203,22425 +1724218800,DNS over HTTPS,16203,22425 +1724218800,Windows Live,8404,29021 +1724218800,HTTPS,44729,63428 +1724218800,SSL client,8404,29021 +1724218800,__unknown,736,380 +1724218800,ICMP,3120,3240 +1724218800,__unknown,3194,1952 +1724218800,ICMP,848,0 +1724218800,DNS over HTTPS,52495,124004 +1724218800,__unknown,303347,273642 +1724218800,BitTorrent,310,496 +1724218800,Google APIs,8468,62664 +1724218800,Google,52203,81605 +1724218800,Google Translate,4246,8088 +1724218800,DNS,21704,0 +1724218800,Gmail,13338,33340 +1724218800,HTTP,1292,1035 +1724218800,Microsoft Update,1292,1035 +1724218800,NetBIOS-dgm,250,0 +1724218800,NTP,810,810 +1724218800,Odnoklassniki,5582,10611 +1724218800,HTTPS,114846,261570 +1724218800,SSL client,85999,204041 +1724218800,Microsoft CryptoAPI,1292,1035 +1724218800,ICMP,2948,0 +1724218800,Grammarly,2162,7733 +1724218800,DNS over HTTPS,7669,24370 +1724218800,IPv6 No Next Header,98,0 +1724218800,__unknown,303188,503711 +1724218800,DHCPv6,978,0 +1724218800,Google APIs,6102,15170 +1724218800,Google,18446,43182 +1724218800,Chrome,1695,1452 +1724218800,DNS,53998,47213 +1724218800,HTTP,76827,484996 +1724218800,Launchpad,3200,2480 +1724218800,Microsoft Update,20477,351101 +1724218800,NTP,25410,5910 +1724218800,SSL,855,7033 +1724218800,STUN,984,888 +1724218800,TFTP,60,0 +1724218800,Steam,2757,49280 +1724218800,Advanced Packaging Tool,31611,29099 +1724218800,Windows Update,19782,350327 +1724218800,HTTPS,89737,233351 +1724218800,Avast,382,391 +1724218800,SSL client,39533,102454 +1724218800,Ubuntu Update Manager,24901,23403 +1724218800,Microsoft,3021,24621 +1724218800,Yandex,13061,34957 +1724218800,Ubuntu,5635,5509 +1724218800,Microsoft CryptoAPI,1761,1490 +1724218800,Microsoft NCSI,985,974 +1724218800,Microsoft WNS,1326,15930 +1724218800,Google Hangouts,855,7033 +1724218800,ICMP,1638,0 +1724218800,Edge Chromium,5223,17416 +1724218800,DNS over HTTPS,17166,50407 +1724219099,__unknown,6014,3312 +1724219099,HTTPS,45819,63952 +1724219099,SSL client,45819,63952 +1724219099,Telegram,45819,63952 +1724219099,HTTPS,53379,63952 +1724219099,SSL client,53379,63952 +1724219099,Telegram,53379,63952 +1724219099,__unknown,360,7635 +1724219099,HTTPS,7296,10454 +1724219099,Google APIs,2147,7310 +1724219099,HTTPS,33236,286631 +1724219099,SSL client,22985,25877 +1724219099,Google Play,20838,18567 +1724219099,DNS over HTTPS,5009,13592 +1724219099,__unknown,2091,3018 +1724219099,MSN,2069,13768 +1724219099,HTTPS,108537,3638875 +1724219099,Avast,1254,8882 +1724219099,SSL client,88722,3610020 +1724219099,Microsoft,51591,3508654 +1724219099,Mail.Ru,11910,13121 +1724219099,Yandex,4949,7968 +1724219099,Office 365,11872,53486 +1724219099,Google Sign in,5077,4141 +1724219099,__unknown,25260,239037 +1724219099,Bing,3337,6420 +1724219099,Dropbox,5403,2733 +1724219099,Google APIs,3028,2213 +1724219099,MSN,8744,15697 +1724219099,Gmail,1503,1494 +1724219099,HTTP,3663,2782 +1724219099,SSL,2809,12994 +1724219099,Odnoklassniki,9200,16955 +1724219099,Advanced Packaging Tool,635,569 +1724219099,IMAPS,1503,1494 +1724219099,HTTPS,627867,2255050 +1724219099,WhatsApp,1857,5981 +1724219099,Avast,1254,9474 +1724219099,SSL client,484102,2005051 +1724219099,Amazon Web Services,3319,21430 +1724219099,Microsoft,148962,97749 +1724219099,Mail.Ru,177406,239592 +1724219099,Yandex,77415,127919 +1724219099,GitHub,1586,6063 +1724219099,Ubuntu,635,569 +1724219099,Google Update,3028,2213 +1724219099,Exchange Online,2690,15107 +1724219099,Office 365,30179,1406215 +1724219099,Microsoft Windows Live Services Authentication,8268,21871 +1724219099,GISMETEO,2194,9308 +1724219099,Grammarly,2642,7024 +1724219099,DNS over HTTPS,6898,26250 +1724219099,CoAP,8036,6120 +1724219099,__unknown,187,228 +1724219099,ICMP,1640,0 +1724219099,__unknown,15263,299412 +1724219099,HTTP,499,457 +1724219099,__unknown,2326,1685 +1724219099,HTTPS,42720,99437 +1724219099,ICMP,328,0 +1724219099,__unknown,1130915,816328 +1724219099,BitTorrent,310,434 +1724219099,DHCPv6,163,0 +1724219099,Google APIs,2799,9045 +1724219099,Google,5069,14563 +1724219099,DNS,27590,0 +1724219099,Gmail,14643,21868 +1724219099,HTTP,2215,1855 +1724219099,Microsoft Update,1041,849 +1724219099,NetBIOS-dgm,243,0 +1724219099,NTP,360,360 +1724219099,SSL,797,7092 +1724219099,STUN,1612,2860 +1724219099,VKontakte,2577,5518 +1724219099,HTTPS,80747,447041 +1724219099,Mozilla,2467,5186 +1724219099,SSL client,42946,77382 +1724219099,Yandex,1247,907 +1724219099,Microsoft CryptoAPI,2215,1855 +1724219099,Google Play,8717,5276 +1724219099,Google Hangouts,797,7092 +1724219099,ICMP,16328,5760 +1724219099,Google Sign in,4630,7927 +1724219099,DNS over HTTPS,36853,88914 +1724219099,IPv6 No Next Header,98,0 +1724219099,__unknown,439475,471336 +1724219099,Bing,5690,27231 +1724219099,BitTorrent,153,537 +1724219099,DHCPv6,978,0 +1724219099,Google APIs,10054,66917 +1724219099,Google,46347,86085 +1724219099,BitTorrent tracker,153,537 +1724219099,DNS,53616,49867 +1724219099,Gmail,2567,11101 +1724219099,HTTP,59681,258471 +1724219099,Launchpad,1920,1488 +1724219099,Microsoft Update,872,13970 +1724219099,NTP,1530,1530 +1724219099,SSL,5768,30261 +1724219099,STUN,984,666 +1724219099,Steam,9667,181151 +1724219099,Advanced Packaging Tool,27115,24639 +1724219099,IMAPS,2567,11101 +1724219099,HTTPS,300117,24250575 +1724219099,Avast,764,782 +1724219099,SSL client,228187,24158372 +1724219099,Ubuntu Update Manager,22278,20891 +1724219099,Yandex,157908,23937882 +1724219099,Ubuntu,5109,4561 +1724219099,Microsoft CryptoAPI,3158,16575 +1724219099,Microsoft NCSI,1225,1453 +1724219099,Google Hangouts,4309,25773 +1724219099,ICMP,1532,0 +1724219099,Edge Chromium,4636,15463 +1724219099,DNS over HTTPS,18828,50303 +1724219099,Lenovo,985,7525 +1724219400,__unknown,542,524 +1724219400,HTTPS,29680,47805 +1724219400,HTTPS,3301,2101 +1724219400,__unknown,17574,16968 +1724219400,HTTPS,2288,5925 +1724219400,SSL client,2288,5925 +1724219400,Google Play,2288,5925 +1724219400,__unknown,10404,11358 +1724219400,Dropbox,3402,2538 +1724219400,MSN,2805,1901 +1724219400,HTTP,2127,2712 +1724219400,HTTPS,51716,118570 +1724219400,Mozilla,2209,4759 +1724219400,Avast,2376,17195 +1724219400,SSL client,29926,90560 +1724219400,Microsoft,14550,24232 +1724219400,VeriSign,1075,1826 +1724219400,Yandex,2493,1826 +1724219400,Microsoft CryptoAPI,2127,2712 +1724219400,Office 365,2091,38109 +1724219400,__unknown,50563,20735 +1724219400,Google APIs,144761,48868 +1724219400,Google,95484,166308 +1724219400,MSN,6218,39355 +1724219400,HTTP,2312,3716 +1724219400,Odnoklassniki,7360,13564 +1724219400,Advanced Packaging Tool,1681,1490 +1724219400,HTTPS,814126,1128148 +1724219400,WhatsApp,3225,5622 +1724219400,SSL client,762452,1032165 +1724219400,Ubuntu Update Manager,1681,1490 +1724219400,Microsoft,165898,65561 +1724219400,Mail.Ru,285954,533667 +1724219400,Yandex,14613,48979 +1724219400,Microsoft CryptoAPI,631,2226 +1724219400,Exchange Online,2634,12934 +1724219400,Office 365,33664,82076 +1724219400,GISMETEO,2194,9308 +1724219400,Grammarly,4303,13771 +1724219400,DNS over HTTPS,3853,13300 +1724219400,HTTPS,39611,17674 +1724219400,HTTP,643,408 +1724219400,__unknown,4903,135720 +1724219400,__unknown,27056,23519 +1724219400,HTTPS,7856,10815 +1724219400,ICMP,6234,0 +1724219400,__unknown,558345,496897 +1724219400,Bing,14765,619117 +1724219400,BitTorrent,310,496 +1724219400,DHCPv6,163,0 +1724219400,Google APIs,6593,9869 +1724219400,Google,53119,76043 +1724219400,DNS,19978,260 +1724219400,Gmail,9829,12277 +1724219400,HTTP,5454,20009 +1724219400,Microsoft Update,3035,10847 +1724219400,NTP,24960,5460 +1724219400,Odnoklassniki,5583,10507 +1724219400,HTTPS,174807,879757 +1724219400,SSL client,107934,743826 +1724219400,VeriSign,566,2141 +1724219400,Microsoft CryptoAPI,5454,20009 +1724219400,ICMP,7938,1680 +1724219400,Trello,11963,12013 +1724219400,Google Sign in,6082,4000 +1724219400,DNS over HTTPS,18630,48481 +1724219400,__unknown,288170,301761 +1724219400,Apple Update,191989,5409975 +1724219400,Google APIs,5280,52790 +1724219400,Google,16875,35758 +1724219400,Google Translate,3604,7447 +1724219400,QQ,678,343 +1724219400,DNS,41671,40888 +1724219400,HTTP,83533,1532304 +1724219400,Internet Explorer,678,343 +1724219400,Launchpad,3200,2480 +1724219400,Microsoft Update,4166,3496 +1724219400,NetBIOS-dgm,250,0 +1724219400,NTP,12100,2649 +1724219400,STUN,2844,4188 +1724219400,Odnoklassniki,2035,6765 +1724219400,Steam,581,523 +1724219400,Advanced Packaging Tool,29090,26505 +1724219400,HTTPS,274901,5629239 +1724219400,Avast,2698,9698 +1724219400,SSL client,232329,5549402 +1724219400,Ubuntu Update Manager,21685,20243 +1724219400,Microsoft,28441,1375504 +1724219400,VeriSign,1580,85346 +1724219400,Yandex,10094,32610 +1724219400,Ubuntu,5546,5157 +1724219400,Microsoft CryptoAPI,8834,92685 +1724219400,Microsoft WNS,573,7965 +1724219400,ICMP,1270,0 +1724219400,Edge Chromium,4636,15414 +1724219400,DNS over TLS,1211,4770 +1724219400,DNS over HTTPS,7867,21439 +1724219400,IPv6 No Next Header,98,0 +1724219700,__unknown,85578,71638 +1724219700,HTTPS,76345,88629 +1724219700,TwitchTV,1257849,62375 +1724219700,HTTPS,1257849,62375 +1724219700,SSL client,1257849,62375 +1724219700,DNS over HTTPS,193743,435529 +1724219700,HTTPS,4729,3537 +1724219700,Windows Live,9626,10279 +1724219700,HTTPS,9626,10279 +1724219700,SSL client,9626,10279 +1724219700,HTTPS,53723,70127 +1724219700,SSL client,53723,70127 +1724219700,Telegram,53723,70127 +1724219700,HTTPS,3057,3894 +1724219700,__unknown,48697,49468 +1724219700,Windows Live,28218,7288 +1724219700,HTTPS,111102,334597 +1724219700,SSL client,95260,297621 +1724219700,Microsoft,12573,228297 +1724219700,Telegram,54469,62036 +1724219700,Google APIs,4604,12477 +1724219700,HTTPS,6502,16358 +1724219700,SSL client,4604,12477 +1724219700,__unknown,57435,34524 +1724219700,MSN,1324,6137 +1724219700,Odnoklassniki,3067,8221 +1724219700,HTTPS,229965,5029993 +1724219700,Avast,1254,8252 +1724219700,SSL client,34000,72764 +1724219700,Microsoft,7793,20360 +1724219700,Mail.Ru,10538,7201 +1724219700,Yandex,4028,6077 +1724219700,Apple Maps,2768,6529 +1724219700,Google Play,4067,8728 +1724219700,Office 365,1929,7788 +1724219700,__unknown,900740,755512 +1724219700,Bing,3416,6423 +1724219700,Google APIs,3672,17100 +1724219700,Google,4022377,1996455 +1724219700,Skype,3308,7884 +1724219700,SSL,4268,6864 +1724219700,Odnoklassniki,3680,6782 +1724219700,HTTPS,4278737,2646921 +1724219700,Apple sites,4586,22106 +1724219700,iCloud,3645,9462 +1724219700,Mozilla,2141,4759 +1724219700,Avast,2964,16054 +1724219700,SSL client,4223268,2521948 +1724219700,Amazon Web Services,3505,21602 +1724219700,Microsoft,46749,170157 +1724219700,Mail.Ru,79345,84450 +1724219700,Yandex,11643,41979 +1724219700,Nvidia,1332,5631 +1724219700,Google Play,6057,2320 +1724219700,Office 365,7330,84743 +1724219700,Hola,4268,6864 +1724219700,Office Mobile,11116,7869 +1724219700,GISMETEO,2134,9308 +1724219700,DNS over HTTPS,3201,12011 +1724219700,__unknown,101483,3197828 +1724219700,HTTPS,17503,22595 +1724219700,__unknown,7029,9474 +1724219700,Google,17527,20197 +1724219700,Chrome,1678,3971 +1724219700,HTTP,1678,3971 +1724219700,HTTPS,21854,28160 +1724219700,SSL client,17527,20197 +1724219700,__unknown,2912,1698 +1724219700,Google,20798,20169 +1724219700,HTTPS,50159,46966 +1724219700,SSL client,20798,20169 +1724219700,ICMP,1550,0 +1724219700,DNS over HTTPS,3454,9967 +1724219700,CoAP,1862,1440 +1724219700,__unknown,448228,451596 +1724219700,BitTorrent,310,496 +1724219700,Google APIs,15997,23130 +1724219700,Google,48523,88357 +1724219700,Google Translate,4186,8085 +1724219700,Chrome,1335,869 +1724219700,DNS,14881,0 +1724219700,HTTP,1976,1376 +1724219700,Microsoft Update,641,507 +1724219700,NetBIOS-dgm,243,0 +1724219700,NTP,13380,3630 +1724219700,YouTube,6985,13112 +1724219700,VKontakte,5441,11830 +1724219700,Odnoklassniki,5522,10507 +1724219700,HTTPS,149777,275176 +1724219700,SSL client,95083,166941 +1724219700,Microsoft CryptoAPI,641,507 +1724219700,ICMP,22037,1800 +1724219700,Google Sign in,6228,4191 +1724219700,Grammarly,2201,7729 +1724219700,DNS over HTTPS,40990,100989 +1724219700,IPv6 No Next Header,196,0 +1724219700,__unknown,340841,268106 +1724219700,BitTorrent,153,198 +1724219700,DHCPv6,978,0 +1724219700,Google,20777,74242 +1724219700,QQ,678,343 +1724219700,BitTorrent tracker,153,198 +1724219700,DNS,43466,44553 +1724219700,HTTP,296432,8230587 +1724219700,Internet Explorer,678,343 +1724219700,Launchpad,3200,2480 +1724219700,Microsoft Update,1924,1679 +1724219700,NTP,5860,1995 +1724219700,STUN,984,666 +1724219700,YouTube,3196,13561 +1724219700,Steam,4725,60403 +1724219700,Advanced Packaging Tool,37089,275341 +1724219700,HTTPS,88860,204876 +1724219700,iCloud,23964,23363 +1724219700,Avast,764,782 +1724219700,SSL client,57662,146385 +1724219700,Ubuntu Update Manager,29049,268513 +1724219700,Microsoft,227220,7853094 +1724219700,VeriSign,1132,4282 +1724219700,Yandex,4365,19853 +1724219700,Ubuntu,6771,6328 +1724219700,Microsoft CryptoAPI,12473,16391 +1724219700,ICMP,3456,60 +1724219700,Edge Chromium,2755,8106 +1724219700,DNS over TLS,2158,9542 +1724219700,DNS over HTTPS,25806,88550 +1724220000,__unknown,184258,99568 +1724220000,__unknown,61506,51858 +1724220000,Google,30792,44333 +1724220000,HTTPS,30792,44333 +1724220000,SSL client,30792,44333 +1724220000,HTTPS,204470,73677 +1724220000,HTTPS,102419,454830 +1724220000,SSL client,102419,454830 +1724220000,Mail.Ru,102419,454830 +1724220000,HTTPS,3095,1561 +1724220000,HTTPS,8438,3849 +1724220000,__unknown,91449,306532 +1724220000,Windows Live,26952,11390 +1724220000,HTTPS,101940,290685 +1724220000,Mozilla,5620,5693 +1724220000,Avast,1254,9010 +1724220000,SSL client,69535,251733 +1724220000,Microsoft,19289,41496 +1724220000,Mail.Ru,5526,16543 +1724220000,Yandex,10894,167601 +1724220000,__unknown,464162,218370 +1724220000,Google,69620,84564 +1724220000,MSN,13870,32768 +1724220000,Dell,1111,4307 +1724220000,HTTP,2604,7135 +1724220000,Microsoft Update,98773,10553 +1724220000,Skype,2655,14097 +1724220000,Odnoklassniki,7360,13504 +1724220000,HTTPS,3425381,82612355 +1724220000,WhatsApp,1573,5617 +1724220000,Apple sites,3801,9448 +1724220000,Mozilla,2207,4639 +1724220000,Avast,2136,11590 +1724220000,SSL client,3267416,82027374 +1724220000,Amazon Web Services,3265,21602 +1724220000,Microsoft,48699,302149 +1724220000,Mail.Ru,122577,169491 +1724220000,Yandex,2872405,81301595 +1724220000,Microsoft CryptoAPI,1630,6613 +1724220000,Office 365,3088,12059 +1724220000,Office Mobile,11056,7870 +1724220000,GISMETEO,1999,2875 +1724220000,DNS over HTTPS,817,4584 +1724220000,Adobe Update,2794,24263 +1724220000,ICMP,10004,0 +1724220000,DNS over HTTPS,35451,76743 +1724220000,__unknown,784,364 +1724220000,DNS over HTTPS,66575,167429 +1724220000,__unknown,7218,14699 +1724220000,Gmail,35296,23468 +1724220000,HTTPS,50849,44585 +1724220000,Avast,7561,2841 +1724220000,SSL client,42857,26309 +1724220000,__unknown,507634,486730 +1724220000,BitTorrent,310,496 +1724220000,DHCPv6,163,0 +1724220000,Google APIs,2692,8478 +1724220000,Google,135303,179182 +1724220000,DNS,18027,0 +1724220000,NTP,810,810 +1724220000,STUN,1860,3190 +1724220000,Odnoklassniki,2546,7422 +1724220000,HTTPS,256214,355441 +1724220000,Mozilla,1996,4611 +1724220000,SSL client,205180,229349 +1724220000,Yandex,1253,907 +1724220000,Atlassian,44077,13324 +1724220000,Google Play,11229,11190 +1724220000,ICMP,3167,60 +1724220000,Google Sign in,6084,4235 +1724220000,DNS over HTTPS,12019,34645 +1724220000,IPv6 No Next Header,98,0 +1724220000,CoAP,1176,864 +1724220000,__unknown,364698,872710 +1724220000,BITS,1857,4511 +1724220000,DHCPv6,978,0 +1724220000,Google APIs,67825,64285 +1724220000,Google,9078,28930 +1724220000,QQ,1092,1926 +1724220000,DNS,47631,43066 +1724220000,HTTP,54902,470646 +1724220000,Internet Explorer,1426,1003 +1724220000,Launchpad,3274,2348 +1724220000,Microsoft Update,4551,366711 +1724220000,NTP,13020,3270 +1724220000,SSL,787,5589 +1724220000,STUN,984,888 +1724220000,Steam,2260,36054 +1724220000,Advanced Packaging Tool,26861,24253 +1724220000,HTTPS,197879,626287 +1724220000,Apple sites,2210,15296 +1724220000,Avast,1818,1829 +1724220000,SSL client,120948,338121 +1724220000,Ubuntu Update Manager,18747,17557 +1724220000,Microsoft,633,7965 +1724220000,Yandex,18453,183054 +1724220000,Ubuntu,5616,5270 +1724220000,Microsoft CryptoAPI,2262,1891 +1724220000,Microsoft WNS,1174,8415 +1724220000,ICMP,618,0 +1724220000,Sway,2340,6981 +1724220000,Office Mobile,541,450 +1724220000,Telegram,1905,7285 +1724220000,Edge Chromium,3689,9550 +1724220000,DNS over HTTPS,77447,234042 +1724220000,_err_4907,17348,30334 +1724220300,SSL,21750,30746 +1724220300,SSL client,21750,30746 +1724220300,Google Hangouts,21750,30746 +1724220300,__unknown,9960,12564 +1724220300,__unknown,5657180,1498643 +1724220300,HTTPS,490694,139423 +1724220300,HTTPS,22959,18479 +1724220300,SSL client,22959,18479 +1724220300,Google Play,22959,18479 +1724220300,HTTPS,78558,80054 +1724220300,SSL client,64434,61935 +1724220300,Google Play,64434,61935 +1724220300,__unknown,90723,87203 +1724220300,Google,30679,44821 +1724220300,HTTP,871,2221 +1724220300,HTTPS,153017,849325 +1724220300,Avast,1254,8028 +1724220300,SSL client,108356,813464 +1724220300,Microsoft,13323,25844 +1724220300,Mail.Ru,6305,5841 +1724220300,Yandex,49569,642896 +1724220300,Microsoft CryptoAPI,871,2221 +1724220300,Office 365,2897,41425 +1724220300,Mendeley,2326,8522 +1724220300,Microsoft Teams,2874,38308 +1724220300,__unknown,1402051,1412670 +1724220300,Bing,3435,6454 +1724220300,Google APIs,5723,13757 +1724220300,Skype,7251,96197 +1724220300,VKontakte,8540,22212 +1724220300,HTTPS,392725,907270 +1724220300,WhatsApp,3105,5622 +1724220300,Avast,3138,12482 +1724220300,SSL client,328850,756948 +1724220300,Microsoft,41001,59189 +1724220300,NIH,1912,6803 +1724220300,Mail.Ru,214075,265299 +1724220300,Yandex,29585,244590 +1724220300,Office 365,1314,7344 +1724220300,Microsoft Windows Live Services Authentication,7730,11569 +1724220300,Google Inbox,5146,11052 +1724220300,DNS over HTTPS,11117,44006 +1724220300,__unknown,27097,24389 +1724220300,HTTPS,52934,69127 +1724220300,SSL client,52934,69127 +1724220300,Telegram,52934,69127 +1724220300,__unknown,6834,3960 +1724220300,__unknown,401,120 +1724220300,ICMP,2050,0 +1724220300,HTTPS,8838,15013 +1724220300,ICMP,1462,0 +1724220300,__unknown,5398,3982 +1724220300,HTTPS,15413,43811 +1724220300,ICMP,3710,3360 +1724220300,__unknown,770055,580570 +1724220300,BitTorrent,310,496 +1724220300,DHCPv6,163,0 +1724220300,Google APIs,11130,35656 +1724220300,Google Drive,8903,10953 +1724220300,Google,26225,77471 +1724220300,Google Translate,3664,7265 +1724220300,DNS,16260,0 +1724220300,Gmail,24616,20248 +1724220300,HTTP,2197,4250 +1724220300,Microsoft Update,1227,1566 +1724220300,NetBIOS-dgm,250,0 +1724220300,NTP,12660,2910 +1724220300,STUN,1860,3300 +1724220300,Odnoklassniki,3007,8147 +1724220300,HTTPS,168029,622623 +1724220300,SSL client,78616,165897 +1724220300,Yandex,1071,6157 +1724220300,Microsoft CryptoAPI,1227,1566 +1724220300,ICMP,6075,0 +1724220300,ICMP for IPv6,70,0 +1724220300,Zoom,5496,155846 +1724220300,DNS over HTTPS,49024,123241 +1724220300,IPv6 No Next Header,196,0 +1724220300,__unknown,267926,888336 +1724220300,Bing,1131,5218 +1724220300,BitTorrent,153,537 +1724220300,Google APIs,5507,31583 +1724220300,Google,38947,56990 +1724220300,BitTorrent tracker,153,537 +1724220300,DNS,57266,49811 +1724220300,Firefox,807,1130 +1724220300,Gmail,9624,7327 +1724220300,HTTP,129912,1338743 +1724220300,Launchpad,2560,1984 +1724220300,Microsoft Update,77385,1278385 +1724220300,NetBIOS-dgm,243,0 +1724220300,NTP,12570,2820 +1724220300,STUN,984,888 +1724220300,Advanced Packaging Tool,24834,22478 +1724220300,Windows Update,75762,1277065 +1724220300,HTTPS,128578,268470 +1724220300,Apple sites,853,4057 +1724220300,Mozilla,5204,6846 +1724220300,Avast,764,782 +1724220300,SSL client,73504,151081 +1724220300,Ubuntu Update Manager,16751,15544 +1724220300,Yandex,9113,28317 +1724220300,Ubuntu,8073,7700 +1724220300,Microsoft CryptoAPI,5725,4794 +1724220300,Microsoft NCSI,1445,1527 +1724220300,ICMP,2242,0 +1724220300,Edge Chromium,3522,12040 +1724220300,Grammarly,1942,7404 +1724220300,DNS over TLS,3435,14309 +1724220300,DNS over HTTPS,72620,220410 +1724220300,IPv6 No Next Header,196,0 +1724220599,__unknown,74360,80778 +1724220599,ICMP,21730,0 +1724220599,HTTPS,54275,29045 +1724220599,SSL client,9657,10898 +1724220599,Mail.Ru,9657,10898 +1724220599,HTTPS,25157,20199 +1724220599,SSL client,22249,18432 +1724220599,Google Play,22249,18432 +1724220599,HTTPS,47984,40812 +1724220599,SSL client,16776,6560 +1724220599,Yandex,16776,6560 +1724220599,__unknown,108187,58239 +1724220599,Google,8346,5287 +1724220599,Gmail,5918,8000 +1724220599,HTTP,1496,1847 +1724220599,Microsoft Update,1496,1847 +1724220599,TeamViewer,21125,40493 +1724220599,Odnoklassniki,2887,7974 +1724220599,Steam,2052,4924 +1724220599,HTTPS,108728,1637489 +1724220599,Mozilla,2262,4638 +1724220599,Avast,1254,9122 +1724220599,SSL client,77241,749380 +1724220599,Microsoft,27373,61863 +1724220599,Mail.Ru,17794,29169 +1724220599,Yandex,6397,611072 +1724220599,Microsoft CryptoAPI,1496,1847 +1724220599,Microsoft Teams,2958,7331 +1724220599,__unknown,150796,428952 +1724220599,Google,952738,689070 +1724220599,MSN,3536,10455 +1724220599,HTTP,2904,2700 +1724220599,YouTube,2725,75956 +1724220599,VKontakte,1708,4418 +1724220599,Advanced Packaging Tool,2148,1962 +1724220599,HTTPS,1171553,1141263 +1724220599,WhatsApp,1797,5981 +1724220599,Apple sites,2171,7275 +1724220599,Avast,1254,9602 +1724220599,SSL client,1125848,1035013 +1724220599,CloudFront,3772,1153 +1724220599,Ubuntu Update Manager,1621,1490 +1724220599,Microsoft,25961,55013 +1724220599,Mail.Ru,123265,147437 +1724220599,Yandex,5104,19743 +1724220599,Ubuntu,527,472 +1724220599,Microsoft CryptoAPI,756,738 +1724220599,Apple Maps,4742,12608 +1724220599,Office 365,1014,8141 +1724220599,Grammarly,2600,6750 +1724220599,DNS over HTTPS,9252,30702 +1724220599,__unknown,1383,540 +1724220599,HTTPS,53099,67852 +1724220599,SSL client,53099,67852 +1724220599,Telegram,53099,67852 +1724220599,__unknown,6905,5565 +1724220599,HTTPS,138066,213713 +1724220599,ICMP,1230,0 +1724220599,__unknown,114784,3367590 +1724220599,HTTPS,16697,24560 +1724220599,ICMP,8692,0 +1724220599,__unknown,18053,36460 +1724220599,HTTPS,19144,21085 +1724220599,ICMP,5932,4560 +1724220599,DNS over HTTPS,0,1736 +1724220599,__unknown,419145,552033 +1724220599,Bing,1191,5277 +1724220599,BitTorrent,310,496 +1724220599,Google APIs,42248,8676 +1724220599,Google Drive,31110,11557 +1724220599,Google,44823,174914 +1724220599,DNS,24708,0 +1724220599,Gmail,5779,7996 +1724220599,HTTP,1233,1475 +1724220599,NTP,450,450 +1724220599,Odnoklassniki,3067,8161 +1724220599,HTTPS,244029,1283367 +1724220599,SSL client,133778,245658 +1724220599,Microsoft,922,7532 +1724220599,MDNS,364,0 +1724220599,Microsoft CryptoAPI,1233,1475 +1724220599,ICMP,5928,0 +1724220599,ICMP for IPv6,70,0 +1724220599,JetBrains,4638,21545 +1724220599,DNS over HTTPS,46594,126737 +1724220599,__unknown,428832,1594558 +1724220599,DHCPv6,1141,0 +1724220599,Google APIs,13371,37671 +1724220599,Google,12963,28472 +1724220599,MSN,2262,10010 +1724220599,QQ,678,343 +1724220599,DNS,41564,37746 +1724220599,HTTP,148142,1427216 +1724220599,Internet Explorer,6958,2443 +1724220599,Launchpad,3200,2480 +1724220599,Microsoft Update,83653,1330580 +1724220599,NTP,270,270 +1724220599,SSL,855,7032 +1724220599,STUN,1170,1110 +1724220599,Steam,877,18507 +1724220599,Advanced Packaging Tool,30310,27767 +1724220599,Windows Update,80241,1327452 +1724220599,HTTPS,160704,466742 +1724220599,Apple sites,1806,6870 +1724220599,iCloud,2191,17005 +1724220599,Avast,1528,1564 +1724220599,SSL client,57071,311026 +1724220599,Ubuntu Update Manager,22428,21011 +1724220599,Microsoft,573,7965 +1724220599,Mail.Ru,3810,8025 +1724220599,Yandex,20309,178312 +1724220599,Ubuntu,5107,4737 +1724220599,Microsoft CryptoAPI,3914,5528 +1724220599,Microsoft WNS,573,7965 +1724220599,Google Hangouts,855,7032 +1724220599,ICMP,2286,0 +1724220599,Edge Chromium,5630,17509 +1724220599,DNS over TLS,5791,23851 +1724220599,DNS over HTTPS,63015,176003 +1724220599,IPv6 No Next Header,98,0 +1724220900,__unknown,154369,183135 +1724220900,__unknown,191860,103880 +1724220900,DNS over HTTPS,27703,70830 +1724220900,HTTPS,45753,63952 +1724220900,SSL client,45753,63952 +1724220900,Telegram,45753,63952 +1724220900,HTTPS,4194,6440 +1724220900,SSL client,4194,6440 +1724220900,Sharepoint Online,4194,6440 +1724220900,HTTPS,56334,67871 +1724220900,SSL client,53405,66105 +1724220900,Telegram,53405,66105 +1724220900,__unknown,48682,49225 +1724220900,Google APIs,2047,6294 +1724220900,HTTPS,41452,70878 +1724220900,SSL client,31489,43003 +1724220900,Yandex,4761,6402 +1724220900,Google Play,24681,30307 +1724220900,__unknown,77637,1069300 +1724220900,Google,11757,64016 +1724220900,HTTP,585,446 +1724220900,Microsoft Update,585,446 +1724220900,YouTube,9030,58381 +1724220900,HTTPS,148586,335459 +1724220900,Mozilla,2241,4805 +1724220900,Avast,1320,9831 +1724220900,SSL client,72774,257125 +1724220900,Microsoft,27428,57022 +1724220900,Mail.Ru,14403,8552 +1724220900,Yandex,2015,28050 +1724220900,Microsoft CryptoAPI,585,446 +1724220900,Office 365,1365,16178 +1724220900,OneDrive,3215,10290 +1724220900,__unknown,75914,146074 +1724220900,Bing,1868,9331 +1724220900,Google APIs,11367,572361 +1724220900,MSN,2069,13818 +1724220900,Google Analytics,1324,6365 +1724220900,HTTP,1158,1144 +1724220900,Launchpad,640,430 +1724220900,Microsoft Update,100584,158147 +1724220900,YouTube,20368,537112 +1724220900,VKontakte,2399,4708 +1724220900,Odnoklassniki,6544,12933 +1724220900,Advanced Packaging Tool,640,430 +1724220900,HTTPS,837489,2001322 +1724220900,WhatsApp,5139,11723 +1724220900,Mozilla,1861,5191 +1724220900,Avast,2082,11447 +1724220900,SSL client,481678,1709447 +1724220900,CloudFront,1509,1062 +1724220900,Microsoft,196735,147617 +1724220900,Mail.Ru,86921,113885 +1724220900,Yandex,13122,25209 +1724220900,Google Play,3005,8033 +1724220900,Office 365,2439,37150 +1724220900,Microsoft Windows Live Services Authentication,14171,27839 +1724220900,Office Mobile,11116,7928 +1724220900,GISMETEO,2194,9311 +1724220900,DNS over HTTPS,9540,27791 +1724220900,__unknown,187,228 +1724220900,__unknown,490,1584 +1724220900,HTTPS,4322,6690 +1724220900,__unknown,300,4897 +1724220900,STUN,5029505,107932384 +1724220900,HTTPS,6601,10756 +1724220900,__unknown,7457,7954 +1724220900,HTTPS,52980,58044 +1724220900,Spotify,26847,27137 +1724220900,SSL client,26847,27137 +1724220900,ICMP,2275,1620 +1724220900,__unknown,448228,434535 +1724220900,BitTorrent,310,496 +1724220900,Google APIs,8508,24178 +1724220900,Google,77511,144285 +1724220900,MSN,34735,1138277 +1724220900,DNS,14545,0 +1724220900,Gmail,13553,58047 +1724220900,HTTP,1886,1753 +1724220900,NTP,36834,8190 +1724220900,STUN,1860,3300 +1724220900,Odnoklassniki,2887,8052 +1724220900,HTTPS,169594,1450639 +1724220900,SSL client,150106,1409644 +1724220900,Microsoft,931,7148 +1724220900,Yandex,7386,21604 +1724220900,Microsoft CryptoAPI,1886,1753 +1724220900,ICMP,11500,0 +1724220900,ICMP for IPv6,70,0 +1724220900,Google Sign in,4595,8053 +1724220900,DNS over HTTPS,53649,133445 +1724220900,IPv6 No Next Header,98,0 +1724220900,__unknown,407345,575216 +1724220900,Apple Update,1807,4933 +1724220900,Bing,3519,16021 +1724220900,DHCPv6,978,0 +1724220900,Google APIs,7888,62928 +1724220900,Google,23905,47035 +1724220900,QQ,678,343 +1724220900,DNS,42449,44806 +1724220900,HTTP,56246,65530 +1724220900,Internet Explorer,678,343 +1724220900,Launchpad,3200,2480 +1724220900,Microsoft Update,2530,2029 +1724220900,NetBIOS-dgm,250,0 +1724220900,NTP,6310,2445 +1724220900,STUN,2214,1924 +1724220900,YouTube,12488,74910 +1724220900,Advanced Packaging Tool,30337,27446 +1724220900,HTTPS,219190,653207 +1724220900,Apple sites,1814,4487 +1724220900,iCloud,29244,37651 +1724220900,Avast,830,848 +1724220900,SSL client,103095,347765 +1724220900,Ubuntu Update Manager,21710,20088 +1724220900,Yandex,13546,82457 +1724220900,Ubuntu,6702,6253 +1724220900,Microsoft CryptoAPI,3676,2995 +1724220900,Google Play,4167,7506 +1724220900,ICMP,1770,0 +1724220900,Telegram,3735,9634 +1724220900,Edge Chromium,5917,16288 +1724220900,DNS over TLS,1145,4768 +1724220900,DNS over HTTPS,19392,62526 +1724220900,_err_4655,2534,1666 +1724221200,__unknown,1484,2060 +1724221200,HTTPS,53476,69851 +1724221200,SSL client,53476,69851 +1724221200,Telegram,53476,69851 +1724221200,Windows Live,50766,15926 +1724221200,HTTPS,86942,31313 +1724221200,SSL client,50766,15926 +1724221200,HTTPS,68658,156333 +1724221200,SSL client,68658,156333 +1724221200,Microsoft,9480,118481 +1724221200,Google Play,59178,37852 +1724221200,__unknown,77882,105436 +1724221200,Google APIs,10218,26431 +1724221200,Google Analytics,1733,6526 +1724221200,HTTPS,129255,229395 +1724221200,WhatsApp,5926,30174 +1724221200,Avast,1254,9154 +1724221200,SSL client,65380,143254 +1724221200,Microsoft,5305,11573 +1724221200,Mail.Ru,18576,38392 +1724221200,Yandex,2433,1968 +1724221200,uTorrent,14031,20382 +1724221200,Google Play,8041,10118 +1724221200,Office 365,3789,18710 +1724221200,__unknown,235899,171841 +1724221200,Dropbox,1842,1764 +1724221200,Google APIs,3133,7010 +1724221200,Google,1576648,770601 +1724221200,Gmail,8483,9381 +1724221200,HTTP,9556,14966 +1724221200,Microsoft Update,581,502 +1724221200,Skype,4908,16407 +1724221200,YouTube,28941,33994 +1724221200,VKontakte,4065,6730 +1724221200,Odnoklassniki,9200,16895 +1724221200,Advanced Packaging Tool,2208,2021 +1724221200,IMAPS,8483,9381 +1724221200,HTTPS,1965837,1459605 +1724221200,Mozilla,2424,1296 +1724221200,Avast,1254,8652 +1724221200,SSL client,1800180,1170504 +1724221200,Ubuntu Update Manager,1621,1490 +1724221200,Microsoft,28795,50649 +1724221200,Mail.Ru,90382,100476 +1724221200,Yandex,28274,107671 +1724221200,Ubuntu,587,531 +1724221200,Google Update,4340,10370 +1724221200,Microsoft CryptoAPI,2467,2198 +1724221200,Google Play,3619,2140 +1724221200,Office 365,5291,23516 +1724221200,GISMETEO,2194,9311 +1724221200,Adobe Update,1268,4388 +1724221200,__unknown,4794,3956 +1724221200,Google,50409,39181 +1724221200,HTTPS,50409,39181 +1724221200,SSL client,50409,39181 +1724221200,DNS over HTTPS,7581,14149 +1724221200,__unknown,14756,28528 +1724221200,HTTPS,4331,7943 +1724221200,ICMP,32398,0 +1724221200,DNS over HTTPS,30892,84990 +1724221200,__unknown,454265,2089625 +1724221200,BITS,1857,4451 +1724221200,BitTorrent,310,496 +1724221200,DHCPv6,163,0 +1724221200,Google APIs,2828,7257 +1724221200,Google Drive,15571,20632 +1724221200,Google,14560,42924 +1724221200,Skype Auth,700,398 +1724221200,DNS,20940,0 +1724221200,Gmail,21840,29726 +1724221200,HTTP,1857,4451 +1724221200,NetBIOS-dgm,243,0 +1724221200,NTP,24130,5640 +1724221200,Skype,700,398 +1724221200,Odnoklassniki,3067,8103 +1724221200,HTTPS,232231,2155903 +1724221200,Mozilla,1996,4611 +1724221200,SSL client,138853,1964370 +1724221200,Amazon Web Services,48119,1817016 +1724221200,Google Play,13784,11219 +1724221200,Moat,7279,7022 +1724221200,ICMP,7360,0 +1724221200,Demandbase,2360,8007 +1724221200,Google Sign in,6220,4341 +1724221200,DNS over HTTPS,4478,17400 +1724221200,IPv6 No Next Header,98,0 +1724221200,__unknown,231114,761257 +1724221200,Google APIs,7173,20176 +1724221200,Google,25245,70522 +1724221200,Google Translate,3664,7445 +1724221200,Chrome,549,444 +1724221200,DNS,44101,40151 +1724221200,HTTP,145310,3478892 +1724221200,Launchpad,3200,2480 +1724221200,Microsoft Update,3210,2904 +1724221200,NTP,540,540 +1724221200,SSL,1710,14064 +1724221200,STUN,2844,4188 +1724221200,Advanced Packaging Tool,33073,30519 +1724221200,IMAPS,61969,191914 +1724221200,HTTPS,96947,249336 +1724221200,Apple sites,2802,11326 +1724221200,iCloud,4760,9897 +1724221200,Avast,1528,1564 +1724221200,SSL client,116381,364955 +1724221200,Ubuntu Update Manager,24985,23655 +1724221200,Microsoft,88743,3413688 +1724221200,Mail.Ru,61644,190640 +1724221200,Yandex,2830,19664 +1724221200,Ubuntu,6655,6228 +1724221200,Microsoft CryptoAPI,6775,5988 +1724221200,Microsoft WNS,573,7967 +1724221200,Google Hangouts,1710,14064 +1724221200,ICMP,25502,0 +1724221200,Telegram,3552,3021 +1724221200,Edge Chromium,2635,6821 +1724221200,Grammarly,2312,7887 +1724221200,DNS over TLS,1211,4771 +1724221200,DNS over HTTPS,20562,59400 +1724221200,IPv6 No Next Header,98,0 +1724221500,SSL,31221,40904 +1724221500,SSL client,31221,40904 +1724221500,Google Hangouts,31221,40904 +1724221500,HTTPS,20977,31894 +1724221500,SSL client,20977,31894 +1724221500,Sharepoint Online,20977,31894 +1724221500,HTTPS,373721,110888 +1724221500,HTTPS,45885,69983 +1724221500,SSL client,45885,69983 +1724221500,Telegram,45885,69983 +1724221500,HTTPS,6019,14182 +1724221500,SSL client,6019,14182 +1724221500,Exchange Online,2570,7321 +1724221500,Office 365,3449,6861 +1724221500,HTTPS,17744,325765 +1724221500,SSL client,12219,321869 +1724221500,Yandex,12219,321869 +1724221500,STUN,15498,14060 +1724221500,HTTPS,16043,14497 +1724221500,SSL client,12031,10264 +1724221500,Yandex,12031,10264 +1724221500,HTTPS,21123,30194 +1724221500,SSL client,3100,8958 +1724221500,Yandex,3100,8958 +1724221500,__unknown,44179,79307 +1724221500,Google APIs,5674,41426 +1724221500,Google Analytics,3215,7009 +1724221500,Skype,3254,7079 +1724221500,VKontakte,11123,20320 +1724221500,HTTPS,92619,245440 +1724221500,WhatsApp,4116,14964 +1724221500,Avast,1254,8556 +1724221500,SSL client,43057,157819 +1724221500,Microsoft,4043,14772 +1724221500,Mail.Ru,8946,11590 +1724221500,Office 365,1741,7788 +1724221500,Adobe Update,3807,39279 +1724221500,__unknown,20637,31321 +1724221500,Bing,3092,6422 +1724221500,Google APIs,9323,26485 +1724221500,Google Drive,4969,28791 +1724221500,Google,995,4566 +1724221500,MSN,2184,7542 +1724221500,HTTP,1958,1602 +1724221500,Microsoft Update,96082,193180 +1724221500,Skype,2654,8335 +1724221500,Odnoklassniki,1840,3331 +1724221500,Steam,6392,14770 +1724221500,Advanced Packaging Tool,1358,1220 +1724221500,HTTPS,1307255,11385947 +1724221500,Apple sites,3767,16435 +1724221500,SSL client,1139007,11114224 +1724221500,CloudFront,3772,1153 +1724221500,Ubuntu Update Manager,1358,1220 +1724221500,Microsoft,489189,183591 +1724221500,Mail.Ru,102720,120300 +1724221500,Yandex,373800,10233949 +1724221500,Asus,1725,8865 +1724221500,Microsoft CryptoAPI,600,382 +1724221500,uTorrent,11007,19493 +1724221500,Office 365,18947,137537 +1724221500,Sharepoint Online,5015,90556 +1724221500,GISMETEO,2134,9305 +1724221500,DNS over HTTPS,18543,57075 +1724221500,__unknown,372090,116168 +1724221500,Google,20430,30717 +1724221500,HTTPS,72612,99212 +1724221500,SSL client,72612,99212 +1724221500,Telegram,52182,68495 +1724221500,__unknown,4284,2580 +1724221500,__unknown,974,1610 +1724221500,HTTP,1178,1009 +1724221500,HTTPS,3309,5474 +1724221500,ICMP,2132,0 +1724221500,__unknown,25438,21439 +1724221500,Google,10638,20925 +1724221500,Gmail,23041,17940 +1724221500,HTTPS,105069,2588837 +1724221500,SSL client,36184,47147 +1724221500,CloudFlare,2505,8282 +1724221500,ICMP,14164,9000 +1724221500,__unknown,788103,4460308 +1724221500,BitTorrent,310,496 +1724221500,DHCPv6,978,0 +1724221500,Google APIs,18288,36495 +1724221500,Google,91478,162274 +1724221500,DNS,16152,0 +1724221500,Gmail,14156,9232 +1724221500,HTTP,560,463 +1724221500,NTP,12570,2820 +1724221500,STUN,1860,3300 +1724221500,HTTPS,205375,388245 +1724221500,Mozilla,2615,1712 +1724221500,SSL client,131483,217254 +1724221500,Yandex,2791,7126 +1724221500,Microsoft CryptoAPI,560,463 +1724221500,Google Play,2155,415 +1724221500,ICMP,8982,784 +1724221500,Telegram,187828,3879181 +1724221500,DNS over HTTPS,11590,30136 +1724221500,__unknown,356853,457039 +1724221500,Bing,1191,5232 +1724221500,BitTorrent,153,537 +1724221500,DHCPv6,163,0 +1724221500,Google APIs,3409,13066 +1724221500,Google,36460,242323 +1724221500,QQ,678,343 +1724221500,BitTorrent tracker,153,537 +1724221500,Chrome,41758,18220 +1724221500,DNS,60609,47437 +1724221500,Gmail,6986,4296 +1724221500,HTTP,194249,11985629 +1724221500,Internet Explorer,1500,1003 +1724221500,Launchpad,3200,2480 +1724221500,Microsoft Update,2299,2160 +1724221500,NTP,12480,2730 +1724221500,SSL,2168,6164 +1724221500,STUN,984,888 +1724221500,YouTube,5129,4984 +1724221500,Steam,2093,16224 +1724221500,Advanced Packaging Tool,26883,23673 +1724221500,HTTPS,206128,1080782 +1724221500,iCloud,10635,21661 +1724221500,Avast,764,782 +1724221500,Opera,1930,4383 +1724221500,SSL client,91084,589930 +1724221500,Ubuntu Update Manager,19490,17783 +1724221500,Microsoft,95789,11882175 +1724221500,VeriSign,566,2141 +1724221500,Yandex,27242,301172 +1724221500,Ubuntu,4618,3871 +1724221500,Microsoft CryptoAPI,4627,5787 +1724221500,Microsoft NCSI,985,974 +1724221500,Microsoft WNS,693,7967 +1724221500,ICMP,1494,0 +1724221500,Telegram,4505,2896 +1724221500,Edge Chromium,6157,18867 +1724221500,DNS over HTTPS,73799,216219 +1724221500,IPv6 No Next Header,98,0 +1724221800,HTTPS,14704,20887 +1724221800,SSL client,14704,20887 +1724221800,Yandex,14704,20887 +1724221800,SSL,14880,22914 +1724221800,SSL client,14880,22914 +1724221800,Google Hangouts,14880,22914 +1724221800,HTTPS,1805023,35118817 +1724221800,__unknown,1244,1718 +1724221800,HTTPS,4200,3004 +1724221800,HTTPS,54535,61976 +1724221800,SSL client,54535,61976 +1724221800,Telegram,54535,61976 +1724221800,__unknown,7181,7648 +1724221800,HTTPS,33328,32037 +1724221800,SSL client,22151,24476 +1724221800,Google Play,22151,24476 +1724221800,__unknown,26464,18229 +1724221800,Google,212763,155657 +1724221800,MSN,4226,35512 +1724221800,HTTPS,388501,322274 +1724221800,Avast,1254,9922 +1724221800,SSL client,343354,287171 +1724221800,Microsoft,106917,23224 +1724221800,Mail.Ru,11671,22652 +1724221800,Office 365,6523,40204 +1724221800,DNS over HTTPS,2538,7823 +1724221800,__unknown,123510,220560 +1724221800,Google APIs,5249,1817 +1724221800,Google,372377,379874 +1724221800,OpenVPN,0,395 +1724221800,Dell,2138,8674 +1724221800,Gmail,10108,13476 +1724221800,HTTP,1430,1262 +1724221800,Microsoft Update,1430,1262 +1724221800,Skype,5960,16286 +1724221800,SSL,2266,2681 +1724221800,IMAPS,10108,13476 +1724221800,HTTPS,708057,1150361 +1724221800,Apple sites,2010,4843 +1724221800,Mozilla,2087,4639 +1724221800,SSL client,619127,992266 +1724221800,Amazon Web Services,3385,21602 +1724221800,Microsoft,33201,96210 +1724221800,Mail.Ru,138012,250426 +1724221800,Yandex,27975,82226 +1724221800,Microsoft CryptoAPI,1430,1262 +1724221800,Office 365,7223,91522 +1724221800,Microsoft Windows Live Services Authentication,7208,11432 +1724221800,AnyDesk,2266,2681 +1724221800,GISMETEO,2194,9239 +1724221800,DNS over HTTPS,11107,43582 +1724221800,ICMP,17340,17700 +1724221800,CoAP,4998,3744 +1724221800,__unknown,168583,7484920 +1724221800,Google,14057,19109 +1724221800,HTTPS,14430,24670 +1724221800,SSL client,14057,19109 +1724221800,__unknown,10366,96424 +1724221800,HTTPS,1209,6744 +1724221800,SSL client,1209,6744 +1724221800,ICMP,2632,0 +1724221800,Microsoft Teams,1209,6744 +1724221800,DNS over HTTPS,0,1736 +1724221800,__unknown,6709,81654 +1724221800,Google,21664,31074 +1724221800,Gmail,17222,17847 +1724221800,HTTPS,56467,383913 +1724221800,WhatsApp,17581,334992 +1724221800,SSL client,38886,48921 +1724221800,ICMP,17056,0 +1724221800,__unknown,763450,8010799 +1724221800,BitTorrent,496,248 +1724221800,Google APIs,41207,15863 +1724221800,Google,117480,298617 +1724221800,Kaspersky,608,607 +1724221800,MSN,5844,7951 +1724221800,DNS,14178,0 +1724221800,HTTP,4933,12770 +1724221800,Microsoft Update,1872,9843 +1724221800,NetBIOS-dgm,250,0 +1724221800,NTP,1170,1170 +1724221800,SSL,4540,26554 +1724221800,Odnoklassniki,2698,7423 +1724221800,Advanced Packaging Tool,635,566 +1724221800,HTTPS,290041,795375 +1724221800,SSL client,192565,412070 +1724221800,Yandex,7131,32921 +1724221800,Ubuntu,635,566 +1724221800,Microsoft CryptoAPI,1872,9843 +1724221800,Microsoft WNS,1818,1754 +1724221800,Google Play,14014,30235 +1724221800,Google Hangouts,1528,7978 +1724221800,ICMP,11578,0 +1724221800,Grammarly,2233,7887 +1724221800,DNS over HTTPS,12726,37646 +1724221800,IPv6 No Next Header,98,0 +1724221800,__unknown,1254989,6863287 +1724221800,BITS,8747,41982 +1724221800,DHCPv6,978,0 +1724221800,Google APIs,56426,526359 +1724221800,Google,28834,66110 +1724221800,MSN,3316,11370 +1724221800,QQ,1092,1926 +1724221800,DNS,51805,45693 +1724221800,HTTP,217782,3331548 +1724221800,Internet Explorer,678,343 +1724221800,Launchpad,3762,1984 +1724221800,Microsoft Update,10435,311091 +1724221800,NetBIOS-dgm,243,0 +1724221800,NTP,14010,4260 +1724221800,STUN,984,888 +1724221800,Advanced Packaging Tool,37276,522015 +1724221800,HTTPS,469620,2103815 +1724221800,WhatsApp,16904,371979 +1724221800,Apple sites,8262,189743 +1724221800,Avast,1594,1630 +1724221800,SSL client,159415,995691 +1724221800,Ubuntu Update Manager,32055,518971 +1724221800,Microsoft,72842,2092729 +1724221800,VeriSign,758,1930 +1724221800,Mail.Ru,6532,10259 +1724221800,Yandex,20609,100346 +1724221800,Aliexpress,2744,7508 +1724221800,Ubuntu,2309,1982 +1724221800,Microsoft CryptoAPI,17326,33152 +1724221800,Microsoft NCSI,417,553 +1724221800,Microsoft WNS,1733,1505 +1724221800,Google Play,24618,54832 +1724221800,ICMP,1242,0 +1724221800,Weborama,4964,11366 +1724221800,Firebase Crashlytics,3906,13386 +1724221800,Telegram,35360,104218 +1724221800,Edge Chromium,6097,17052 +1724221800,DNS over HTTPS,71013,227393 +1724221800,Lenovo,886,4258 +1724222099,HTTPS,10152,13336 +1724222099,SSL client,10152,13336 +1724222099,Yandex,10152,13336 +1724222099,Gmail,15547,29135 +1724222099,IMAPS,15547,29135 +1724222099,SSL client,15547,29135 +1724222099,Google,33898,41368 +1724222099,HTTPS,56348,83131 +1724222099,SSL client,33898,41368 +1724222099,HTTPS,45311,63383 +1724222099,SSL client,45311,63383 +1724222099,Telegram,45311,63383 +1724222099,__unknown,1161,0 +1724222099,__unknown,41878,41368 +1724222099,Google APIs,4234,14574 +1724222099,HTTPS,60164,60591 +1724222099,SSL client,45027,45125 +1724222099,Google Play,40793,30551 +1724222099,ICMP,8170,0 +1724222099,__unknown,14942,33714 +1724222099,Google APIs,2910,10044 +1724222099,Google,8208,5032 +1724222099,MSN,2805,1961 +1724222099,HTTPS,196112,203838 +1724222099,Avast,1260,9159 +1724222099,SSL client,140033,119836 +1724222099,Microsoft,2896,15317 +1724222099,Mail.Ru,20937,34374 +1724222099,Yandex,8418,16299 +1724222099,Microsoft Azure,84115,9196 +1724222099,Office 365,3523,14657 +1724222099,Google Sign in,4961,3797 +1724222099,__unknown,234138,195005 +1724222099,Bing,3467,6483 +1724222099,Dropbox,3082,1397 +1724222099,Google,13943,50137 +1724222099,Gmail,5296,6759 +1724222099,HTTP,1181,3454 +1724222099,Microsoft Update,52919,29675 +1724222099,IMAPS,5296,6759 +1724222099,HTTPS,432853,1477035 +1724222099,WhatsApp,4675,9928 +1724222099,iCloud,4023,8680 +1724222099,Avast,1320,8775 +1724222099,SSL client,278319,1147847 +1724222099,Amazon Web Services,2947,21542 +1724222099,CloudFront,1509,1062 +1724222099,Microsoft,35003,55176 +1724222099,VeriSign,733,1826 +1724222099,Mail.Ru,66630,76582 +1724222099,Yandex,57375,752946 +1724222099,Microsoft CryptoAPI,733,1826 +1724222099,Office 365,6048,86255 +1724222099,Microsoft Windows Live Services Authentication,6385,15674 +1724222099,OneDrive,2501,11234 +1724222099,Office Mobile,14504,9008 +1724222099,DNS over HTTPS,4484,21572 +1724222099,Discord,1367,6462 +1724222099,HTTPS,22932,28295 +1724222099,__unknown,3259,1723 +1724222099,HTTP,909,2684 +1724222099,SSL,1819,8095 +1724222099,STUN,2296,2072 +1724222099,HTTPS,2780,7025 +1724222099,SSL client,1819,8095 +1724222099,Apple Maps,2780,7025 +1724222099,Google Hangouts,1819,8095 +1724222099,ICMP,8460,8460 +1724222099,__unknown,972207,3447171 +1724222099,BITS,1530,14485 +1724222099,BitTorrent,310,496 +1724222099,DHCPv6,163,0 +1724222099,Google APIs,4970,18327 +1724222099,Google Drive,8951,11235 +1724222099,Google,33362,80600 +1724222099,Kaspersky,577,1511 +1724222099,Chrome,1106,906 +1724222099,DNS,17481,0 +1724222099,Gmail,6436,8689 +1724222099,HTTP,9914,24108 +1724222099,Launchpad,714,496 +1724222099,NTP,12998,3450 +1724222099,STUN,1798,3190 +1724222099,Advanced Packaging Tool,2698,2480 +1724222099,HTTPS,1024448,3912250 +1724222099,WhatsApp,1633,5753 +1724222099,Apple sites,1785,8622 +1724222099,Mozilla,1876,4611 +1724222099,SSL client,75625,158120 +1724222099,Ubuntu Update Manager,1349,1352 +1724222099,Ubuntu,635,632 +1724222099,Microsoft CryptoAPI,3229,3360 +1724222099,Apple Maps,2904,9785 +1724222099,Google Play,13711,18080 +1724222099,Office 365,2304,15851 +1724222099,ICMP,24937,1500 +1724222099,Google Sign in,4534,7956 +1724222099,DNS over HTTPS,11803,29246 +1724222099,IPv6 No Next Header,98,0 +1724222099,CoAP,1568,1152 +1724222099,__unknown,353663,756115 +1724222099,DHCPv6,978,0 +1724222099,Google APIs,44304,389671 +1724222099,Google,174098,79127 +1724222099,QQ,738,343 +1724222099,Adobe Software,778,485 +1724222099,Chrome,2086,15221 +1724222099,DNS,55195,49477 +1724222099,Gmail,10600,46532 +1724222099,HTTP,139226,1267783 +1724222099,Internet Explorer,1516,828 +1724222099,Launchpad,2708,1984 +1724222099,Microsoft Update,57305,1156971 +1724222099,NTP,12010,3270 +1724222099,STUN,902,814 +1724222099,Odnoklassniki,1693,3095 +1724222099,Advanced Packaging Tool,28604,25836 +1724222099,Windows Update,54084,1154438 +1724222099,HTTPS,569884,3445866 +1724222099,WhatsApp,31495,825159 +1724222099,Apple sites,9182,17462 +1724222099,iCloud,6739,14814 +1724222099,Avast,764,782 +1724222099,SSL client,317604,2235189 +1724222099,Amazon Web Services,23212,15207 +1724222099,Ubuntu Update Manager,22278,20534 +1724222099,Microsoft,573,126 +1724222099,Yandex,22523,1606137 +1724222099,Ubuntu,4893,4701 +1724222099,Microsoft CryptoAPI,14548,20533 +1724222099,Microsoft WNS,573,126 +1724222099,Google Play,3550,8214 +1724222099,Rambler,15562,38369 +1724222099,ICMP,1318,0 +1724222099,Weborama,2041,5352 +1724222099,Telegram,3365,1505 +1724222099,Sberbank of Russia,1861,8540 +1724222099,Edge Chromium,1108,4013 +1724222099,DNS over HTTPS,59827,185287 +1724222400,HTTPS,76899,92805 +1724222400,Skype,5818,9763 +1724222400,HTTPS,5818,9763 +1724222400,SSL client,5818,9763 +1724222400,DNS over HTTPS,159589,370124 +1724222400,HTTPS,53231,63886 +1724222400,SSL client,53231,63886 +1724222400,Telegram,53231,63886 +1724222400,HTTPS,13140,234483 +1724222400,SSL client,13140,234483 +1724222400,Microsoft,13140,234483 +1724222400,HTTPS,22661,18543 +1724222400,SSL client,22661,18543 +1724222400,Google Play,22661,18543 +1724222400,HTTPS,19972,21398 +1724222400,__unknown,76827,89202 +1724222400,Bing,5443,5412 +1724222400,Google APIs,3869,26094 +1724222400,YouTube,2455,6141 +1724222400,HTTPS,125031,229355 +1724222400,Mozilla,2241,4739 +1724222400,Avast,1254,9426 +1724222400,SSL client,78995,166625 +1724222400,Microsoft,14589,24333 +1724222400,Yandex,47403,82692 +1724222400,Office 365,1741,7788 +1724222400,DNS over HTTPS,3251,11294 +1724222400,__unknown,249506,158460 +1724222400,Google,1259,1640 +1724222400,MSN,1109,5863 +1724222400,HTTP,1195,721 +1724222400,Microsoft Update,64792,155967 +1724222400,Skype,3188,7019 +1724222400,VKontakte,49894,46327 +1724222400,Steam,9519,18072 +1724222400,HTTPS,503086,637691 +1724222400,WhatsApp,5019,11603 +1724222400,Avast,1254,8300 +1724222400,SSL client,435853,530755 +1724222400,Microsoft,177298,128094 +1724222400,Mail.Ru,73373,91703 +1724222400,Yandex,7672,19012 +1724222400,Office 365,1689,7788 +1724222400,Microsoft Windows Live Services Authentication,16229,23074 +1724222400,Office Mobile,28577,17896 +1724222400,ICMP,6880,0 +1724222400,HTTPS,52139,69671 +1724222400,HTTPS,15903,22387 +1724222400,SSL client,15903,22387 +1724222400,DNS over HTTPS,15903,22387 +1724222400,__unknown,187,228 +1724222400,__unknown,6907,9534 +1724222400,HTTP,627,457 +1724222400,SSL,53956,20432 +1724222400,SSL client,2763,11315 +1724222400,Google Hangouts,2763,11315 +1724222400,ICMP,492,0 +1724222400,__unknown,109010,78146 +1724222400,HTTPS,21667,35696 +1724222400,__unknown,467883,1114720 +1724222400,BitTorrent,310,496 +1724222400,DHCPv6,163,0 +1724222400,Google APIs,14625,17434 +1724222400,Google,92914,189752 +1724222400,Google Translate,3664,7327 +1724222400,DNS,19739,0 +1724222400,Gmail,5649,8189 +1724222400,HTTP,8728,177389 +1724222400,Microsoft Update,1909,2308 +1724222400,NetBIOS-dgm,250,0 +1724222400,NTP,15090,5340 +1724222400,STUN,1148,1036 +1724222400,YouTube,7933,8088 +1724222400,Odnoklassniki,5642,10548 +1724222400,HTTPS,212380,381637 +1724222400,WhatsApp,2339,14741 +1724222400,Mozilla,4784,5907 +1724222400,Opera,1926,4637 +1724222400,SSL client,163624,281492 +1724222400,Microsoft,4205,170704 +1724222400,Siri,5987,6916 +1724222400,Microsoft CryptoAPI,3868,5391 +1724222400,Google Play,17968,14587 +1724222400,ICMP,37657,5896 +1724222400,Grammarly,2330,7812 +1724222400,DNS over HTTPS,13694,38652 +1724222400,__unknown,641351,832387 +1724222400,Google APIs,2204,7246 +1724222400,Google,25199,66915 +1724222400,QQ,678,343 +1724222400,DNS,54492,45714 +1724222400,HTTP,847524,76802821 +1724222400,Internet Explorer,1440,1003 +1724222400,Launchpad,3200,2480 +1724222400,Microsoft Update,2617,10183 +1724222400,NTP,2790,2880 +1724222400,SSL,795,7032 +1724222400,STUN,902,814 +1724222400,Steam,638,4023 +1724222400,Advanced Packaging Tool,29901,27036 +1724222400,HTTPS,185307,3090196 +1724222400,iCloud,4913,8717 +1724222400,Avast,448,457 +1724222400,SSL client,54280,220663 +1724222400,Ubuntu Update Manager,22496,20774 +1724222400,Microsoft,786039,76714176 +1724222400,Yandex,4201,8455 +1724222400,Gravatar,10736,92325 +1724222400,Ubuntu,5055,4700 +1724222400,Microsoft CryptoAPI,3687,11200 +1724222400,Microsoft WNS,633,7966 +1724222400,Rambler,1131,6104 +1724222400,Office 365,852,8139 +1724222400,Google Hangouts,795,7032 +1724222400,ICMP,1470,0 +1724222400,Telegram,2313,1211 +1724222400,Edge Chromium,4743,12279 +1724222400,DNS over TLS,2224,9539 +1724222400,DNS over HTTPS,63534,180906 +1724222400,IPv6 No Next Header,196,0 +1724222700,HTTPS,30541,159817 +1724222700,SSL client,30541,159817 +1724222700,Yandex,30541,159817 +1724222700,Google,62473,61181 +1724222700,HTTPS,826503,990583 +1724222700,SSL client,826503,990583 +1724222700,Mail.Ru,764030,929402 +1724222700,HTTPS,4137,6380 +1724222700,SSL client,4137,6380 +1724222700,Sharepoint Online,4137,6380 +1724222700,HTTPS,53838,67610 +1724222700,HTTPS,32447,38145 +1724222700,SSL client,26769,32790 +1724222700,Yandex,4189,8520 +1724222700,Google Play,22580,24270 +1724222700,__unknown,53156,51343 +1724222700,Google APIs,2910,8905 +1724222700,Google,2235,5167 +1724222700,HTTPS,100007,160899 +1724222700,Avast,1254,8332 +1724222700,SSL client,36687,86455 +1724222700,Microsoft,11362,15907 +1724222700,Mail.Ru,5544,16532 +1724222700,Exchange Online,6417,10840 +1724222700,Grammarly,6965,20772 +1724222700,DNS over HTTPS,6140,15927 +1724222700,__unknown,123165,78673 +1724222700,Bing,52335,162429 +1724222700,Dropbox,5635,222553 +1724222700,Google APIs,2988,7090 +1724222700,Google,1491,1597 +1724222700,MSN,10107,48826 +1724222700,HTTP,3731,3134 +1724222700,Launchpad,1148,926 +1724222700,Microsoft Update,581,447 +1724222700,Skype,10749,22366 +1724222700,Advanced Packaging Tool,2422,2152 +1724222700,HTTPS,394486,1501499 +1724222700,WhatsApp,1573,5617 +1724222700,SSL client,292548,1241906 +1724222700,Ubuntu Update Manager,1274,1226 +1724222700,Microsoft,66242,160047 +1724222700,Mail.Ru,77406,91637 +1724222700,Yandex,35149,226331 +1724222700,GitHub,1586,6064 +1724222700,Microsoft Azure,5040,21061 +1724222700,Microsoft CryptoAPI,581,447 +1724222700,Exchange Online,1333,6467 +1724222700,Office 365,4919,22284 +1724222700,Sharepoint Online,10868,220495 +1724222700,GISMETEO,2134,9245 +1724222700,DNS over HTTPS,1812,9170 +1724222700,Lenovo,4566,13414 +1724222700,ICMP,4018,0 +1724222700,Google,20318,30973 +1724222700,HTTPS,20318,30973 +1724222700,SSL client,20318,30973 +1724222700,HTTPS,53293,62389 +1724222700,SSL client,53293,62389 +1724222700,Telegram,53293,62389 +1724222700,__unknown,6222,5332 +1724222700,HTTPS,37974,35725 +1724222700,DNS over HTTPS,21725,48636 +1724222700,__unknown,409580,20318854 +1724222700,Windows Live,8644,29321 +1724222700,SSL,2559,9117 +1724222700,HTTPS,60096,57993 +1724222700,SSL client,8644,29321 +1724222700,__unknown,2114,2336 +1724222700,Google,20220,18426 +1724222700,Gmail,29525,19601 +1724222700,SSL,1697,1484 +1724222700,HTTPS,62709,119047 +1724222700,SSL client,51442,39511 +1724222700,Google Hangouts,1697,1484 +1724222700,ICMP,926,0 +1724222700,DNS over HTTPS,6060,14198 +1724222700,CoAP,1764,1296 +1724222700,__unknown,949986,15667802 +1724222700,Apple Update,2134,4314 +1724222700,BitTorrent,310,434 +1724222700,Google APIs,57288,46283 +1724222700,Google,53278,162342 +1724222700,DNS,32807,0 +1724222700,Gmail,6139,6680 +1724222700,HTTP,424922,47443407 +1724222700,NetBIOS-dgm,243,0 +1724222700,NTP,20028,8495 +1724222700,STUN,1860,3300 +1724222700,HTTPS,317314,828667 +1724222700,WhatsApp,1977,6041 +1724222700,iCloud,17704,44673 +1724222700,SSL client,178189,446254 +1724222700,Microsoft,435156,47462598 +1724222700,AddThis,2495,7291 +1724222700,Yandex,22752,143042 +1724222700,ICMP,11106,60 +1724222700,Weborama,3318,6984 +1724222700,DNS over HTTPS,10390,26237 +1724222700,IPv6 No Next Header,98,0 +1724222700,__unknown,444513,2328927 +1724222700,BitTorrent,153,537 +1724222700,DHCPv6,1141,0 +1724222700,Google APIs,4488,13241 +1724222700,Google,48434,467511 +1724222700,QQ,678,343 +1724222700,BitTorrent tracker,153,537 +1724222700,Chrome,2595,28269 +1724222700,DNS,41074,40727 +1724222700,Gmail,24739,33854 +1724222700,HTTP,73634,3180631 +1724222700,Internet Explorer,678,343 +1724222700,Launchpad,3200,2480 +1724222700,Microsoft Update,1037,503 +1724222700,NTP,3600,3690 +1724222700,STUN,984,888 +1724222700,YouTube,1724,6959 +1724222700,Advanced Packaging Tool,28321,26009 +1724222700,HTTPS,347391,4771476 +1724222700,Apple sites,2098,30435 +1724222700,iCloud,5195,8617 +1724222700,Avast,830,848 +1724222700,SSL client,162445,2344237 +1724222700,Ubuntu Update Manager,22090,20807 +1724222700,Microsoft,18625,3085453 +1724222700,Yandex,71755,1771809 +1724222700,Ubuntu,4731,4558 +1724222700,Microsoft CryptoAPI,2163,1516 +1724222700,Microsoft WNS,633,7966 +1724222700,Apple Maps,2146,44949 +1724222700,ICMP,2282,60 +1724222700,Weborama,3200,7713 +1724222700,Telegram,82002,356272 +1724222700,Edge Chromium,7618,22243 +1724222700,DNS over TLS,1145,4769 +1724222700,DNS over HTTPS,48590,153872 +1724223000,HTTPS,321937,563700 +1724223000,SSL client,117499,491025 +1724223000,Mail.Ru,117499,491025 +1724223000,HTTPS,3241,2324 +1724223000,__unknown,11186,2786 +1724223000,Google Drive,8700,5662 +1724223000,HTTPS,44403,25301 +1724223000,SSL client,41569,22710 +1724223000,Google Play,32869,17048 +1724223000,__unknown,178362,153330 +1724223000,Bing,2204,10350 +1724223000,Dropbox,10006,2819 +1724223000,Google,63333,37687 +1724223000,HTTP,1075,1826 +1724223000,HTTPS,335708,1397403 +1724223000,Mozilla,2143,4639 +1724223000,Avast,2376,19474 +1724223000,SSL client,192543,247193 +1724223000,Microsoft,53852,68596 +1724223000,VeriSign,1075,1826 +1724223000,Mail.Ru,5464,16339 +1724223000,Yandex,2493,1626 +1724223000,Microsoft CryptoAPI,1075,1826 +1724223000,Office 365,1372,12464 +1724223000,Trello,49300,73199 +1724223000,DNS over HTTPS,5118,14224 +1724223000,__unknown,41523,75621 +1724223000,Google,1057285,576038 +1724223000,HTTP,3469,4618 +1724223000,Microsoft Update,19254,4010 +1724223000,Skype,3306,8038 +1724223000,Advanced Packaging Tool,2955,2916 +1724223000,HTTPS,1546174,1120212 +1724223000,WhatsApp,2649,5682 +1724223000,Avast,1254,8508 +1724223000,SSL client,1470438,953241 +1724223000,Ubuntu Update Manager,2428,2386 +1724223000,Microsoft,175255,74362 +1724223000,Mail.Ru,137242,158877 +1724223000,Yandex,10324,22344 +1724223000,Ubuntu,527,530 +1724223000,Google Play,3660,11279 +1724223000,Office 365,53138,55216 +1724223000,Grammarly,2270,7886 +1724223000,DNS over TLS,1079,4770 +1724223000,DNS over HTTPS,15533,47894 +1724223000,Lenovo,6371,21913 +1724223000,HTTPS,22149,9606 +1724223000,SSL client,22149,9606 +1724223000,Yandex,22149,9606 +1724223000,DNS over HTTPS,138221,340419 +1724223000,HTTPS,57636,24094 +1724223000,ICMP,3608,0 +1724223000,Google,41452,36938 +1724223000,HTTPS,41452,36938 +1724223000,SSL client,41452,36938 +1724223000,__unknown,130308,174702 +1724223000,Google,11092,8784 +1724223000,Gmail,18344,15306 +1724223000,SSL,1676,3621 +1724223000,HTTPS,39728,283742 +1724223000,SSL client,31112,27711 +1724223000,Google Hangouts,1676,3621 +1724223000,ICMP,4628,0 +1724223000,__unknown,746720,833921 +1724223000,BitTorrent,310,496 +1724223000,Google APIs,26488,8704 +1724223000,Google,30316,120690 +1724223000,DNS,18354,0 +1724223000,NTP,12660,2910 +1724223000,STUN,1860,3300 +1724223000,Odnoklassniki,3007,8206 +1724223000,HTTPS,114154,287941 +1724223000,SSL client,65209,167064 +1724223000,Yandex,1949,15334 +1724223000,Google Play,1506,6726 +1724223000,ICMP,17203,0 +1724223000,Grammarly,1943,7404 +1724223000,DNS over HTTPS,22868,51582 +1724223000,IPv6 No Next Header,98,0 +1724223000,__unknown,506551,1001769 +1724223000,BITS,5536,32389 +1724223000,DHCPv6,815,0 +1724223000,Google APIs,20731,56002 +1724223000,Google,17001,23608 +1724223000,Kaspersky,843,1866 +1724223000,QQ,678,343 +1724223000,DNS,44348,45234 +1724223000,HTTP,190136,18928606 +1724223000,Internet Explorer,678,343 +1724223000,Launchpad,2494,1628 +1724223000,Microsoft Update,9957,985077 +1724223000,NetBIOS-dgm,250,0 +1724223000,NTP,1710,1710 +1724223000,SSL,7067,11754 +1724223000,STUN,984,888 +1724223000,YouTube,6388,66745 +1724223000,VKontakte,2864,20714 +1724223000,Odnoklassniki,1693,3095 +1724223000,Advanced Packaging Tool,32162,29433 +1724223000,HTTPS,540651,8732477 +1724223000,iCloud,3784,35251 +1724223000,Avast,1146,1173 +1724223000,SSL client,246893,6288531 +1724223000,Ubuntu Update Manager,25573,24059 +1724223000,Microsoft,100047,17819760 +1724223000,Yandex,173312,6036627 +1724223000,Ubuntu,5011,4664 +1724223000,Microsoft CryptoAPI,5243,9845 +1724223000,uTorrent,8565,5736 +1724223000,Rambler,5070,9843 +1724223000,ICMP,2884,0 +1724223000,Weborama,7531,14264 +1724223000,Telegram,23148,246997 +1724223000,Edge Chromium,7025,19692 +1724223000,DNS over HTTPS,60648,188129 +1724223000,Notion,3278,10671 +1724223000,IPv6 No Next Header,98,0 +1724223300,HTTPS,57763,762139 +1724223300,SSL client,57763,762139 +1724223300,Yandex,57763,762139 +1724223300,HTTPS,753962,477162 +1724223300,SSL client,15564,83098 +1724223300,Yandex,15564,83098 +1724223300,Google,132179,157846 +1724223300,HTTPS,132179,157846 +1724223300,SSL client,132179,157846 +1724223300,DNS over HTTPS,248534,566379 +1724223300,__unknown,1244,1838 +1724223300,Windows Live,49889,11148 +1724223300,HTTPS,117387,100502 +1724223300,SSL client,117387,100502 +1724223300,Telegram,53640,69504 +1724223300,DNS over HTTPS,13858,19850 +1724223300,HTTPS,6079,14182 +1724223300,SSL client,6079,14182 +1724223300,Exchange Online,2570,7317 +1724223300,Office 365,3509,6865 +1724223300,HTTPS,12154,234995 +1724223300,SSL client,12154,234995 +1724223300,Microsoft,12154,234995 +1724223300,HTTPS,112819,178183 +1724223300,SSL client,8582,74215 +1724223300,Yandex,8582,74215 +1724223300,__unknown,26144,31660 +1724223300,Bing,3546,6424 +1724223300,TeamViewer,1451,8847 +1724223300,HTTPS,188447,270896 +1724223300,WhatsApp,1600,21844 +1724223300,Avast,1320,9831 +1724223300,SSL client,99123,129116 +1724223300,Microsoft,10574,31237 +1724223300,Mail.Ru,62570,28426 +1724223300,Yandex,11136,25650 +1724223300,Apple Maps,3044,6552 +1724223300,Google Play,3601,4924 +1724223300,Office 365,2677,8828 +1724223300,DNS over HTTPS,2248,4949 +1724223300,__unknown,1403242,1042359 +1724223300,Bing,9824,79358 +1724223300,Google,25913,85371 +1724223300,Gmail,14422,18694 +1724223300,HTTP,1927,1720 +1724223300,Skype,3254,7019 +1724223300,SSL,2064,10228 +1724223300,YouTube,2492,5779 +1724223300,Advanced Packaging Tool,1927,1720 +1724223300,IMAPS,14422,18694 +1724223300,HTTPS,314293,3821035 +1724223300,Mozilla,2141,4699 +1724223300,Avast,1484,6079 +1724223300,SSL client,227669,501273 +1724223300,Amazon Web Services,3259,21566 +1724223300,Ubuntu Update Manager,1292,1220 +1724223300,Microsoft,37061,41830 +1724223300,Mail.Ru,92290,104802 +1724223300,Yandex,13348,30633 +1724223300,GitHub,1592,6063 +1724223300,Ubuntu,635,500 +1724223300,Exchange Online,4096,21003 +1724223300,Office 365,10355,45764 +1724223300,GISMETEO,2194,9308 +1724223300,Google Inbox,3944,13305 +1724223300,DNS over HTTPS,233444,539371 +1724223300,__unknown,26607,14406 +1724223300,__unknown,7242,4200 +1724223300,HTTPS,8454,11511 +1724223300,SSL client,8454,11511 +1724223300,DNS over HTTPS,8454,11511 +1724223300,SSL,7841,25756 +1724223300,SSL client,3320,10032 +1724223300,Google Hangouts,3320,10032 +1724223300,Google,69052,57842 +1724223300,HTTPS,69052,57842 +1724223300,SSL client,69052,57842 +1724223300,__unknown,4695,119411 +1724223300,ICMP,1720,0 +1724223300,Telegram,4695,119411 +1724223300,__unknown,8620,5872 +1724223300,Google,20757,20700 +1724223300,Google Translate,6295,10950 +1724223300,SSL,1504,1142 +1724223300,HTTPS,46386,65966 +1724223300,SSL client,28556,32792 +1724223300,Google Hangouts,1504,1142 +1724223300,ICMP,6784,0 +1724223300,__unknown,1072575,5701202 +1724223300,BITS,21313,1138875 +1724223300,BitTorrent,2294,496 +1724223300,DHCPv6,163,0 +1724223300,Google APIs,12960,73639 +1724223300,Google,86365,456092 +1724223300,DNS,14645,0 +1724223300,HTTP,3209474,615549102 +1724223300,Microsoft Update,1226,1173 +1724223300,NetBIOS-dgm,243,0 +1724223300,NTP,18422,10082 +1724223300,SSL,679,7091 +1724223300,STUN,1612,1258 +1724223300,HTTPS,215993,1099378 +1724223300,WhatsApp,2368,10391 +1724223300,SSL client,118051,593185 +1724223300,Microsoft,3205583,615550701 +1724223300,Mail.Ru,1204,4873 +1724223300,Yandex,8897,17039 +1724223300,Microsoft Azure,1095,7537 +1724223300,Microsoft CryptoAPI,2968,3530 +1724223300,Google Hangouts,679,7091 +1724223300,ICMP,40975,0 +1724223300,Grammarly,2233,7822 +1724223300,DNS over HTTPS,13259,38735 +1724223300,__unknown,590086,1145805 +1724223300,BitTorrent,15927,17177 +1724223300,Google APIs,3212,40300 +1724223300,Google,38158,578120 +1724223300,MSN,577,501 +1724223300,QQ,738,343 +1724223300,BitTorrent tracker,298,527 +1724223300,Chrome,549,484 +1724223300,DNS,53222,53934 +1724223300,HTTP,274394,9907016 +1724223300,Internet Explorer,1500,1003 +1724223300,Launchpad,3200,2480 +1724223300,Microsoft Update,1282,1152 +1724223300,NTP,13110,3360 +1724223300,STUN,4120,2826 +1724223300,YouTube,14652,109376 +1724223300,VKontakte,4143,10072 +1724223300,Advanced Packaging Tool,78222,3179180 +1724223300,IMAPS,37777,6592 +1724223300,HTTPS,323991,1423749 +1724223300,Apple sites,3617,9023 +1724223300,Avast,830,848 +1724223300,SSL client,155589,978774 +1724223300,CloudFront,2703,8081 +1724223300,Ubuntu Update Manager,18049,16634 +1724223300,Microsoft,149038,6665254 +1724223300,VeriSign,566,2141 +1724223300,Mail.Ru,6527,9839 +1724223300,Yandex,69325,170620 +1724223300,Ubuntu,58541,3161567 +1724223300,Nvidia,1543,5941 +1724223300,Microsoft CryptoAPI,6340,9399 +1724223300,Microsoft NCSI,1807,1948 +1724223300,Microsoft WNS,577,501 +1724223300,uTorrent,2691,1440 +1724223300,Rambler,5070,12738 +1724223300,ICMP,2382,0 +1724223300,Telegram,54982,422178 +1724223300,Edge Chromium,8792,24514 +1724223300,DNS over TLS,1211,4771 +1724223300,DNS over HTTPS,38031,118992 +1724223300,Notion,1135,4393 +1724223300,IPv6 No Next Header,98,0 +1724223600,ICMP,19176,0 +1724223600,HTTPS,18398,16260 +1724223600,HTTPS,6035,8419 +1724223600,SSL client,6035,8419 +1724223600,Yandex,6035,8419 +1724223600,Google APIs,2027,7162 +1724223600,HTTPS,29703,37146 +1724223600,SSL client,25100,31686 +1724223600,Google Play,23073,24524 +1724223600,__unknown,4766,14864 +1724223600,Dropbox,1647,1519 +1724223600,Gmail,9920,9164 +1724223600,HTTPS,135552,1446831 +1724223600,Apple sites,1772,6206 +1724223600,Avast,1254,8823 +1724223600,SSL client,38019,84620 +1724223600,Microsoft,14133,34134 +1724223600,Mail.Ru,9293,24774 +1724223600,DNS over HTTPS,8575,25097 +1724223600,__unknown,191259,258468 +1724223600,Google APIs,8528,17213 +1724223600,Google,2309,12092 +1724223600,MSN,4863,22847 +1724223600,Adobe Software,629,718 +1724223600,Dell,1111,4306 +1724223600,HTTP,6748,8812 +1724223600,Internet Explorer,629,718 +1724223600,iTunes,236772,8737713 +1724223600,Microsoft Update,581,382 +1724223600,Skype,2715,8334 +1724223600,SSL,8129,19917 +1724223600,Odnoklassniki,1840,3451 +1724223600,Advanced Packaging Tool,4405,4208 +1724223600,HTTPS,1808874,13873502 +1724223600,WhatsApp,1051,5921 +1724223600,Apple sites,10109,8457 +1724223600,Mozilla,2117,5091 +1724223600,Avast,2642,10765 +1724223600,SSL client,927155,9507063 +1724223600,Ubuntu Update Manager,4405,4208 +1724223600,Microsoft,329780,127758 +1724223600,Mail.Ru,138124,154624 +1724223600,King.com,996,4641 +1724223600,Yandex,143218,195278 +1724223600,Nvidia,4147,13606 +1724223600,Microsoft CryptoAPI,1199,2920 +1724223600,Office 365,11472,44104 +1724223600,Microsoft Windows Live Services Authentication,19955,56507 +1724223600,GISMETEO,1879,2792 +1724223600,Zoom,11736,20419 +1724223600,Microsoft Teams,4186,77846 +1724223600,DNS over HTTPS,10193,43204 +1724223600,_err_4655,907,604 +1724223600,HTTPS,51543,63491 +1724223600,SSL client,51543,63491 +1724223600,Telegram,51543,63491 +1724223600,__unknown,350540,16614045 +1724223600,HTTP,627,457 +1724223600,ICMP,940,0 +1724223600,__unknown,11013,82114 +1724223600,Google APIs,8943,52870 +1724223600,Gmail,12259,11011 +1724223600,SSL,1922,1654 +1724223600,VKontakte,5056,14351 +1724223600,HTTPS,58818,102263 +1724223600,SSL client,39250,89825 +1724223600,Yandex,12992,11593 +1724223600,ICMP,1056,0 +1724223600,DNS over HTTPS,100669,229725 +1724223600,__unknown,735972,7237762 +1724223600,BitTorrent,3170,1832 +1724223600,Google APIs,85445,116806 +1724223600,Google,50313,145243 +1724223600,Kaspersky,574,607 +1724223600,BitTorrent tracker,290,329 +1724223600,DNS,23281,0 +1724223600,Firefox,5928,6812 +1724223600,Gmail,5656,8038 +1724223600,HTTP,8367,10546 +1724223600,Microsoft Update,981,1103 +1724223600,NTP,12750,3000 +1724223600,YouTube,14359,195835 +1724223600,VKontakte,14182,73099 +1724223600,Odnoklassniki,3007,8162 +1724223600,HTTPS,256692,810199 +1724223600,Mozilla,4489,9444 +1724223600,SSL client,180887,576090 +1724223600,Microsoft CryptoAPI,1865,3127 +1724223600,Apple Maps,3080,5179 +1724223600,Pocket,2764,6173 +1724223600,Google Play,1274,11793 +1724223600,ICMP,57523,0 +1724223600,Thin Manager TFTP,276,106 +1724223600,Grammarly,2162,7670 +1724223600,DNS over HTTPS,8093,25450 +1724223600,IPv6 No Next Header,98,0 +1724223600,__unknown,387368,1555209 +1724223600,BitTorrent,2191,329 +1724223600,DHCPv6,1141,0 +1724223600,Google APIs,63297,57229 +1724223600,Google,17727,41819 +1724223600,QQ,678,343 +1724223600,BitTorrent tracker,145,329 +1724223600,Chrome,1664,1445 +1724223600,DNS,49308,47057 +1724223600,HTTP,143704,9379865 +1724223600,Internet Explorer,678,343 +1724223600,Launchpad,3200,2282 +1724223600,Microsoft Update,1347,1289 +1724223600,NTP,630,630 +1724223600,SSL,797,7092 +1724223600,VKontakte,4524,10828 +1724223600,RealAudio,388,620 +1724223600,Advanced Packaging Tool,41157,379735 +1724223600,HTTPS,634858,3824551 +1724223600,iCloud,3603,8398 +1724223600,Avast,764,782 +1724223600,SSL client,165737,861178 +1724223600,Ubuntu Update Manager,33766,373635 +1724223600,Microsoft,693,7966 +1724223600,VeriSign,566,2141 +1724223600,Mail.Ru,9830,26963 +1724223600,Yandex,38979,398098 +1724223600,Ubuntu,6031,5872 +1724223600,Microsoft CryptoAPI,65062,8933162 +1724223600,Microsoft NCSI,411,487 +1724223600,Microsoft WNS,693,7966 +1724223600,uTorrent,5224,3362 +1724223600,Rambler,4362,12812 +1724223600,Office 365,20985,298516 +1724223600,Google Hangouts,797,7092 +1724223600,ICMP,6668,0 +1724223600,ICMP for IPv6,70,0 +1724223600,Weborama,2707,6140 +1724223600,Telegram,2996,8977 +1724223600,Edge Chromium,7331,22881 +1724223600,DNS over HTTPS,23236,64292 +1724223600,Notion,1374,4393 +1724223900,Thin Manager TFTP,672,280 +1724223900,__unknown,364715,197764 +1724223900,ICMP,14350,0 +1724223900,Google,158763,178369 +1724223900,HTTPS,523725,1351091 +1724223900,SSL client,172137,901136 +1724223900,Yandex,13374,722767 +1724223900,HTTPS,71375,12929 +1724223900,SSL client,71375,12929 +1724223900,Yandex,71375,12929 +1724223900,HTTPS,44803,65561 +1724223900,SSL client,44803,65561 +1724223900,Telegram,44803,65561 +1724223900,SSL,4517,22787 +1724223900,HTTPS,66406,83089 +1724223900,SSL client,4517,22787 +1724223900,Google Hangouts,4517,22787 +1724223900,HTTPS,12014,14726 +1724223900,HTTPS,88817,103745 +1724223900,SSL client,52873,60994 +1724223900,Telegram,52873,60994 +1724223900,__unknown,11401,5751 +1724223900,HTTPS,44470,32121 +1724223900,SSL client,29123,18203 +1724223900,Google Play,29123,18203 +1724223900,__unknown,84416,80929 +1724223900,Google APIs,16136,16641 +1724223900,Google,8211,5150 +1724223900,HTTP,1428,1014 +1724223900,Microsoft Update,1428,1014 +1724223900,Odnoklassniki,2575,2173 +1724223900,HTTPS,184927,795096 +1724223900,WhatsApp,3174,5802 +1724223900,Bing Maps,6060,38155 +1724223900,Avast,1260,8999 +1724223900,SSL client,77106,440433 +1724223900,CloudFront,4073,95911 +1724223900,Microsoft,8266,14720 +1724223900,Mail.Ru,6209,5841 +1724223900,Yandex,21580,217010 +1724223900,Microsoft CryptoAPI,1428,1014 +1724223900,Microsoft Teams,2736,35833 +1724223900,__unknown,1350960,1411886 +1724223900,Dropbox,1670,1359 +1724223900,MSN,7269,49166 +1724223900,HTTP,4767,4046 +1724223900,Microsoft Update,2400,9608 +1724223900,Skype,7009,96320 +1724223900,Odnoklassniki,12880,23381 +1724223900,Advanced Packaging Tool,3871,3634 +1724223900,HTTPS,792635,13938093 +1724223900,Apple sites,2042,7509 +1724223900,Mozilla,1889,5147 +1724223900,Avast,3258,12498 +1724223900,Opera,9821,6073 +1724223900,SSL client,575808,1281361 +1724223900,Amazon Web Services,3469,21490 +1724223900,Ubuntu Update Manager,2775,2598 +1724223900,Microsoft,258357,453633 +1724223900,Mail.Ru,100727,145538 +1724223900,Yandex,26526,100710 +1724223900,Ubuntu,1096,1036 +1724223900,Microsoft Azure,2442,8531 +1724223900,Office 365,3618,15576 +1724223900,Microsoft Windows Live Services Authentication,125919,312350 +1724223900,Office Mobile,14133,8948 +1724223900,GISMETEO,2200,9597 +1724223900,DNS over HTTPS,5655,23420 +1724223900,__unknown,23711,12740 +1724223900,HTTPS,22444,27899 +1724223900,STUN,5084,4588 +1724223900,HTTPS,137174,76198 +1724223900,Google,36524,28388 +1724223900,HTTPS,36524,28388 +1724223900,SSL client,36524,28388 +1724223900,__unknown,60377,77882 +1724223900,HTTP,1169,18769 +1724223900,VKontakte,5272,9993 +1724223900,HTTPS,9376,22321 +1724223900,SSL client,9376,22321 +1724223900,Microsoft,2488,8661 +1724223900,ICMP,246,0 +1724223900,Discord,1616,3667 +1724223900,__unknown,1583312,41056521 +1724223900,Bing,5668,6940 +1724223900,BITS,2924,8892 +1724223900,BitTorrent,1199,825 +1724223900,Google APIs,11323,33398 +1724223900,Google Drive,176027,65535 +1724223900,Google,56894,129697 +1724223900,Kaspersky,608,607 +1724223900,BitTorrent tracker,145,329 +1724223900,DNS,17555,0 +1724223900,Gmail,19942,20865 +1724223900,HTTP,5648,11535 +1724223900,Microsoft Update,979,1103 +1724223900,NetBIOS-dgm,250,0 +1724223900,NTP,25050,5550 +1724223900,SSL,72698,13196 +1724223900,STUN,2844,4188 +1724223900,YouTube,11550,8984 +1724223900,Odnoklassniki,3007,8145 +1724223900,HTTPS,357482,1078409 +1724223900,WhatsApp,1857,6124 +1724223900,APNS,72698,13196 +1724223900,Mozilla,2885,1819 +1724223900,SSL client,368733,301430 +1724223900,Microsoft,2508,8530 +1724223900,AMD,1137,933 +1724223900,Microsoft CryptoAPI,979,1103 +1724223900,ICMP,4858,0 +1724223900,Google Sign in,6231,4321 +1724223900,Thin Manager TFTP,196,252 +1724223900,DNS over HTTPS,83082,225629 +1724223900,IPv6 No Next Header,98,0 +1724223900,__unknown,1018517,8184582 +1724223900,Apple Update,2908,14576 +1724223900,BitTorrent,588,1524 +1724223900,DHCPv6,815,0 +1724223900,Google APIs,5984,54529 +1724223900,Google Drive,8843,11206 +1724223900,Google,18853,46587 +1724223900,QQ,738,343 +1724223900,BitTorrent tracker,588,1524 +1724223900,DNS,56934,54229 +1724223900,Gmail,17935,46028 +1724223900,HTTP,110051,94130 +1724223900,Internet Explorer,738,343 +1724223900,Launchpad,5578,2776 +1724223900,Microsoft Update,1748,1748 +1724223900,NetBIOS-dgm,243,0 +1724223900,NTP,1620,1530 +1724223900,SSL,1150,7913 +1724223900,STUN,1860,3080 +1724223900,YouTube,14046,196355 +1724223900,Advanced Packaging Tool,32594,28097 +1724223900,IMAPS,14622,44827 +1724223900,HTTPS,525592,3860276 +1724223900,Apple sites,5305,403182 +1724223900,Avast,1206,1173 +1724223900,SSL client,171250,1199216 +1724223900,Ubuntu Update Manager,23350,21967 +1724223900,Microsoft,2170,3666 +1724223900,VeriSign,566,2141 +1724223900,Mail.Ru,31910,87657 +1724223900,Yandex,25304,252905 +1724223900,Ubuntu,5432,5186 +1724223900,Microsoft CryptoAPI,8004,9613 +1724223900,Microsoft NCSI,2364,2435 +1724223900,Sharepoint Online,1778,5663 +1724223900,Google Hangouts,1150,7913 +1724223900,ICMP,1440,0 +1724223900,Weborama,2560,6142 +1724223900,Telegram,11016,35945 +1724223900,Thin Manager TFTP,276,106 +1724223900,Edge Chromium,5630,17559 +1724223900,DNS over TLS,5791,23852 +1724223900,DNS over HTTPS,63672,188026 +1724223900,Notion,25835,35964 +1724223900,IPv6 No Next Header,98,0 +1724224200,SSL,18242,26702 +1724224200,SSL client,18242,26702 +1724224200,Google Hangouts,18242,26702 +1724224200,__unknown,660,819 +1724224200,HTTPS,7925,8499 +1724224200,SSL client,7925,8499 +1724224200,Mail.Ru,7925,8499 +1724224200,Gmail,5423,14678 +1724224200,IMAPS,5423,14678 +1724224200,SSL client,5423,14678 +1724224200,HTTPS,26493,133086 +1724224200,__unknown,5445,5736 +1724224200,__unknown,9166,11119 +1724224200,HTTPS,17899,23012 +1724224200,Google APIs,2362,6271 +1724224200,HTTPS,29291,33443 +1724224200,SSL client,2362,6271 +1724224200,__unknown,29186,448241 +1724224200,Google APIs,1330,6270 +1724224200,Google,8343,17953 +1724224200,Skype,2595,8337 +1724224200,HTTPS,76496,421498 +1724224200,Mozilla,2296,4738 +1724224200,Avast,1254,9330 +1724224200,SSL client,40606,109277 +1724224200,Microsoft,10085,27901 +1724224200,Mail.Ru,13632,28597 +1724224200,Yandex,1071,6151 +1724224200,DNS over HTTPS,48589,122491 +1724224200,__unknown,336666,437599 +1724224200,Apple Update,1787,4756 +1724224200,Bing,8051,51827 +1724224200,Google APIs,4905,13022 +1724224200,Google,2578,3280 +1724224200,MSN,32673,166631 +1724224200,Adobe Software,3321,6809 +1724224200,HTTP,5390,8347 +1724224200,Microsoft Update,77637,118822 +1724224200,Odnoklassniki,9200,16895 +1724224200,Steam,7095,15631 +1724224200,Advanced Packaging Tool,527,530 +1724224200,HTTPS,871045,2957276 +1724224200,Apple sites,6244,22940 +1724224200,iCloud,21945,35682 +1724224200,Avast,7463,26187 +1724224200,SSL client,659822,2039873 +1724224200,CloudFront,1449,1062 +1724224200,Microsoft,154445,119848 +1724224200,Mail.Ru,89704,111823 +1724224200,Yandex,82929,1048130 +1724224200,Ubuntu,527,530 +1724224200,Microsoft Azure,4028,16619 +1724224200,Apple Maps,4790,10224 +1724224200,Rambler,15658,8573 +1724224200,Office 365,4868,22920 +1724224200,Microsoft Windows Live Services Authentication,60064,151858 +1724224200,Office Mobile,46451,42936 +1724224200,GISMETEO,2194,9365 +1724224200,Edge Chromium,874,2069 +1724224200,Grammarly,12611,10092 +1724224200,DNS over TLS,1079,4769 +1724224200,Microsoft Teams,5642,15054 +1724224200,DNS over HTTPS,11458,46894 +1724224200,__unknown,1383,540 +1724224200,__unknown,187,228 +1724224200,__unknown,0,1390 +1724224200,SSL,2085,8914 +1724224200,HTTPS,39804,29453 +1724224200,__unknown,16692,184919 +1724224200,HTTPS,1250460,105269173 +1724224200,ICMP,6440,5040 +1724224200,Zoom,1237332,105237902 +1724224200,__unknown,874067,3331409 +1724224200,BitTorrent,455,825 +1724224200,DHCPv6,163,0 +1724224200,Google APIs,6548,14849 +1724224200,Google,48487,107110 +1724224200,Skype Auth,766,472 +1724224200,BitTorrent tracker,145,329 +1724224200,DNS,22819,288 +1724224200,Gmail,18791,33464 +1724224200,NTP,12908,3360 +1724224200,Skype,766,472 +1724224200,STUN,2844,4188 +1724224200,Odnoklassniki,2613,7433 +1724224200,IMAPS,3801,8587 +1724224200,HTTPS,829802,1738655 +1724224200,WhatsApp,1908,7919 +1724224200,SSL client,85905,172945 +1724224200,Yandex,1193,731 +1724224200,ICMP,4348,256 +1724224200,Google Sign in,6085,4410 +1724224200,DNS over HTTPS,21690,54834 +1724224200,__unknown,553938,2066820 +1724224200,BitTorrent,145,329 +1724224200,Google APIs,15974,129703 +1724224200,Google,20411,55164 +1724224200,Google Translate,3664,7387 +1724224200,QQ,678,343 +1724224200,BitTorrent tracker,145,329 +1724224200,DNS,46694,41119 +1724224200,HTTP,131548,1810559 +1724224200,Internet Explorer,7022,2515 +1724224200,Launchpad,3840,2910 +1724224200,NTP,450,450 +1724224200,YouTube,26228,187591 +1724224200,Steam,637,2918 +1724224200,Advanced Packaging Tool,30370,27198 +1724224200,IMAPS,8448,25792 +1724224200,HTTPS,251385,1681782 +1724224200,Apple sites,6161,58017 +1724224200,iCloud,3483,8481 +1724224200,Avast,382,391 +1724224200,SSL client,106502,553280 +1724224200,Ubuntu Update Manager,21163,19818 +1724224200,Microsoft,48133,1707494 +1724224200,Mail.Ru,8448,25792 +1724224200,Yandex,17225,41475 +1724224200,MDNS,1632,0 +1724224200,Ubuntu,7067,6310 +1724224200,Game Center,1794,18356 +1724224200,Microsoft CryptoAPI,4286,6323 +1724224200,Microsoft NCSI,822,974 +1724224200,Microsoft WNS,693,7965 +1724224200,uTorrent,4268,2880 +1724224200,Rambler,5310,13337 +1724224200,ICMP,2168,0 +1724224200,ICMP for IPv6,540,0 +1724224200,IGMP,360,0 +1724224200,Thin Manager TFTP,276,106 +1724224200,Edge Chromium,8325,24965 +1724224200,DNS over TLS,3237,14309 +1724224200,DNS over HTTPS,66841,199430 +1724224200,Notion,1278,4392 +1724224200,IPv6 No Next Header,196,0 +1724224500,Thin Manager TFTP,108,108 +1724224500,HTTPS,273467,83687 +1724224500,DNS over HTTPS,25306,67601 +1724224500,Windows Live,28022,7254 +1724224500,HTTPS,28022,7254 +1724224500,SSL client,28022,7254 +1724224500,HTTPS,44935,62880 +1724224500,SSL client,44935,62880 +1724224500,Telegram,44935,62880 +1724224500,__unknown,23970,20210 +1724224500,HTTPS,4197,6442 +1724224500,SSL client,4197,6442 +1724224500,Sharepoint Online,4197,6442 +1724224500,Google,169165,72702 +1724224500,HTTPS,172482,76597 +1724224500,SSL client,169165,72702 +1724224500,__unknown,3589,8675 +1724224500,Windows Live,32355,7669 +1724224500,HTTPS,50060,245893 +1724224500,SSL client,45772,241849 +1724224500,Microsoft,13417,234180 +1724224500,__unknown,246,1116 +1724224500,HTTPS,3546,5274 +1724224500,HTTPS,16391,22033 +1724224500,DNS over HTTPS,4721,11789 +1724224500,__unknown,383249,161052 +1724224500,Dropbox,3611,3537 +1724224500,Google,8600,27124 +1724224500,Skype,2522,8337 +1724224500,HTTPS,153074,310171 +1724224500,Spotify,19588,31233 +1724224500,Mozilla,2361,4799 +1724224500,Avast,1270,9202 +1724224500,SSL client,108029,191886 +1724224500,Microsoft,57616,80518 +1724224500,Mail.Ru,3811,8093 +1724224500,Office 365,1495,7344 +1724224500,Google Sign in,4923,3872 +1724224500,Grammarly,2232,7827 +1724224500,DNS over HTTPS,0,15012 +1724224500,__unknown,227041,622586 +1724224500,Bing,13603,32290 +1724224500,Google APIs,8613,22280 +1724224500,Google,2403,12612 +1724224500,MSN,3977,7601 +1724224500,HTTP,8022,179283 +1724224500,Microsoft Update,21074,4577 +1724224500,Skype,3254,7019 +1724224500,SSL,2534,8697 +1724224500,YouTube,77571,341445 +1724224500,Odnoklassniki,4013,9542 +1724224500,Advanced Packaging Tool,8022,179283 +1724224500,HTTPS,971744,3514076 +1724224500,WhatsApp,1797,5981 +1724224500,iCloud,4577,9667 +1724224500,Avast,1942,6564 +1724224500,SSL client,738337,3018597 +1724224500,Ubuntu Update Manager,1561,1490 +1724224500,Microsoft,286127,574407 +1724224500,Mail.Ru,85057,100821 +1724224500,Yandex,89853,873124 +1724224500,Ubuntu,527,530 +1724224500,Apple Maps,2202,4771 +1724224500,Google Play,7791,13917 +1724224500,Exchange Online,4507,9971 +1724224500,Office 365,42456,792438 +1724224500,Microsoft Windows Live Services Authentication,66632,167453 +1724224500,Google Hangouts,2534,8697 +1724224500,Office Mobile,7499,7869 +1724224500,GISMETEO,2134,9242 +1724224500,Grammarly,2720,7061 +1724224500,DNS over HTTPS,3209,26301 +1724224500,SSL,6236,8204 +1724224500,HTTPS,44674,54925 +1724224500,SSL client,44674,54925 +1724224500,Telegram,44674,54925 +1724224500,CoAP,6076,4392 +1724224500,__unknown,10136,5390 +1724224500,Google,24261,33095 +1724224500,HTTPS,40146,58935 +1724224500,SSL client,40146,58935 +1724224500,ICMP,2924,0 +1724224500,Telegram,15885,25840 +1724224500,__unknown,16401,317925 +1724224500,HTTPS,97381,4297825 +1724224500,SSL client,22592,33098 +1724224500,ICMP,21402,0 +1724224500,Telegram,22592,33098 +1724224500,__unknown,15086,19618 +1724224500,Google,17331,18907 +1724224500,Gmail,28944,19594 +1724224500,HTTPS,73410,82783 +1724224500,SSL client,55972,55806 +1724224500,ICMP,379,0 +1724224500,Telegram,9697,17305 +1724224500,DNS over HTTPS,10507,25133 +1724224500,__unknown,863530,7437657 +1724224500,BitTorrent,310,496 +1724224500,DHCPv6,978,0 +1724224500,Google APIs,46016,25581 +1724224500,Google,17684,42525 +1724224500,DNS,15751,0 +1724224500,Gmail,42601,93814 +1724224500,HTTP,816,740 +1724224500,NTP,12570,2820 +1724224500,SSL,24680,6235 +1724224500,STUN,984,888 +1724224500,Odnoklassniki,2666,7607 +1724224500,HTTPS,205958,421076 +1724224500,WhatsApp,3655,10815 +1724224500,APNS,24680,6235 +1724224500,SSL client,176728,239770 +1724224500,Microsoft CryptoAPI,816,740 +1724224500,Google Play,17329,27874 +1724224500,ICMP,13507,3420 +1724224500,ICMP for IPv6,70,0 +1724224500,Telegram,19519,31780 +1724224500,Google Sign in,6233,4354 +1724224500,Thin Manager TFTP,196,252 +1724224500,DNS over HTTPS,10284,28598 +1724224500,IPv6 No Next Header,196,0 +1724224500,__unknown,1829459,2305632 +1724224500,Apple Update,10592,25792 +1724224500,BitTorrent,153,198 +1724224500,DHCPv6,163,0 +1724224500,Google APIs,34626,261784 +1724224500,Google,485645,1534201 +1724224500,QQ,678,343 +1724224500,BitTorrent tracker,153,198 +1724224500,Chrome,2295,1962 +1724224500,DNS,51141,44904 +1724224500,Gmail,10710,46699 +1724224500,HTTP,70537,97786 +1724224500,Internet Explorer,678,343 +1724224500,Launchpad,2560,1984 +1724224500,Microsoft Update,1925,1502 +1724224500,NetBIOS-dgm,250,0 +1724224500,NTP,270,270 +1724224500,SSL,2299,1688 +1724224500,YouTube,3734,22380 +1724224500,VKontakte,3420,5803 +1724224500,Odnoklassniki,1084,3391 +1724224500,Advanced Packaging Tool,31724,29358 +1724224500,HTTPS,860353,5911556 +1724224500,Apple sites,5165,29699 +1724224500,iCloud,34583,256625 +1724224500,Avast,764,782 +1724224500,SSL client,647089,2434920 +1724224500,Ubuntu Update Manager,24985,23556 +1724224500,Mail.Ru,25752,159512 +1724224500,Yandex,5968,24966 +1724224500,Ubuntu,6514,6119 +1724224500,Microsoft CryptoAPI,6767,10856 +1724224500,CloudFlare,1970,6450 +1724224500,Google Hangouts,2299,1688 +1724224500,ICMP,2170,0 +1724224500,Weborama,3802,8929 +1724224500,Telegram,7612,27032 +1724224500,Thin Manager TFTP,544,632 +1724224500,Edge Chromium,9439,28270 +1724224500,Stripe,1964,6953 +1724224500,DNS over HTTPS,69195,209471 +1724224500,Notion,8205,16846 +1724224800,HTTPS,97330,31254 +1724224800,__unknown,1390,1970 +1724224800,__unknown,580,3511 +1724224800,HTTPS,36319,62275 +1724224800,HTTPS,54409,61976 +1724224800,SSL client,54409,61976 +1724224800,Telegram,54409,61976 +1724224800,Google APIs,6081,22059 +1724224800,HTTPS,69877,136036 +1724224800,SSL client,47743,58774 +1724224800,Google Play,41662,36715 +1724224800,__unknown,98840,158071 +1724224800,Google APIs,28853,13611 +1724224800,Google,8207,5049 +1724224800,Gmail,2739,2329 +1724224800,Microsoft Update,1611,5433 +1724224800,YouTube,114107,765006 +1724224800,TeamViewer,1458,8847 +1724224800,HTTPS,295837,1190114 +1724224800,Apple sites,4077,10878 +1724224800,Avast,1254,9570 +1724224800,SSL client,230022,1094529 +1724224800,Amazon Web Services,4259,106194 +1724224800,Microsoft,19518,29478 +1724224800,Mail.Ru,5544,16705 +1724224800,Yandex,35720,104907 +1724224800,Office 365,1689,10574 +1724224800,Sharepoint Online,986,5948 +1724224800,DNS over HTTPS,37213,89271 +1724224800,__unknown,1603542,698242 +1724224800,Google,1073,4667 +1724224800,HTTP,5335,11265 +1724224800,Microsoft Update,98793,4875 +1724224800,SSL,1772,8028 +1724224800,YouTube,25009,9906 +1724224800,Odnoklassniki,18400,33790 +1724224800,Advanced Packaging Tool,503,500 +1724224800,IMAPS,15324,43618 +1724224800,HTTPS,583624,2571879 +1724224800,WhatsApp,4017,13450 +1724224800,Apple sites,6346,17836 +1724224800,Mozilla,5057,6530 +1724224800,Avast,1254,9298 +1724224800,SSL client,461939,393147 +1724224800,Microsoft,167422,76189 +1724224800,Mail.Ru,119386,154192 +1724224800,Yandex,15488,64984 +1724224800,Ubuntu,994,895 +1724224800,Google Update,4341,10370 +1724224800,Google Hangouts,1772,8028 +1724224800,GISMETEO,1939,2852 +1724224800,DNS over HTTPS,973,5578 +1724224800,__unknown,6596625,1229326 +1724224800,SSL,7238,14017 +1724224800,ICMP,15420,15360 +1724224800,__unknown,171,792 +1724224800,SSL,1376,7854 +1724224800,SSL client,1376,7854 +1724224800,Google Hangouts,1376,7854 +1724224800,__unknown,457778,17366485 +1724224800,Google,14022,19769 +1724224800,HTTPS,14022,19769 +1724224800,SSL client,14022,19769 +1724224800,__unknown,0,1736 +1724224800,Gmail,5365,13294 +1724224800,HTTP,482,408 +1724224800,IMAPS,5365,13294 +1724224800,HTTPS,35291,21918 +1724224800,SSL client,5365,13294 +1724224800,ICMP,1394,0 +1724224800,__unknown,5692,11233 +1724224800,Google APIs,3888,7639 +1724224800,HTTPS,10869,21632 +1724224800,SSL client,3888,7639 +1724224800,ICMP,820,0 +1724224800,__unknown,951152,2008704 +1724224800,BitTorrent,496,992 +1724224800,Google APIs,6905,12007 +1724224800,Google Drive,5922,9960 +1724224800,Google,87149,171094 +1724224800,DNS,16226,0 +1724224800,Gmail,5657,8209 +1724224800,Google Analytics,1784,2007 +1724224800,HTTP,4602,6081 +1724224800,NetBIOS-dgm,243,0 +1724224800,NTP,12910,4170 +1724224800,SSL,1612,1392 +1724224800,STUN,2844,4114 +1724224800,Odnoklassniki,2635,2470 +1724224800,HTTPS,961862,3769742 +1724224800,Mozilla,4881,6370 +1724224800,SSL client,132523,711360 +1724224800,CloudFront,2483,51897 +1724224800,Mail.Ru,1204,5377 +1724224800,Yandex,6111,420206 +1724224800,Microsoft CryptoAPI,591,1234 +1724224800,Google Hangouts,1612,1392 +1724224800,ICMP,76646,1690 +1724224800,ICMP for IPv6,70,0 +1724224800,Office Mobile,1759,7490 +1724224800,Telegram,1962,7758 +1724224800,Thin Manager TFTP,560,438 +1724224800,Grammarly,2233,7947 +1724224800,DNS over HTTPS,14072,40155 +1724224800,IPv6 No Next Header,98,0 +1724224800,__unknown,369529,605664 +1724224800,Apple Update,5412,211636 +1724224800,DHCPv6,978,0 +1724224800,Google APIs,9408,26865 +1724224800,Google,28226,96975 +1724224800,QQ,678,343 +1724224800,Android browser,740,932 +1724224800,Chrome,42122,279441 +1724224800,DNS,44558,40527 +1724224800,Gmail,65388,175649 +1724224800,HTTP,101102,572677 +1724224800,Internet Explorer,678,343 +1724224800,Launchpad,3200,2480 +1724224800,Microsoft Update,3531,2949 +1724224800,NTP,12820,3696 +1724224800,YouTube,877,4910 +1724224800,Advanced Packaging Tool,24586,22544 +1724224800,IMAPS,85575,235868 +1724224800,HTTPS,260633,3515128 +1724224800,WhatsApp,1917,6041 +1724224800,Apple sites,1899,4552 +1724224800,iCloud,18251,54850 +1724224800,Mozilla,2758,1673 +1724224800,Avast,830,848 +1724224800,SSL client,167224,509523 +1724224800,Taobao,740,932 +1724224800,Ubuntu Update Manager,18381,17306 +1724224800,Microsoft,693,7965 +1724224800,Mail.Ru,25401,69133 +1724224800,Yandex,8749,49651 +1724224800,Ubuntu,3855,3676 +1724224800,Microsoft CryptoAPI,7877,6470 +1724224800,Microsoft WNS,693,7965 +1724224800,MobileAsset,5412,211636 +1724224800,Apple Maps,2459,30836 +1724224800,Rambler,1984,6480 +1724224800,ICMP,2870,0 +1724224800,Telegram,962,2514 +1724224800,Edge Chromium,5163,16775 +1724224800,DNS over TLS,6693,31434 +1724224800,DNS over HTTPS,41238,135773 +1724224800,IPv6 No Next Header,98,0 +1724225100,Thin Manager TFTP,0,196 +1724225100,__unknown,80680,88241 +1724225100,HTTP,1287953,971268 +1724225100,CoAP,153076,114245 +1724225100,HTTPS,49913,54390 +1724225100,SSL client,49913,54390 +1724225100,Yandex,49913,54390 +1724225100,HTTPS,23597,28279 +1724225100,HTTPS,8680,12906 +1724225100,SSL client,8680,12906 +1724225100,Yandex,8680,12906 +1724225100,HTTPS,539990,140304 +1724225100,SSL client,539990,140304 +1724225100,Mail.Ru,539990,140304 +1724225100,HTTPS,45721,63886 +1724225100,SSL client,45721,63886 +1724225100,Telegram,45721,63886 +1724225100,HTTPS,34251,17894 +1724225100,HTTPS,9792,13680 +1724225100,DNS over HTTPS,20177,44877 +1724225100,HTTP,2516,55945 +1724225100,Advanced Packaging Tool,2516,55945 +1724225100,HTTPS,211093,1569878 +1724225100,SSL client,5491,2373 +1724225100,Yandex,5491,2373 +1724225100,__unknown,97856,21871 +1724225100,Skype,2595,8277 +1724225100,SSL,2114,6320 +1724225100,HTTPS,718670,2193178 +1724225100,Avast,1194,9442 +1724225100,SSL client,13341,33823 +1724225100,Microsoft,2046,7254 +1724225100,Yandex,2484,5107 +1724225100,Google Sign in,5022,3743 +1724225100,__unknown,126893,66774 +1724225100,Dropbox,4609,14442 +1724225100,Google APIs,180082,63293 +1724225100,Google,143719,142561 +1724225100,MSN,33156,143385 +1724225100,Chrome,555,658 +1724225100,HTTP,1656,1981 +1724225100,Microsoft Update,11327,26568 +1724225100,Skype,19861,497411 +1724225100,SSL,3729,16249 +1724225100,TeamViewer,866,5289 +1724225100,VKontakte,5632,9931 +1724225100,Odnoklassniki,1840,3391 +1724225100,Steam,25417,41157 +1724225100,Windows Update,1101,1323 +1724225100,HTTPS,898703,5800355 +1724225100,Apple sites,1683,6178 +1724225100,iCloud,3914,35273 +1724225100,SSL client,709709,1706156 +1724225100,Amazon Web Services,3319,21430 +1724225100,Microsoft,80112,76046 +1724225100,Mail.Ru,89192,112636 +1724225100,Yandex,49861,291245 +1724225100,GitHub,1592,6064 +1724225100,Microsoft Azure,3619,8479 +1724225100,Exchange Online,1288,8065 +1724225100,Office 365,5583,25568 +1724225100,Sharepoint Online,5682,99315 +1724225100,Microsoft Windows Live Services Authentication,15397,23166 +1724225100,Google Hangouts,3729,16249 +1724225100,OneDrive,4668,11024 +1724225100,AnyDesk,1928,2602 +1724225100,GISMETEO,2134,9245 +1724225100,Grammarly,12528,10068 +1724225100,DNS over HTTPS,19368,56994 +1724225100,__unknown,158216,189395 +1724225100,HTTPS,141152,44052 +1724225100,__unknown,192997,92885 +1724225100,Google,79515,51960 +1724225100,HTTPS,79515,51960 +1724225100,SSL client,79515,51960 +1724225100,__unknown,157057,69267 +1724225100,ICMP,1462,0 +1724225100,__unknown,556,396 +1724225100,HTTPS,109770,91930 +1724225100,__unknown,1223472,350746 +1724225100,Odnoklassniki,5595,12501 +1724225100,HTTPS,5595,12501 +1724225100,SSL client,5595,12501 +1724225100,__unknown,221516,345812 +1724225100,Google APIs,25356,240402 +1724225100,Google,19814,30151 +1724225100,Gmail,33764,79544 +1724225100,SSL,20299,6807 +1724225100,VKontakte,6670,48639 +1724225100,HTTPS,134909,501867 +1724225100,SSL client,85604,398736 +1724225100,DNS over HTTPS,4454,11269 +1724225100,CoAP,2156,1584 +1724225100,__unknown,908592,1358003 +1724225100,BitTorrent,248,496 +1724225100,DHCPv6,163,0 +1724225100,Google APIs,4604,13824 +1724225100,Google,33193,96517 +1724225100,Google Translate,4246,8027 +1724225100,DNS,13813,0 +1724225100,Gmail,17426,21917 +1724225100,HTTP,2480,2007 +1724225100,NTP,540,630 +1724225100,STUN,1542,888 +1724225100,Odnoklassniki,3197,8606 +1724225100,HTTPS,564468,2128007 +1724225100,Mozilla,2615,1712 +1724225100,SSL client,92023,196070 +1724225100,Mail.Ru,1264,5378 +1724225100,Microsoft CryptoAPI,2480,2007 +1724225100,Scorecard Research,3587,8412 +1724225100,Google Play,10190,11963 +1724225100,ICMP,29091,2880 +1724225100,Weborama,3229,7624 +1724225100,Google Sign in,6292,4420 +1724225100,Thin Manager TFTP,276,106 +1724225100,Grammarly,2180,7670 +1724225100,DNS over HTTPS,7698,17506 +1724225100,__unknown,540145,2355379 +1724225100,Bing,7757,32843 +1724225100,BITS,1590,14365 +1724225100,BitTorrent,153,0 +1724225100,DHCPv6,652,0 +1724225100,Google APIs,9465,27117 +1724225100,Google,9006,28502 +1724225100,QQ,678,343 +1724225100,BitTorrent tracker,153,0 +1724225100,Chrome,3598,110027 +1724225100,DNS,49485,46114 +1724225100,HTTP,73015,477795 +1724225100,Internet Explorer,678,343 +1724225100,Launchpad,3126,2480 +1724225100,Microsoft Update,1247,1003 +1724225100,NTP,13470,3720 +1724225100,SSL,2831,8465 +1724225100,Steam,7205,122070 +1724225100,Advanced Packaging Tool,39162,197993 +1724225100,IMAPS,136307,417416 +1724225100,HTTPS,171474,569623 +1724225100,Apple sites,7349,146348 +1724225100,iCloud,16039,48503 +1724225100,Avast,764,782 +1724225100,SSL client,216713,784622 +1724225100,Ubuntu Update Manager,30657,190671 +1724225100,Microsoft,5505,28028 +1724225100,Mail.Ru,149162,445309 +1724225100,Yandex,5023,10520 +1724225100,Ubuntu,7995,7670 +1724225100,Microsoft CryptoAPI,2440,2021 +1724225100,Microsoft NCSI,991,1040 +1724225100,Apple Maps,1706,5244 +1724225100,Rambler,5311,13321 +1724225100,Office 365,1590,14365 +1724225100,ICMP,3996,0 +1724225100,Weborama,3270,8142 +1724225100,Thin Manager TFTP,280,672 +1724225100,Edge Chromium,3809,10833 +1724225100,DNS over HTTPS,13107,46105 +1724225100,IPv6 No Next Header,294,0 +1724225400,HTTP,193590273,146553784 +1724225400,HTTP,871023,626982 +1724225400,HTTPS,47714,68077 +1724225400,SSL client,29684,50492 +1724225400,Sharepoint Online,29684,50492 +1724225400,HTTPS,12266,9976 +1724225400,SSL client,12266,9976 +1724225400,Yandex,12266,9976 +1724225400,Google,3150349,1199951 +1724225400,HTTPS,3150349,1199951 +1724225400,SSL client,3150349,1199951 +1724225400,__unknown,1702,3488 +1724225400,HTTPS,6716,9601 +1724225400,SSL client,6716,9601 +1724225400,Yandex,6716,9601 +1724225400,Skype,3976,8741 +1724225400,HTTPS,16042,133451 +1724225400,SSL client,16042,133451 +1724225400,Microsoft,9174,117517 +1724225400,Microsoft Teams,2892,7193 +1724225400,Google APIs,2087,7396 +1724225400,HTTPS,86081,39931 +1724225400,SSL client,71675,31310 +1724225400,Microsoft,46673,15299 +1724225400,Google Play,18796,2262 +1724225400,Sharepoint Online,4119,6353 +1724225400,__unknown,24301,86101 +1724225400,Google APIs,16150,266026 +1724225400,Google,2625,6720 +1724225400,MSN,1363,10577 +1724225400,Gmail,10075,5561 +1724225400,HTTP,1564,1273 +1724225400,Microsoft Update,141315,20836 +1724225400,HTTPS,325512,857575 +1724225400,WhatsApp,6547,145028 +1724225400,Mozilla,2361,4799 +1724225400,Avast,1254,8444 +1724225400,SSL client,270431,601888 +1724225400,CloudFront,1719,7852 +1724225400,Microsoft,32291,57633 +1724225400,Mail.Ru,5484,16765 +1724225400,Yandex,50894,154383 +1724225400,Microsoft CryptoAPI,1564,1273 +1724225400,Google Play,2399,6744 +1724225400,Samsung Push Notification,1886,10067 +1724225400,Office 365,1809,10574 +1724225400,Microsoft Teams,2256,26247 +1724225400,DNS over HTTPS,5204,14026 +1724225400,__unknown,596823,512379 +1724225400,Bing,34172,235880 +1724225400,BITS,22982,2617984 +1724225400,Dropbox,10536,20379 +1724225400,Google APIs,15626,37674 +1724225400,Google,106596,137277 +1724225400,MSN,32674,83694 +1724225400,Windows Live,6556,14074 +1724225400,Dell,1111,4307 +1724225400,Gmail,15929,19858 +1724225400,Google Analytics,2379,6238 +1724225400,HTTP,53796,2665344 +1724225400,iTunes,5571,45936 +1724225400,Microsoft Update,10704,23894 +1724225400,Skype,14152,24146 +1724225400,YouTube,10485,4856 +1724225400,Odnoklassniki,7360,13564 +1724225400,Advanced Packaging Tool,4058,4068 +1724225400,IMAPS,15929,19858 +1724225400,HTTPS,1474285,3173964 +1724225400,Apple sites,14452,209449 +1724225400,iCloud,3859,9068 +1724225400,Bing Maps,5289,29665 +1724225400,Mozilla,2141,4579 +1724225400,Opera,8967,6013 +1724225400,SSL client,1080971,2720059 +1724225400,Ubuntu Update Manager,4058,4068 +1724225400,Microsoft,357130,3043308 +1724225400,Mail.Ru,142712,176010 +1724225400,Yandex,240323,888542 +1724225400,Ubuntu,425,395 +1724225400,Microsoft Azure,5041,20585 +1724225400,Microsoft CryptoAPI,775,619 +1724225400,Apple Maps,4927,38269 +1724225400,Exchange Online,1309,6467 +1724225400,Office 365,14946,158996 +1724225400,Microsoft Windows Live Services Authentication,33754,88208 +1724225400,Office Mobile,19125,17612 +1724225400,Telegram,3750,5614 +1724225400,GISMETEO,1939,2837 +1724225400,Edge Chromium,1054,3951 +1724225400,Grammarly,2157,6517 +1724225400,DNS over TLS,925,4770 +1724225400,DNS over HTTPS,21750,69221 +1724225400,Lenovo,4324,11946 +1724225400,HTTPS,8829,5537 +1724225400,HTTPS,52454,26572 +1724225400,Gmail,12800,32110 +1724225400,IMAPS,12800,32110 +1724225400,SSL client,12800,32110 +1724225400,Gmail,3662,9274 +1724225400,IMAPS,3662,9274 +1724225400,SSL client,3662,9274 +1724225400,ICMP,42722,0 +1724225400,__unknown,3505,3270 +1724225400,ICMP,902,0 +1724225400,__unknown,327122,15544857 +1724225400,HTTPS,16678,30073 +1724225400,ICMP,1702,0 +1724225400,__unknown,499979,1714770 +1724225400,BitTorrent,310,496 +1724225400,DHCPv6,163,0 +1724225400,Google APIs,66088,55994 +1724225400,Google,74489,145936 +1724225400,DNS,20028,0 +1724225400,Google Analytics,2930,6943 +1724225400,HTTP,5383,7633 +1724225400,NetBIOS-dgm,250,0 +1724225400,NTP,1260,1260 +1724225400,SSL,2795,9182 +1724225400,STUN,2844,4188 +1724225400,HTTPS,563231,1199704 +1724225400,Apple sites,1737,7663 +1724225400,SSL client,204582,278228 +1724225400,Amazon Web Services,1892,7938 +1724225400,VeriSign,566,2141 +1724225400,Mail.Ru,28989,7374 +1724225400,Yandex,4017,17843 +1724225400,Microsoft CryptoAPI,2870,4164 +1724225400,Google Play,20019,15704 +1724225400,Office 365,834,1366 +1724225400,ICMP,7098,256 +1724225400,Thin Manager TFTP,276,106 +1724225400,Grammarly,2293,7823 +1724225400,DNS over HTTPS,16791,49597 +1724225400,IPv6 No Next Header,98,0 +1724225400,__unknown,6638069,26833249 +1724225400,Apple Update,1957018,95498089 +1724225400,Google APIs,13469,38692 +1724225400,Google,43525,70939 +1724225400,MSN,909,877 +1724225400,QQ,678,343 +1724225400,Chrome,2962,2863 +1724225400,DNS,43156,38718 +1724225400,HTTP,100856,648970 +1724225400,Internet Explorer,678,343 +1724225400,Launchpad,3126,2348 +1724225400,Microsoft Update,6856,5582 +1724225400,NetBIOS-dgm,243,0 +1724225400,NTP,1350,1350 +1724225400,Advanced Packaging Tool,50053,563305 +1724225400,IMAPS,4182,12690 +1724225400,HTTPS,2452872,99759484 +1724225400,WhatsApp,9017,153626 +1724225400,Apple sites,17947,50839 +1724225400,iCloud,15976,44969 +1724225400,Avast,3086,10155 +1724225400,Opera,1762,6841 +1724225400,SSL client,2171008,97833658 +1724225400,Ubuntu Update Manager,38630,421764 +1724225400,Microsoft,1607,11569 +1724225400,Mail.Ru,68400,655944 +1724225400,Yandex,44565,1444808 +1724225400,Ubuntu,9147,140107 +1724225400,Microsoft CryptoAPI,11007,12367 +1724225400,Microsoft NCSI,4365,4936 +1724225400,Microsoft WNS,1542,8844 +1724225400,uTorrent,2377,1434 +1724225400,Google Play,3154,7070 +1724225400,ICMP,4107,0 +1724225400,Telegram,3621,10185 +1724225400,Edge Chromium,3689,9551 +1724225400,DNS over TLS,2158,9540 +1724225400,DNS over HTTPS,21730,71294 +1724225700,Thin Manager TFTP,108,108 +1724225700,HTTPS,114950,514350 +1724225700,SSL client,114950,514350 +1724225700,Mail.Ru,114950,514350 +1724225700,HTTPS,8752,13110 +1724225700,SSL client,8752,13110 +1724225700,DNS over HTTPS,8752,13110 +1724225700,__unknown,2093,7188 +1724225700,HTTPS,50978,49256 +1724225700,SSL client,20996,18123 +1724225700,Google Play,20996,18123 +1724225700,__unknown,101325,83230 +1724225700,Bing,3361,6581 +1724225700,Google,9731,25755 +1724225700,Microsoft Update,22203,29387 +1724225700,Skype,6651,10741 +1724225700,TeamViewer,1539,8876 +1724225700,HTTPS,312900,11144322 +1724225700,Avast,1517,10993 +1724225700,SSL client,104982,169087 +1724225700,Microsoft,4031,7330 +1724225700,Mail.Ru,3747,8029 +1724225700,Yandex,12113,17677 +1724225700,Google Play,27524,12941 +1724225700,Stripe,10467,7877 +1724225700,Adobe Update,2098,22900 +1724225700,__unknown,387173,247947 +1724225700,Google,2068,9171 +1724225700,MSN,1052,7201 +1724225700,Windows Live,1726,8267 +1724225700,Chrome,882,3010 +1724225700,HTTP,4558,7441 +1724225700,Microsoft Update,42610,62021 +1724225700,schuelerVZ,1935,4149 +1724225700,Skype,5545,15936 +1724225700,YouTube,6482,9370 +1724225700,Odnoklassniki,23920,44083 +1724225700,HTTPS,1461646,3685215 +1724225700,WhatsApp,11373,168808 +1724225700,Apple sites,8987,56927 +1724225700,iCloud,28055,54386 +1724225700,Bing Maps,3041,150681 +1724225700,Opera,2004,4831 +1724225700,SSL client,581536,1359418 +1724225700,Amazon Web Services,3445,21602 +1724225700,Microsoft,212479,173861 +1724225700,Mail.Ru,70639,86358 +1724225700,Yandex,70428,118366 +1724225700,Microsoft CryptoAPI,2104,3642 +1724225700,Rambler,47099,308391 +1724225700,Office 365,6365,71210 +1724225700,Microsoft Windows Live Services Authentication,33444,87655 +1724225700,Weborama,5061,9038 +1724225700,Telegram,404,126 +1724225700,Edge Chromium,467,186 +1724225700,DNS over HTTPS,7889,24707 +1724225700,Adobe Update,3823,56653 +1724225700,_err_4655,3332,4092 +1724225700,__unknown,9690,8256 +1724225700,__unknown,16833,9114 +1724225700,STUN,6232,5698 +1724225700,HTTPS,31902,41654 +1724225700,SSL client,9458,13224 +1724225700,ICMP,3690,0 +1724225700,DNS over HTTPS,9458,13224 +1724225700,HTTPS,7970,9265 +1724225700,__unknown,42155,117370 +1724225700,Google,17568,20197 +1724225700,HTTPS,17568,20197 +1724225700,SSL client,17568,20197 +1724225700,ICMP,3361,0 +1724225700,__unknown,2913,2471 +1724225700,Google,627393,2056382 +1724225700,HTTPS,630694,2061783 +1724225700,SSL client,627393,2056382 +1724225700,DNS over HTTPS,5291,15384 +1724225700,CoAP,1078,792 +1724225700,__unknown,1334190,4834526 +1724225700,Bing,1191,5259 +1724225700,BitTorrent,310,496 +1724225700,Google APIs,51920,57735 +1724225700,Google Drive,21262,31556 +1724225700,Google,27869,80994 +1724225700,Google Translate,3664,7447 +1724225700,Apple Mail,4360,9757 +1724225700,DNS,14031,0 +1724225700,Gmail,27255,60251 +1724225700,HTTP,816,740 +1724225700,NTP,1260,1260 +1724225700,SSL,23337,10862 +1724225700,STUN,984,888 +1724225700,IMAPS,31615,70008 +1724225700,HTTPS,845243,2900495 +1724225700,WhatsApp,1603,9431 +1724225700,Mozilla,4761,6490 +1724225700,SSL client,159230,292088 +1724225700,Yandex,3549,9299 +1724225700,Microsoft CryptoAPI,816,740 +1724225700,CloudFlare,4979,13909 +1724225700,ICMP,14742,2880 +1724225700,Telegram,7703,25476 +1724225700,Google Sign in,6232,4459 +1724225700,Thin Manager TFTP,196,252 +1724225700,DNS over HTTPS,11361,33133 +1724225700,IPv6 No Next Header,294,0 +1724225700,__unknown,522019,1096450 +1724225700,Bing,4593,7758 +1724225700,BitTorrent,153,198 +1724225700,DHCPv6,1141,0 +1724225700,Google APIs,15156,38560 +1724225700,Google,27106,67565 +1724225700,QQ,678,343 +1724225700,Adobe Software,4855,46560 +1724225700,BitTorrent tracker,153,198 +1724225700,Chrome,8168,7614 +1724225700,DNS,48988,48694 +1724225700,Firefox,1481,1565 +1724225700,Gmail,68095,170541 +1724225700,HTTP,151602,2492712 +1724225700,Internet Explorer,678,343 +1724225700,Launchpad,3200,2414 +1724225700,Microsoft Update,68635,1223818 +1724225700,NTP,14190,4440 +1724225700,SSL,797,7092 +1724225700,YouTube,1141,4899 +1724225700,Advanced Packaging Tool,27686,24937 +1724225700,Windows Update,54213,1057523 +1724225700,IMAPS,105813,284079 +1724225700,HTTPS,886349,4969351 +1724225700,iCloud,13024,40683 +1724225700,Mozilla,2460,5186 +1724225700,Avast,830,848 +1724225700,SSL client,303346,798887 +1724225700,Ubuntu Update Manager,19646,18175 +1724225700,Microsoft,9905,1192008 +1724225700,NIH,1676,7289 +1724225700,Mail.Ru,93347,187225 +1724225700,Yandex,10129,36292 +1724225700,Ubuntu,5690,5262 +1724225700,Microsoft CryptoAPI,10737,10111 +1724225700,Microsoft NCSI,948,1040 +1724225700,uTorrent,670,476 +1724225700,Rubicon Project,1462,3590 +1724225700,Evidon,1418,5197 +1724225700,Criteo,12643,38981 +1724225700,cXense,7021,14754 +1724225700,Rambler,2935,11699 +1724225700,Lijit,1493,10279 +1724225700,Google Hangouts,797,7092 +1724225700,ICMP,3449,0 +1724225700,Weborama,7080,16600 +1724225700,Telegram,5952,23250 +1724225700,Thin Manager TFTP,276,106 +1724225700,Edge Chromium,5043,15493 +1724225700,DNS over TLS,7068,28620 +1724225700,DNS over HTTPS,43522,131270 +1724225700,Notion,1055,4393 +1724225700,IPv6 No Next Header,98,0 +1724225999,__unknown,1041112,1951089 +1724225999,ICMP,111420,111540 +1724225999,HTTPS,9191,12645 +1724225999,SSL client,9191,12645 +1724225999,Yandex,9191,12645 +1724225999,DNS over HTTPS,135949,319646 +1724225999,HTTPS,6066,11440 +1724225999,HTTPS,204530,73077 +1724225999,HTTPS,5103,4836 +1724225999,SSL client,5103,4836 +1724225999,Yandex,5103,4836 +1724225999,HTTPS,82446,101034 +1724225999,HTTPS,58254,63510 +1724225999,SSL client,54409,61186 +1724225999,Telegram,54409,61186 +1724225999,HTTPS,5204,3081 +1724225999,__unknown,5348,8049 +1724225999,Google APIs,2087,7295 +1724225999,HTTPS,131411,4352754 +1724225999,SSL client,5673,14351 +1724225999,Yandex,3586,7056 +1724225999,__unknown,62339,32515 +1724225999,MSN,3775,2589 +1724225999,Gmail,5952,3848 +1724225999,Microsoft Update,3200,40237 +1724225999,Skype,2785,7015 +1724225999,TeamViewer,1450,8838 +1724225999,HTTPS,328635,1066512 +1724225999,Apple sites,1813,18821 +1724225999,Mozilla,2241,4739 +1724225999,Avast,1243,11110 +1724225999,SSL client,215042,819087 +1724225999,Microsoft,139491,397841 +1724225999,Mail.Ru,33130,99816 +1724225999,Yandex,10030,205692 +1724225999,Office 365,3709,14092 +1724225999,Google Sign in,6223,4449 +1724225999,DNS over HTTPS,2656,23518 +1724225999,__unknown,187405,301520 +1724225999,Dropbox,7972,224193 +1724225999,Google,141976,131643 +1724225999,MSN,2896,29052 +1724225999,HTTP,291297,31927266 +1724225999,Microsoft Update,2026,4046 +1724225999,Skype,10643,101136 +1724225999,SSL,797,7031 +1724225999,YouTube,1967,6593 +1724225999,Odnoklassniki,11040,20346 +1724225999,SMTPS,6736,6856 +1724225999,HTTPS,933721,7271837 +1724225999,WhatsApp,1633,5633 +1724225999,Apple sites,7719,23589 +1724225999,iCloud,19172,51910 +1724225999,Avast,1555,12988 +1724225999,SSL client,678292,3198259 +1724225999,Microsoft,496174,33023933 +1724225999,Mail.Ru,97196,107280 +1724225999,Yandex,34567,82648 +1724225999,Gravatar,2596,12402 +1724225999,Microsoft CryptoAPI,2223,6233 +1724225999,Rambler,29524,35447 +1724225999,Office 365,26795,479249 +1724225999,Microsoft Windows Live Services Authentication,14721,37744 +1724225999,Google Hangouts,797,7031 +1724225999,Weborama,11777,15776 +1724225999,Office Mobile,28325,18689 +1724225999,Stripe,3230,5320 +1724225999,Microsoft Teams,2748,7522 +1724225999,DNS over HTTPS,13794,42440 +1724225999,Discord,12535,681201 +1724225999,__unknown,190943,123225 +1724225999,__unknown,186,228 +1724225999,HTTPS,15404,22363 +1724225999,SSL client,15404,22363 +1724225999,DNS over HTTPS,15404,22363 +1724225999,HTTPS,51635,262670 +1724225999,ICMP,1892,0 +1724225999,__unknown,971,524 +1724225999,Google,6513,11833 +1724225999,HTTPS,15097,27561 +1724225999,SSL client,6513,11833 +1724225999,__unknown,83938,311626 +1724225999,Gmail,23562,43807 +1724225999,HTTPS,70507,317551 +1724225999,SSL client,23562,43807 +1724225999,ICMP,626,0 +1724225999,DNS over HTTPS,11023,23204 +1724225999,__unknown,1154765,2062186 +1724225999,BitTorrent,310,496 +1724225999,Google APIs,14891,79054 +1724225999,Google,61019,186252 +1724225999,DNS,23281,0 +1724225999,Gmail,11196,10097 +1724225999,HTTP,607,1237 +1724225999,NetBIOS-dgm,250,0 +1724225999,NTP,13650,3900 +1724225999,STUN,984,814 +1724225999,Odnoklassniki,5099,14931 +1724225999,HTTPS,498924,2205572 +1724225999,SSL client,187540,505324 +1724225999,Pubmatic,9437,11765 +1724225999,Microsoft,862,7532 +1724225999,Chartbeat,5091,63772 +1724225999,Yandex,14775,35888 +1724225999,MDNS,364,0 +1724225999,Simpli.fi,1422,5091 +1724225999,Microsoft CryptoAPI,607,1237 +1724225999,Evidon,2131,6514 +1724225999,Criteo,34680,14355 +1724225999,Lijit,3721,10280 +1724225999,AdRoll,2423,8408 +1724225999,ICMP,21164,0 +1724225999,Weborama,2640,6536 +1724225999,Demandbase,2691,7772 +1724225999,Telegram,637,361 +1724225999,Thin Manager TFTP,884,664 +1724225999,DNS over HTTPS,71452,169180 +1724225999,IPv6 No Next Header,196,0 +1724225999,CoAP,1078,864 +1724225999,__unknown,839086,6859132 +1724225999,BITS,6856,184973 +1724225999,DHCPv6,978,0 +1724225999,Google APIs,5472,22141 +1724225999,Google,39633,116543 +1724225999,MSN,886,7510 +1724225999,QQ,678,126 +1724225999,Chrome,14636,16430 +1724225999,DNS,54426,46911 +1724225999,Gmail,8668,15376 +1724225999,HTTP,192322,6614515 +1724225999,Internet Explorer,678,126 +1724225999,Launchpad,3200,2480 +1724225999,Microsoft Update,70562,1331291 +1724225999,NTP,1170,1170 +1724225999,SSL,855,7033 +1724225999,YouTube,853,7055 +1724225999,VKontakte,17317,95076 +1724225999,Steam,1805,31691 +1724225999,Advanced Packaging Tool,25743,23495 +1724225999,Windows Update,69581,1330536 +1724225999,IMAPS,87212,264268 +1724225999,HTTPS,639999,1676284 +1724225999,WhatsApp,11989,52864 +1724225999,Apple sites,3410,13111 +1724225999,iCloud,15963,29909 +1724225999,Avast,1146,1173 +1724225999,SSL client,281340,875390 +1724225999,Ubuntu Update Manager,18290,17197 +1724225999,Microsoft,63217,5189261 +1724225999,Wikia,41764,64823 +1724225999,Mail.Ru,87851,268914 +1724225999,Yandex,28432,121472 +1724225999,Rotten Tomatoes,1486,7317 +1724225999,Ubuntu,6378,6107 +1724225999,Microsoft CryptoAPI,4529,3814 +1724225999,Microsoft NCSI,514,487 +1724225999,Microsoft WNS,573,7965 +1724225999,Apple Maps,853,4632 +1724225999,Rambler,5070,12815 +1724225999,Office 365,1112,10758 +1724225999,Google Hangouts,855,7033 +1724225999,ICMP,2828,0 +1724225999,Firebase Crashlytics,853,4459 +1724225999,Telegram,1395,419 +1724225999,Thin Manager TFTP,276,106 +1724225999,Edge Chromium,3522,12048 +1724225999,DNS over TLS,2224,9540 +1724225999,DNS over HTTPS,32231,107059 +1724225999,Notion,1071,4392 +1724225999,IPv6 No Next Header,98,0 +1724226300,Thin Manager TFTP,252,196 +1724226300,__unknown,82040,89282 +1724226300,HTTPS,1024115,122223391 +1724226300,HTTPS,8113,13434 +1724226300,SSL client,4194,6381 +1724226300,Sharepoint Online,4194,6381 +1724226300,HTTPS,55171,21707 +1724226300,__unknown,30512,18907 +1724226300,HTTPS,55117,56952 +1724226300,SSL client,14272,14482 +1724226300,Microsoft,4988,1637 +1724226300,Sharepoint Online,9284,12845 +1724226300,HTTPS,396450,1746360 +1724226300,SSL client,7828,17843 +1724226300,Sharepoint Online,5856,12461 +1724226300,Discord,1972,5382 +1724226300,__unknown,64541,1544651 +1724226300,Google,2390,2817 +1724226300,Skype,2463,7562 +1724226300,YouTube,9980,11832 +1724226300,TeamViewer,20693,40113 +1724226300,Steam,7208,15619 +1724226300,HTTPS,1187053,9955865 +1724226300,iCloud,12624,14494 +1724226300,Avast,1254,8524 +1724226300,SSL client,73191,239188 +1724226300,Microsoft,6249,19866 +1724226300,Yandex,11177,139584 +1724226300,Office 365,19846,18890 +1724226300,__unknown,171859,119590 +1724226300,Bing,6757,97779 +1724226300,Google APIs,10196,27856 +1724226300,Google,10989,54467 +1724226300,MSN,3753,10535 +1724226300,HTTP,3951,3646 +1724226300,Microsoft Update,23643,70864 +1724226300,Skype,16769,27686 +1724226300,VKontakte,48491,46776 +1724226300,Odnoklassniki,14720,27008 +1724226300,Advanced Packaging Tool,3951,3646 +1724226300,HTTPS,993562,9113665 +1724226300,WhatsApp,1573,5617 +1724226300,Avast,1254,8823 +1724226300,SSL client,572367,2634649 +1724226300,Amazon Web Services,2124,8231 +1724226300,CloudFront,3742,1093 +1724226300,Ubuntu Update Manager,1621,1490 +1724226300,Microsoft,47882,1050154 +1724226300,Mail.Ru,101525,126147 +1724226300,Yandex,151988,697084 +1724226300,Ubuntu,2330,2156 +1724226300,Google Play,2520,6869 +1724226300,Rambler,18413,21928 +1724226300,Office 365,25010,274959 +1724226300,Sharepoint Online,986,5946 +1724226300,Weborama,1940,5379 +1724226300,Office Mobile,55868,45031 +1724226300,Telegram,12626,40361 +1724226300,Stripe,20251,12160 +1724226300,DNS over HTTPS,1205,5393 +1724226300,ICMP,5494,0 +1724226300,HTTPS,57412,113265 +1724226300,__unknown,43770,1569940 +1724226300,HTTPS,21481,20683 +1724226300,Odnoklassniki,6056,13020 +1724226300,HTTPS,32660,24454 +1724226300,SSL client,6056,13020 +1724226300,__unknown,399221,937171 +1724226300,Google,17312,18003 +1724226300,Gmail,66946,724129 +1724226300,IMAPS,35863,589868 +1724226300,HTTPS,119963,341290 +1724226300,SSL client,128823,878964 +1724226300,Yandex,44565,136832 +1724226300,ICMP,4080,4080 +1724226300,__unknown,1581339,13372217 +1724226300,BITS,11949,100361 +1724226300,BitTorrent,310,496 +1724226300,DHCPv6,163,0 +1724226300,Google APIs,50922,85619 +1724226300,Google,231210,177626 +1724226300,DNS,21996,0 +1724226300,Gmail,13556,16159 +1724226300,Google Analytics,2105,6832 +1724226300,HTTP,34616,1364485 +1724226300,Microsoft Update,769,943 +1724226300,NetBIOS-dgm,243,0 +1724226300,NTP,810,810 +1724226300,STUN,2836,4114 +1724226300,YouTube,10921,93424 +1724226300,VKontakte,15191,73809 +1724226300,Odnoklassniki,1915,9279 +1724226300,HTTPS,728896,4742236 +1724226300,WhatsApp,7124,1669 +1724226300,Mozilla,1607,4671 +1724226300,SSL client,341369,512448 +1724226300,CloudFront,2687,11177 +1724226300,Microsoft,34192,1365383 +1724226300,Yandex,1253,907 +1724226300,Google Play,2492,12664 +1724226300,ICMP,18572,1260 +1724226300,Weborama,3211,8685 +1724226300,DNS over HTTPS,37037,95569 +1724226300,IPv6 No Next Header,98,0 +1724226300,CoAP,1372,1008 +1724226300,__unknown,1072564,16797158 +1724226300,BITS,1857,4542 +1724226300,BitTorrent,153,0 +1724226300,Google APIs,15156,33403 +1724226300,Google,23062,69057 +1724226300,QQ,618,343 +1724226300,BitTorrent tracker,153,0 +1724226300,Chrome,835,1224 +1724226300,DNS,49105,47655 +1724226300,Firefox,1458,4219 +1724226300,Gmail,6987,4030 +1724226300,HTTP,4364829,258308177 +1724226300,Internet Explorer,1257,1643 +1724226300,iTunes,2475,16847 +1724226300,Launchpad,3126,2348 +1724226300,Microsoft Update,1624,1321 +1724226300,NTP,25860,6360 +1724226300,STUN,1230,1110 +1724226300,VKontakte,2670,8719 +1724226300,Advanced Packaging Tool,30244,27647 +1724226300,HTTPS,562524,12656254 +1724226300,WhatsApp,5755,1973 +1724226300,Apple sites,1881,4487 +1724226300,iCloud,30138,57281 +1724226300,Mozilla,1058,4046 +1724226300,Avast,764,782 +1724226300,SSL client,137867,477161 +1724226300,CloudFront,621,567 +1724226300,Ubuntu Update Manager,22278,20951 +1724226300,Microsoft,15731,597104 +1724226300,Mail.Ru,10963,22212 +1724226300,Yandex,11965,159890 +1724226300,Ubuntu,6263,5945 +1724226300,Microsoft CryptoAPI,2798,2327 +1724226300,Office 365,4289947,257646803 +1724226300,ICMP,4053,0 +1724226300,Weborama,3199,7715 +1724226300,360 Safeguard,363,1474 +1724226300,Yandex Market,8216,11034 +1724226300,Office Mobile,1116,13350 +1724226300,Telegram,61151,461274 +1724226300,Thin Manager TFTP,280,672 +1724226300,Edge Chromium,5911,16944 +1724226300,DNS over TLS,4580,19080 +1724226300,DNS over HTTPS,30839,104435 +1724226300,Notion,2677,5327 +1724226300,IPv6 No Next Header,196,0 +1724226600,__unknown,165160,180024 +1724226600,HTTPS,91197,177633 +1724226600,SSL client,91197,177633 +1724226600,Yandex,91197,177633 +1724226600,HTTPS,78154,38423 +1724226600,ICMP,21156,0 +1724226600,HTTPS,313350,167978 +1724226600,HTTPS,9718,12331 +1724226600,SSL client,5412,8730 +1724226600,Sharepoint Online,5412,8730 +1724226600,ICMP,8858,0 +1724226600,__unknown,4385,6796 +1724226600,HTTPS,140180,116646 +1724226600,SSL client,102250,89402 +1724226600,Yandex,6897,3962 +1724226600,Google Play,95353,85440 +1724226600,__unknown,200403,181438 +1724226600,Bing,3445,6425 +1724226600,Dropbox,3342,2537 +1724226600,Google,9636,6526 +1724226600,MSN,1487,7352 +1724226600,Gmail,15609,15307 +1724226600,HTTP,1950,1931 +1724226600,HTTPS,278202,2053398 +1724226600,iCloud,8946,139544 +1724226600,Mozilla,2143,4579 +1724226600,Avast,1254,9794 +1724226600,SSL client,129756,301696 +1724226600,Microsoft,5272,11036 +1724226600,VeriSign,943,976 +1724226600,Mail.Ru,15700,30417 +1724226600,Yandex,19007,39868 +1724226600,Microsoft CryptoAPI,1950,1931 +1724226600,Google Play,30281,3378 +1724226600,Rambler,11275,10330 +1724226600,Office 365,1194,8201 +1724226600,Discord,1165,6402 +1724226600,__unknown,581089,1009280 +1724226600,Bing,12505,44440 +1724226600,Google APIs,995,5503 +1724226600,Google,3580,17995 +1724226600,MSN,8913,24019 +1724226600,Adobe Software,9458,15600 +1724226600,Dell,3013,14535 +1724226600,Gmail,13949,16947 +1724226600,HTTP,16938,28829 +1724226600,Internet Explorer,592,803 +1724226600,Launchpad,574,496 +1724226600,Skype,20147,35445 +1724226600,SSL,32154,11237 +1724226600,YouTube,20507,124288 +1724226600,VKontakte,4551,10865 +1724226600,Odnoklassniki,21420,37564 +1724226600,Advanced Packaging Tool,1788,1689 +1724226600,IMAPS,13949,16947 +1724226600,HTTPS,4285569,110184408 +1724226600,WhatsApp,3282,5682 +1724226600,Apple sites,9106,45182 +1724226600,iCloud,3422,10799 +1724226600,Bing Maps,1117,8680 +1724226600,SSL client,2655249,89344095 +1724226600,Samsung,6317,28942 +1724226600,Amazon Web Services,1994,8068 +1724226600,Ubuntu Update Manager,1214,1193 +1724226600,Microsoft,326139,6613780 +1724226600,Mail.Ru,132759,267674 +1724226600,Yandex,86053,311015 +1724226600,Ubuntu,293,395 +1724226600,Nvidia,8311,4581 +1724226600,Microsoft CryptoAPI,1978,3542 +1724226600,uTorrent,1555,1428 +1724226600,Apple Maps,2792,6677 +1724226600,Rambler,15973,19411 +1724226600,Office 365,226301,6987431 +1724226600,Sharepoint Online,1671331,74603146 +1724226600,Microsoft Windows Live Services Authentication,22649,55234 +1724226600,Weborama,25012,32462 +1724226600,Edge Chromium,1461,3893 +1724226600,DNS over HTTPS,12075,38882 +1724226600,__unknown,273820,192295 +1724226600,HTTPS,53165,67675 +1724226600,SSL client,53165,67675 +1724226600,Telegram,53165,67675 +1724226600,HTTPS,37538,25477 +1724226600,__unknown,413524,20746534 +1724226600,Google,14145,19267 +1724226600,HTTPS,93847,202382 +1724226600,SSL client,14145,19267 +1724226600,__unknown,2626,2642 +1724226600,Gmail,23207,22134 +1724226600,HTTPS,81321,951130 +1724226600,SSL client,23207,22134 +1724226600,ICMP,860,0 +1724226600,__unknown,1878329,13314132 +1724226600,BitTorrent,1612,496 +1724226600,DHCPv6,978,0 +1724226600,Google APIs,41146,16738 +1724226600,Google Drive,10910,22063 +1724226600,Google,66627,138928 +1724226600,MSN,1874,942 +1724226600,Android browser,764,526 +1724226600,Chrome,1106,906 +1724226600,DNS,22005,0 +1724226600,Gmail,55829,567475 +1724226600,HTTP,151307,20229808 +1724226600,Microsoft Update,979,817 +1724226600,NTP,2430,2430 +1724226600,STUN,1252,814 +1724226600,Odnoklassniki,7797,17396 +1724226600,IMAPS,45708,526754 +1724226600,HTTPS,235177,620761 +1724226600,SSL client,188803,776267 +1724226600,Microsoft,148458,20227559 +1724226600,Yandex,1253,907 +1724226600,Microsoft CryptoAPI,979,817 +1724226600,ICMP,28425,0 +1724226600,Telegram,1251,7068 +1724226600,Thin Manager TFTP,2540,2730 +1724226600,Grammarly,1943,7395 +1724226600,DNS over HTTPS,30878,84195 +1724226600,IPv6 No Next Header,196,0 +1724226600,__unknown,1137817,6047768 +1724226600,BitTorrent,1488,0 +1724226600,DHCPv6,163,0 +1724226600,Google APIs,81962185,2189703 +1724226600,Google,26129,65168 +1724226600,Adobe Software,1809,1301 +1724226600,Apple Store,15097,54178 +1724226600,DNS,50290,45355 +1724226600,Google Analytics,1055,5849 +1724226600,HTTP,112276,79822 +1724226600,Launchpad,3200,2348 +1724226600,Microsoft Update,2329,1817 +1724226600,NetBIOS-dgm,250,0 +1724226600,NTP,14640,4890 +1724226600,SSL,13919,19736 +1724226600,YouTube,1387,5036 +1724226600,VKontakte,2584,6205 +1724226600,Odnoklassniki,1084,3391 +1724226600,Advanced Packaging Tool,26863,24398 +1724226600,HTTPS,82877620,18771316 +1724226600,WhatsApp,6179,7749 +1724226600,APNS,12209,5672 +1724226600,Apple sites,5730,38183 +1724226600,iCloud,15175,25959 +1724226600,Dictionary.com,2228,8924 +1724226600,Mozilla,3952,9984 +1724226600,Avast,382,391 +1724226600,SSL client,82139429,2965566 +1724226600,Ubuntu Update Manager,19458,18268 +1724226600,Microsoft,51723,22020 +1724226600,Mail.Ru,6641,26553 +1724226600,Yandex,26154,349388 +1724226600,Ubuntu,5121,4700 +1724226600,Microsoft CryptoAPI,4944,4026 +1724226600,Microsoft NCSI,756,974 +1724226600,Microsoft WNS,633,186 +1724226600,Rubicon Project,2883,6422 +1724226600,33Across,8048,25876 +1724226600,Pocket,2704,6173 +1724226600,Casale,1181,6282 +1724226600,Criteo,5941,11300 +1724226600,Smart AdServer,19168,27850 +1724226600,Rambler,7542,23863 +1724226600,Microsoft Windows Live Services Authentication,948,22470 +1724226600,Google Hangouts,1710,14064 +1724226600,ICMP,2901,0 +1724226600,Telegram,5275,32165 +1724226600,Edge Chromium,3162,8188 +1724226600,DNS over TLS,5990,23604 +1724226600,DNS over HTTPS,14720,45642 +1724226600,Notion,1310,4393 +1724226600,IPv6 No Next Header,98,0 +1724226900,Thin Manager TFTP,252,196 +1724226900,__unknown,83480,90610 +1724226900,SSL,6664,14000 +1724226900,SSL client,6664,14000 +1724226900,Google Hangouts,6664,14000 +1724226900,Google,82894,87400 +1724226900,TwitchTV,1244419,60414 +1724226900,HTTPS,1327313,147814 +1724226900,SSL client,1327313,147814 +1724226900,HTTPS,45753,62377 +1724226900,SSL client,45753,62377 +1724226900,Telegram,45753,62377 +1724226900,HTTPS,5709,11565 +1724226900,SSL client,5709,11565 +1724226900,Sharepoint Online,5709,11565 +1724226900,__unknown,705,0 +1724226900,HTTPS,112491,39592 +1724226900,SSL client,108265,35362 +1724226900,Yandex,108265,35362 +1724226900,HTTPS,91922,87696 +1724226900,__unknown,97301,66407 +1724226900,HTTPS,31179,35055 +1724226900,SSL client,2536,1966 +1724226900,Yandex,2536,1966 +1724226900,DNS over HTTPS,63970,151509 +1724226900,__unknown,293350,2473410 +1724226900,Bing,3470,6484 +1724226900,BITS,4688,10891 +1724226900,Google Drive,7763,57923 +1724226900,Kaspersky,517,1451 +1724226900,Chrome,698,741 +1724226900,Gmail,8508,11797 +1724226900,HTTP,11258,19970 +1724226900,Microsoft Update,1950,1534 +1724226900,Odnoklassniki,2918,8085 +1724226900,HTTPS,595058,2035855 +1724226900,Avast,1473,9779 +1724226900,SSL client,116807,514960 +1724226900,Samsung,3027,7135 +1724226900,Amazon Web Services,1994,7940 +1724226900,Microsoft,32298,57204 +1724226900,Mail.Ru,14501,17566 +1724226900,Yandex,19521,104244 +1724226900,Microsoft CryptoAPI,5355,6887 +1724226900,uTorrent,11196,19578 +1724226900,Sharepoint Online,10138,207225 +1724226900,__unknown,1040384,1484368 +1724226900,Dropbox,1842,1961 +1724226900,Google,3264,10587 +1724226900,DNS,768,1288 +1724226900,Google Analytics,3477,7752 +1724226900,HTTP,33609,37376 +1724226900,Microsoft Update,2410,5641 +1724226900,Skype,9085,11210 +1724226900,YouTube,17561,66451 +1724226900,VKontakte,4403,9619 +1724226900,Odnoklassniki,1780,3265 +1724226900,Advanced Packaging Tool,3048,2773 +1724226900,SMTPS,531385,21589 +1724226900,HTTPS,2036814,59543893 +1724226900,WhatsApp,1693,5633 +1724226900,Mozilla,2141,4699 +1724226900,Avast,1270,9346 +1724226900,SSL client,1352642,2177697 +1724226900,Amazon Web Services,5909,23409 +1724226900,Ubuntu Update Manager,2427,2326 +1724226900,Microsoft,221174,254118 +1724226900,Mail.Ru,370151,1034515 +1724226900,Yandex,663071,530466 +1724226900,Microsoft CryptoAPI,1644,3656 +1724226900,Microsoft NCSI,291,427 +1724226900,Pocket,1692,4156 +1724226900,Office 365,30188,97554 +1724226900,Sharepoint Online,2698,68493 +1724226900,Microsoft Windows Live Services Authentication,12799,31800 +1724226900,Weborama,6213,9669 +1724226900,Telegram,60,198 +1724226900,GISMETEO,1982,9299 +1724226900,DNS over HTTPS,4736,13926 +1724226900,DNS over HTTPS,386143,905411 +1724226900,HTTPS,50939,21070 +1724226900,HTTPS,8394,11541 +1724226900,SSL client,8394,11541 +1724226900,DNS over HTTPS,8394,11541 +1724226900,HTTPS,8520,10027 +1724226900,ICMP,1476,0 +1724226900,__unknown,5886,47488 +1724226900,Google APIs,13820,19616 +1724226900,Windows Live,8464,29141 +1724226900,SSL,2775,9190 +1724226900,HTTPS,339443,573005 +1724226900,SSL client,30827,56680 +1724226900,Yandex,8543,7923 +1724226900,__unknown,4238,3078 +1724226900,Google,26049,14563 +1724226900,HTTPS,225221,183493 +1724226900,SSL client,26049,14563 +1724226900,ICMP,23898,3480 +1724226900,DNS over HTTPS,3514,9966 +1724226900,CoAP,2156,1584 +1724226900,__unknown,1219735,3368049 +1724226900,BitTorrent,1612,496 +1724226900,Google APIs,15915,88022 +1724226900,Google,27992,98749 +1724226900,Google Translate,3664,7386 +1724226900,Chrome,1335,929 +1724226900,DNS,18226,0 +1724226900,Firefox,1482,1856 +1724226900,Gmail,8560,15055 +1724226900,Google Analytics,3596,3112 +1724226900,HTTP,3377,3246 +1724226900,NetBIOS-dgm,243,0 +1724226900,NTP,1710,1710 +1724226900,STUN,2678,3782 +1724226900,YouTube,25151,164087 +1724226900,HTTPS,574648,1052454 +1724226900,Mozilla,2434,6464 +1724226900,SSL client,163345,459578 +1724226900,Outbrain,6552,18167 +1724226900,Mail.Ru,43966,21373 +1724226900,Yandex,8510,10965 +1724226900,Microsoft CryptoAPI,560,461 +1724226900,Apple Maps,2393,30773 +1724226900,Google Play,2332,8911 +1724226900,Casale,6582,7986 +1724226900,ICMP,31840,0 +1724226900,Weborama,1796,4912 +1724226900,Google Sign in,6295,4389 +1724226900,Thin Manager TFTP,276,106 +1724226900,DNS over HTTPS,5201,12161 +1724226900,__unknown,724701,1949787 +1724226900,BitTorrent,525,198 +1724226900,DHCPv6,978,0 +1724226900,Google APIs,11852,29011 +1724226900,Google,35344,90062 +1724226900,MSN,577,501 +1724226900,QQ,678,343 +1724226900,Android browser,457,333 +1724226900,BitTorrent tracker,153,198 +1724226900,DNS,39091,39530 +1724226900,Google Analytics,2214,5176 +1724226900,HTTP,153728,2541606 +1724226900,Internet Explorer,678,343 +1724226900,Launchpad,3200,2414 +1724226900,Microsoft Update,88317,2421721 +1724226900,NTP,13020,3270 +1724226900,SSL,5999,22924 +1724226900,STUN,1860,3300 +1724226900,YouTube,7946,6527 +1724226900,Steam,3667,35498 +1724226900,Advanced Packaging Tool,32142,29678 +1724226900,Windows Update,67896,1337066 +1724226900,HTTPS,554532,10321526 +1724226900,Apple sites,925,3972 +1724226900,Avast,2839,11251 +1724226900,SSL client,151418,672428 +1724226900,Ubuntu Update Manager,24737,23482 +1724226900,Microsoft,3761,56988 +1724226900,VeriSign,566,2141 +1724226900,Mail.Ru,5384,5479 +1724226900,Yandex,45193,408580 +1724226900,Ubuntu,5055,4696 +1724226900,Asus,13005,10539 +1724226900,Microsoft CryptoAPI,3729,7076 +1724226900,Microsoft NCSI,471,487 +1724226900,Microsoft WNS,1204,8468 +1724226900,33Across,2486,8150 +1724226900,Smart AdServer,7654,11287 +1724226900,Google Hangouts,797,7091 +1724226900,ICMP,8225,0 +1724226900,Telegram,44491,296591 +1724226900,Google Sign in,6393,8511 +1724226900,Thin Manager TFTP,108,108 +1724226900,Edge Chromium,1581,4092 +1724226900,DNS over TLS,2158,9538 +1724226900,DNS over HTTPS,43146,150773 +1724226900,IPv6 No Next Header,294,0 +1724227200,VKontakte,613010,120402 +1724227200,HTTPS,613010,120402 +1724227200,SSL client,613010,120402 +1724227200,SSL,22935,31344 +1724227200,SSL client,22935,31344 +1724227200,Google Hangouts,22935,31344 +1724227200,__unknown,106650,112383 +1724227200,Google,43336,53036 +1724227200,HTTPS,43336,53036 +1724227200,SSL client,43336,53036 +1724227200,HTTPS,929290,82603 +1724227200,Google,46263,35889 +1724227200,HTTPS,46263,35889 +1724227200,SSL client,46263,35889 +1724227200,SSL,3741,10964 +1724227200,SSL client,3741,10964 +1724227200,Google Hangouts,3741,10964 +1724227200,SSL,7481,15582 +1724227200,HTTPS,15551,17629 +1724227200,SSL client,7481,15582 +1724227200,Google Hangouts,7481,15582 +1724227200,HTTPS,17630,18303 +1724227200,SSL client,6807,6518 +1724227200,Office 365,6807,6518 +1724227200,__unknown,22293,94111 +1724227200,Google APIs,2027,7279 +1724227200,HTTPS,799199,798472 +1724227200,SSL client,761342,765014 +1724227200,Yandex,738096,739272 +1724227200,Google Play,21219,18463 +1724227200,__unknown,22281,16223 +1724227200,Dropbox,8503,1323 +1724227200,Google,25844,38382 +1724227200,MSN,1503,10583 +1724227200,Gmail,5896,3447 +1724227200,HTTP,1225,3207 +1724227200,Microsoft Update,116916,7014 +1724227200,Skype,2582,8338 +1724227200,YouTube,19244,367075 +1724227200,VKontakte,2350,10912 +1724227200,HTTPS,1694761,3693246 +1724227200,Avast,1314,11400 +1724227200,SSL client,1492281,1171818 +1724227200,CloudFront,1602,7852 +1724227200,Microsoft,6846,14076 +1724227200,Mail.Ru,78594,150072 +1724227200,Yandex,1219433,538075 +1724227200,Microsoft CryptoAPI,1225,3207 +1724227200,Google Play,2143,5948 +1724227200,DNS over HTTPS,53300,131574 +1724227200,__unknown,97110,391231 +1724227200,Bing,13919,19128 +1724227200,Dropbox,2905,6233 +1724227200,Google APIs,15323,37959 +1724227200,Google,11854,21391 +1724227200,MSN,17532,51708 +1724227200,Dell,1177,4372 +1724227200,Gmail,3187,7303 +1724227200,HTTP,2857,4500 +1724227200,Microsoft Update,52101,70314 +1724227200,VKontakte,5293,9570 +1724227200,TwitchTV,110132,11205 +1724227200,IMAPS,3187,7303 +1724227200,HTTPS,2247263,30005489 +1724227200,WhatsApp,2008,10255 +1724227200,Apple sites,8448,33329 +1724227200,iCloud,14814,34552 +1724227200,Mozilla,2141,4639 +1724227200,SSL client,1179440,1729501 +1724227200,Amazon Web Services,6966,37257 +1724227200,CloudFront,3742,1093 +1724227200,Microsoft,225889,181189 +1724227200,Mail.Ru,274714,491886 +1724227200,Yandex,221813,283979 +1724227200,Java,1942,4042 +1724227200,Microsoft Azure,2538,9102 +1724227200,Apple Maps,1688,10176 +1724227200,Google Play,4589,6939 +1724227200,Rambler,9939,14305 +1724227200,Exchange Online,1317,8005 +1724227200,Office 365,98197,266174 +1724227200,Sharepoint Online,3232,7055 +1724227200,Microsoft Windows Live Services Authentication,37663,78203 +1724227200,Office Mobile,12077,7870 +1724227200,GISMETEO,2200,9531 +1724227200,Grammarly,12251,9888 +1724227200,Stripe,3487,5322 +1724227200,DNS over HTTPS,179057,400510 +1724227200,SSL,4994,7352 +1724227200,__unknown,6120,5074 +1724227200,HTTPS,14252,27888 +1724227200,Apple sites,1525,7622 +1724227200,SSL client,11326,16579 +1724227200,Siri,8524,7267 +1724227200,Apple Maps,2926,11309 +1724227200,ICMP,8830,5820 +1724227200,Stripe,1277,1690 +1724227200,__unknown,1209966,955955 +1724227200,VKontakte,143684,190425 +1724227200,HTTPS,143684,190425 +1724227200,SSL client,143684,190425 +1724227200,DNS over HTTPS,66833,182123 +1724227200,__unknown,40007,32680 +1724227200,Google,22389,22276 +1724227200,SSL,1856,4122 +1724227200,HTTPS,189880,204070 +1724227200,SSL client,27223,33017 +1724227200,Outbrain,2978,6619 +1724227200,Google Hangouts,1856,4122 +1724227200,ICMP,574,0 +1724227200,__unknown,1643941,44299043 +1724227200,BitTorrent,1013,496 +1724227200,DHCPv6,163,0 +1724227200,Google APIs,14784,25685 +1724227200,Google,33076,58336 +1724227200,MSN,4685,10267 +1724227200,BitTorrent tracker,331,0 +1724227200,DNS,16804,0 +1724227200,Gmail,56864,59044 +1724227200,HTTP,2624,11560 +1724227200,Microsoft Update,2022,10431 +1724227200,NTP,35800,7560 +1724227200,STUN,1542,888 +1724227200,HTTPS,258337,1839109 +1724227200,SSL client,168481,1107938 +1724227200,Yandex,11902,886561 +1724227200,Microsoft CryptoAPI,1893,10427 +1724227200,Pocket,2764,6173 +1724227200,Google Play,10753,1548 +1724227200,Lijit,20720,39227 +1724227200,ICMP,15922,0 +1724227200,Weborama,2885,7685 +1724227200,Google Sign in,6221,4113 +1724227200,Thin Manager TFTP,276,106 +1724227200,Grammarly,2291,7887 +1724227200,DNS over HTTPS,18337,48875 +1724227200,IPv6 No Next Header,294,0 +1724227200,__unknown,1047370,10442425 +1724227200,BITS,7311,186849 +1724227200,Eset,888,553 +1724227200,Google APIs,60329,78802 +1724227200,Google Drive,9618,11003 +1724227200,Google,10463,35063 +1724227200,MSN,1035,5670 +1724227200,QQ,678,343 +1724227200,DNS,50307,43800 +1724227200,Firefox,1482,1855 +1724227200,HTTP,278802,9899071 +1724227200,Internet Explorer,678,343 +1724227200,Launchpad,3200,2414 +1724227200,Microsoft Update,61167,1801535 +1724227200,NTP,990,990 +1724227200,YouTube,4002,49991 +1724227200,VKontakte,47394,889603 +1724227200,Advanced Packaging Tool,27240,24773 +1724227200,Windows Update,38987,706449 +1724227200,HTTPS,2069855,3364905 +1724227200,Apple sites,5986,92228 +1724227200,iCloud,1451125,58726 +1724227200,Avast,2638,9698 +1724227200,Opera,1757,4292 +1724227200,SSL client,1696223,2242360 +1724227200,Ubuntu Update Manager,19739,18505 +1724227200,Microsoft,164448,8025222 +1724227200,Mail.Ru,5747,23444 +1724227200,Yandex,70283,919263 +1724227200,Ubuntu,4726,4311 +1724227200,Microsoft CryptoAPI,5625,5337 +1724227200,uTorrent,2699,6194 +1724227200,Casale,1115,5073 +1724227200,Smart AdServer,7522,10292 +1724227200,Rambler,6533,18445 +1724227200,ICMP,3091,784 +1724227200,Weborama,2836,7715 +1724227200,Telegram,48743,354179 +1724227200,Edge Chromium,4216,10914 +1724227200,DNS over TLS,5659,23849 +1724227200,DNS over HTTPS,61360,186257 +1724227500,Thin Manager TFTP,672,280 +1724227500,__unknown,83920,91476 +1724227500,HTTPS,101232,361312 +1724227500,SSL client,101232,361312 +1724227500,Yandex,101232,361312 +1724227500,HTTPS,1873109,35821379 +1724227500,HTTPS,47301,109541 +1724227500,SSL client,47301,109541 +1724227500,Yandex,47301,109541 +1724227500,DNS over HTTPS,104492,197795 +1724227500,HTTPS,44967,63552 +1724227500,SSL client,44967,63552 +1724227500,Yandex,44967,63552 +1724227500,SSL,11043,18472 +1724227500,HTTPS,10235,28657 +1724227500,SSL client,10235,28657 +1724227500,Yandex,10235,28657 +1724227500,HTTPS,19853,20788 +1724227500,SSL client,4851,9886 +1724227500,Sharepoint Online,4851,9886 +1724227500,HTTPS,45001,62892 +1724227500,SSL client,45001,62892 +1724227500,Telegram,45001,62892 +1724227500,Gmail,646501,3289739 +1724227500,HTTPS,41900618,4784030 +1724227500,SSL client,41900618,4784030 +1724227500,Yandex,41254117,1494291 +1724227500,HTTPS,95862,77978 +1724227500,SSL client,95862,77978 +1724227500,Yandex,95862,77978 +1724227500,__unknown,53116,12025 +1724227500,Windows Live,26414,7314 +1724227500,HTTPS,113212,60295 +1724227500,SSL client,113212,60295 +1724227500,Yandex,86798,52981 +1724227500,__unknown,5777,21490 +1724227500,HTTPS,179100,238215 +1724227500,SSL client,179100,238215 +1724227500,Yandex,179100,238215 +1724227500,HTTPS,19874,34260 +1724227500,SSL client,19874,34260 +1724227500,Yandex,19874,34260 +1724227500,HTTPS,25189,140398 +1724227500,SSL client,25189,140398 +1724227500,Microsoft,8717,122003 +1724227500,Yandex,16472,18395 +1724227500,DNS over HTTPS,24590,57849 +1724227500,__unknown,11969,8246 +1724227500,HTTPS,126271,192776 +1724227500,SSL client,126271,192776 +1724227500,Yandex,12167,14765 +1724227500,Notion,114104,178011 +1724227500,__unknown,5472,0 +1724227500,HTTPS,2590880,359654 +1724227500,SSL client,2577140,346586 +1724227500,Yandex,2548278,322947 +1724227500,Google Play,28862,23639 +1724227500,__unknown,109356,114531 +1724227500,Google,163267,178631 +1724227500,HTTP,3690,16523 +1724227500,VKontakte,46089,60289 +1724227500,HTTPS,806740,33770901 +1724227500,Avast,1457,9103 +1724227500,SSL client,304190,401619 +1724227500,Microsoft,8592,13582 +1724227500,Mail.Ru,3815,8029 +1724227500,Yandex,69934,68950 +1724227500,AMD,970,5091 +1724227500,Microsoft CryptoAPI,871,2221 +1724227500,Office 365,871,2221 +1724227500,Google Sign in,4963,3565 +1724227500,Microsoft Teams,3060,49604 +1724227500,DNS over HTTPS,2043,4775 +1724227500,__unknown,1647613,7795359 +1724227500,Bing,3639,17683 +1724227500,Dropbox,3231,1320 +1724227500,Google APIs,2727,6658 +1724227500,Google,3477,6738 +1724227500,HTTP,139849,16278886 +1724227500,Microsoft Update,1494,1270 +1724227500,Skype,8017,94882 +1724227500,SSL,27461,34300 +1724227500,YouTube,20581,437722 +1724227500,Odnoklassniki,5520,10173 +1724227500,Advanced Packaging Tool,137388,16274030 +1724227500,IMAPS,6456,18624 +1724227500,HTTPS,2005877,45814051 +1724227500,WhatsApp,3767,10487 +1724227500,APNS,13552,7774 +1724227500,Apple sites,5145,20934 +1724227500,iCloud,22788,65428 +1724227500,Avast,3138,13176 +1724227500,SSL client,974646,6199620 +1724227500,Amazon Web Services,2354,11044 +1724227500,Ubuntu Update Manager,137388,16274030 +1724227500,Microsoft,42154,57604 +1724227500,Mail.Ru,613372,4227072 +1724227500,Yandex,147674,932221 +1724227500,Asus,767,9523 +1724227500,Microsoft CryptoAPI,1494,1270 +1724227500,Exchange Online,1257,8125 +1724227500,Office 365,36885,206319 +1724227500,Sharepoint Online,33756,55808 +1724227500,Weborama,3005,2198 +1724227500,Telegram,16337,111695 +1724227500,GISMETEO,2134,9167 +1724227500,Edge Chromium,527,1949 +1724227500,DNS over HTTPS,16293,67621 +1724227500,ICMP,7626,0 +1724227500,HTTPS,45181,66895 +1724227500,SSL client,45181,66895 +1724227500,Telegram,45181,66895 +1724227500,DNS over HTTPS,16721,44504 +1724227500,__unknown,187,228 +1724227500,__unknown,39225,28553 +1724227500,Google,6734,13608 +1724227500,HTTPS,394992,680878 +1724227500,SSL client,6734,13608 +1724227500,ICMP,2256,0 +1724227500,__unknown,1526816,1679780 +1724227500,VKontakte,24062,78845 +1724227500,HTTPS,74587,342567 +1724227500,SSL client,26484,87500 +1724227500,Microsoft,2422,8655 +1724227500,ICMP,656,0 +1724227500,__unknown,764228,1035559 +1724227500,Bing,5668,6860 +1724227500,BitTorrent,310,496 +1724227500,DHCPv6,978,0 +1724227500,Google APIs,22861,67654 +1724227500,Google Drive,9475,18206 +1724227500,Google,23781,516090 +1724227500,Kaspersky,548,541 +1724227500,Chrome,4935,470946 +1724227500,DNS,18868,0 +1724227500,HTTP,8833,482149 +1724227500,NetBIOS-dgm,250,0 +1724227500,NTP,13920,4170 +1724227500,Skype,1149,7136 +1724227500,STUN,1480,888 +1724227500,VKontakte,12694,24335 +1724227500,Odnoklassniki,2559,7244 +1724227500,HTTPS,854757,39738098 +1724227500,iCloud,3932,9071 +1724227500,Mozilla,2885,1819 +1724227500,SSL client,137626,301324 +1724227500,Microsoft,693,7967 +1724227500,Yandex,7175,85464 +1724227500,Atlassian,44137,13411 +1724227500,Microsoft WNS,693,7967 +1724227500,ICMP,6547,0 +1724227500,Weborama,3937,10033 +1724227500,Telegram,2205,7730 +1724227500,Thin Manager TFTP,196,252 +1724227500,DNS over HTTPS,19250,51534 +1724227500,IPv6 No Next Header,196,0 +1724227500,__unknown,744556,2708061 +1724227500,Apple Update,2351,5227 +1724227500,BITS,1842,14365 +1724227500,BitTorrent,153,537 +1724227500,DHCPv6,163,0 +1724227500,Google APIs,31306,59745 +1724227500,Google Drive,16575,6660 +1724227500,Google,28850,119907 +1724227500,Kaspersky,548,541 +1724227500,QQ,678,343 +1724227500,BitTorrent tracker,153,537 +1724227500,Chrome,2591,34726 +1724227500,DNS,48905,43883 +1724227500,Gmail,6986,4143 +1724227500,HTTP,80297,851733 +1724227500,Internet Explorer,678,343 +1724227500,Launchpad,3496,2480 +1724227500,Microsoft Update,18404,735195 +1724227500,NetBIOS-dgm,243,0 +1724227500,NTP,12480,2730 +1724227500,YouTube,2137,6004 +1724227500,Odnoklassniki,1479,5851 +1724227500,Advanced Packaging Tool,28202,25682 +1724227500,IMAPS,8088,24800 +1724227500,HTTPS,419995,4964608 +1724227500,Apple sites,3678,11282 +1724227500,iCloud,13403,17457 +1724227500,Avast,830,848 +1724227500,SSL client,177208,3707746 +1724227500,Ubuntu Update Manager,21088,19950 +1724227500,VeriSign,566,2141 +1724227500,Mail.Ru,8088,24800 +1724227500,Yandex,39157,3398680 +1724227500,MDNS,88,0 +1724227500,Ubuntu,5318,5096 +1724227500,Microsoft CryptoAPI,6975,8188 +1724227500,Microsoft NCSI,985,974 +1724227500,33Across,2426,8210 +1724227500,Smart AdServer,7536,9758 +1724227500,Rambler,5131,12815 +1724227500,Office 365,1842,14365 +1724227500,ICMP,2949,0 +1724227500,ICMP for IPv6,70,0 +1724227500,Telegram,23301,77466 +1724227500,Google Sign in,4530,7936 +1724227500,Zoom,10248,185416 +1724227500,Thin Manager TFTP,276,106 +1724227500,Edge Chromium,3462,11402 +1724227500,DNS over TLS,3435,14309 +1724227500,DNS over HTTPS,48549,160487 +1724227500,Notion,2531,2227 +1724227800,Skype,47219,41510 +1724227800,HTTPS,47219,41510 +1724227800,SSL client,47219,41510 +1724227800,HTTPS,24257,42590 +1724227800,SSL client,24257,42590 +1724227800,Yandex,24257,42590 +1724227800,HTTPS,142486,50633 +1724227800,SSL client,142486,50633 +1724227800,Yandex,142486,50633 +1724227800,__unknown,819,420 +1724227800,__unknown,970,360 +1724227800,HTTPS,101498,129592 +1724227800,SSL client,101498,129592 +1724227800,Telegram,101498,129592 +1724227800,HTTPS,43673,20956 +1724227800,SSL client,11804,7371 +1724227800,Yandex,11804,7371 +1724227800,HTTPS,98896,484988 +1724227800,SSL client,54469,61976 +1724227800,Telegram,54469,61976 +1724227800,__unknown,60040,63003 +1724227800,HTTPS,32424,31871 +1724227800,__unknown,40533,7064 +1724227800,Google APIs,6553,18110 +1724227800,Google,8122,5315 +1724227800,HTTP,651,766 +1724227800,Microsoft Update,651,766 +1724227800,HTTPS,258693,350522 +1724227800,Apple sites,2079,8644 +1724227800,Mozilla,2136,4639 +1724227800,Avast,1254,10620 +1724227800,SSL client,135401,201012 +1724227800,Microsoft,24597,37520 +1724227800,Mail.Ru,17912,29023 +1724227800,Yandex,19353,19290 +1724227800,Microsoft CryptoAPI,651,766 +1724227800,Office 365,6225,8976 +1724227800,DNS over HTTPS,14344,33681 +1724227800,Notion,47170,58875 +1724227800,__unknown,376644,387418 +1724227800,Apple Update,1787,7277 +1724227800,Google APIs,2230,5677 +1724227800,MSN,13469,30565 +1724227800,DNS,422,520 +1724227800,HTTP,141430,5032912 +1724227800,Reddit,4340,26044 +1724227800,Skype,4957,7575 +1724227800,VKontakte,5733,10455 +1724227800,Odnoklassniki,3680,6722 +1724227800,Steam,7035,15633 +1724227800,Advanced Packaging Tool,1214,1133 +1724227800,HTTPS,883981,21627790 +1724227800,Apple sites,9408,16951 +1724227800,iCloud,11164,30053 +1724227800,Mozilla,6198,13906 +1724227800,SSL client,561085,1030844 +1724227800,Amazon Web Services,3259,21490 +1724227800,Ubuntu Update Manager,1214,1133 +1724227800,Microsoft,400586,5169809 +1724227800,NIH,22487,381362 +1724227800,Mail.Ru,124742,155102 +1724227800,Yandex,18342,50563 +1724227800,Apple Maps,2870,7538 +1724227800,Office 365,8565,26749 +1724227800,Microsoft Windows Live Services Authentication,50058,79608 +1724227800,GISMETEO,1879,2777 +1724227800,Zoom,693,18708 +1724227800,Edge Chromium,934,2668 +1724227800,DNS over HTTPS,8679,35078 +1724227800,__unknown,122689,164309 +1724227800,Google,68773,89267 +1724227800,HTTPS,68773,89267 +1724227800,SSL client,68773,89267 +1724227800,STUN,6642,5846 +1724227800,HTTPS,11890,62030 +1724227800,SSL client,11890,62030 +1724227800,Yandex,11890,62030 +1724227800,HTTPS,519,4834 +1724227800,SSL client,519,4834 +1724227800,Exchange Online,519,4834 +1724227800,ICMP,3772,0 +1724227800,__unknown,366078,17743693 +1724227800,HTTPS,77156,42483 +1724227800,ICMP,4500,4500 +1724227800,__unknown,1519591,1286288 +1724227800,HTTPS,39198,71587 +1724227800,ICMP,10414,0 +1724227800,CoAP,2156,1584 +1724227800,__unknown,608,4890 +1724227800,SSL,56141,23214 +1724227800,HTTPS,41862,101306 +1724227800,APNS,56141,23214 +1724227800,SSL client,76467,100224 +1724227800,Microsoft,2568,8650 +1724227800,Lijit,17758,68360 +1724227800,ICMP,328,0 +1724227800,DNS over HTTPS,4793,9783 +1724227800,__unknown,1220134,4884701 +1724227800,BitTorrent,310,496 +1724227800,Google APIs,18888,35862 +1724227800,Google Drive,16817,7053 +1724227800,Google,101619,1536774 +1724227800,Chrome,1374,10008 +1724227800,DNS,20506,0 +1724227800,Gmail,12423,46276 +1724227800,HTTP,10294,21974 +1724227800,Internet Explorer,506,983 +1724227800,Microsoft Update,2669,2178 +1724227800,NTP,15450,5610 +1724227800,SSL,232373,15196 +1724227800,STUN,1274,1258 +1724227800,YouTube,6333,9473 +1724227800,VKontakte,90353,231101 +1724227800,Odnoklassniki,2549,7357 +1724227800,Advanced Packaging Tool,1557,1132 +1724227800,HTTPS,441467,2941552 +1724227800,APNS,232373,15196 +1724227800,Avast,506,983 +1724227800,SSL client,512200,1920191 +1724227800,GoDaddy,590,2993 +1724227800,Ubuntu Update Manager,922,566 +1724227800,Yandex,2312,7318 +1724227800,Ubuntu,635,566 +1724227800,Microsoft CryptoAPI,5334,8009 +1724227800,Google Play,22252,19483 +1724227800,Office 365,834,1366 +1724227800,ICMP,6279,0 +1724227800,Google Sign in,6281,4298 +1724227800,DNS over HTTPS,22273,66491 +1724227800,IPv6 No Next Header,196,0 +1724227800,__unknown,761552,1054650 +1724227800,DHCPv6,978,0 +1724227800,Google APIs,16586,46707 +1724227800,Google,77455,270007 +1724227800,MSN,4467,10463 +1724227800,QQ,738,277 +1724227800,Chrome,3652,86293 +1724227800,DNS,95527,88937 +1724227800,Gmail,105674,238964 +1724227800,HTTP,70460,158534 +1724227800,Internet Explorer,7186,2455 +1724227800,iTunes,1754,14615 +1724227800,Launchpad,2560,1918 +1724227800,LiveJournal,8486,188352 +1724227800,NTP,13200,3450 +1724227800,STUN,31912,370 +1724227800,Advanced Packaging Tool,29405,26911 +1724227800,IMAPS,20287,58227 +1724227800,HTTPS,1116098,5271403 +1724227800,Apple sites,6870,16479 +1724227800,iCloud,19280,39416 +1724227800,Avast,830,848 +1724227800,SSL client,331545,1966224 +1724227800,Ubuntu Update Manager,22640,21211 +1724227800,Microsoft,6494,17304 +1724227800,VeriSign,566,2141 +1724227800,Mail.Ru,21217,41530 +1724227800,Yandex,38534,1008522 +1724227800,Ubuntu,5905,5626 +1724227800,Microsoft CryptoAPI,6284,10268 +1724227800,Microsoft WNS,1155,1003 +1724227800,uTorrent,1647,964 +1724227800,Apple Maps,1437,5067 +1724227800,Smart AdServer,15071,20585 +1724227800,Lijit,1065,6211 +1724227800,ICMP,3781,0 +1724227800,Weborama,3309,8773 +1724227800,Gmail attachment,388,284 +1724227800,Telegram,1977,1468 +1724227800,Thin Manager TFTP,276,106 +1724227800,Edge Chromium,2168,6103 +1724227800,DNS over TLS,8543,33392 +1724227800,DNS over HTTPS,57596,181796 +1724227800,_err_4655,2454,1593 +1724227800,IPv6 No Next Header,196,0 +1724228099,HTTPS,387016,28265831 +1724228099,HTTPS,477863,23174767 +1724228099,HTTPS,1928381,1583385 +1724228099,Telegram,1928381,1583385 +1724228099,HTTPS,60813,83945 +1724228099,HTTPS,89184,90674 +1724228099,Zoom,89184,90674 +1724228099,HTTPS,66536,47929 +1724228099,__unknown,1244,1718 +1724228099,Google Drive,338904,129856 +1724228099,HTTPS,383021,191730 +1724228099,SSL client,383021,191730 +1724228099,ICMP,21648,0 +1724228099,Telegram,44117,61874 +1724228099,DNS over HTTPS,137570,373700 +1724228099,HTTPS,226685,8170641 +1724228099,__unknown,1994,5861 +1724228099,Google,445830,191375 +1724228099,HTTPS,473410,209354 +1724228099,SSL client,445830,191375 +1724228099,__unknown,27104,22513 +1724228099,__unknown,2688,17243 +1724228099,HTTPS,112255,2401029 +1724228099,HTTPS,81785,109013 +1724228099,SSL client,37776,32198 +1724228099,Google Play,27090,16500 +1724228099,Office 365,6263,9255 +1724228099,Sharepoint Online,4423,6443 +1724228099,__unknown,59724,27240 +1724228099,Dropbox,2711,1343 +1724228099,Google,24475,37180 +1724228099,MSN,1051,5859 +1724228099,HTTP,544,977 +1724228099,Skype,7404,11976 +1724228099,HTTPS,415423,610786 +1724228099,Avast,1463,10178 +1724228099,SSL client,256709,347507 +1724228099,Microsoft,4023,7594 +1724228099,Mail.Ru,26264,31412 +1724228099,King.com,938,4558 +1724228099,Yandex,161187,165766 +1724228099,Microsoft CryptoAPI,544,977 +1724228099,Google Play,2031,9860 +1724228099,Rambler,15679,8579 +1724228099,Office 365,1570,8201 +1724228099,ICMP,39190,0 +1724228099,DNS over HTTPS,3742,12840 +1724228099,Lenovo,1800,5029 +1724228099,Notion,6113,39972 +1724228099,__unknown,530571,3271838 +1724228099,Bing,3408,6421 +1724228099,Google APIs,11135,30177 +1724228099,Google,6010786,3894169 +1724228099,MSN,12140,78489 +1724228099,HTTP,9410,190211 +1724228099,iTunes,5239,26552 +1724228099,Launchpad,640,430 +1724228099,Reddit,224691,462537 +1724228099,SSL,13107,5851 +1724228099,VKontakte,1071,4331 +1724228099,Odnoklassniki,9200,16955 +1724228099,Advanced Packaging Tool,2441,2093 +1724228099,HTTPS,7449017,11686958 +1724228099,Apple sites,66481,3077273 +1724228099,iCloud,50634,228017 +1724228099,Avast,1254,8384 +1724228099,SSL client,7136562,8703496 +1724228099,CloudFront,1509,1062 +1724228099,Ubuntu Update Manager,1214,1133 +1724228099,Microsoft,7991,18208 +1724228099,Mail.Ru,276820,336807 +1724228099,Yandex,250708,78743 +1724228099,GitHub,1658,5976 +1724228099,Ubuntu,587,530 +1724228099,Microsoft CryptoAPI,1070,1017 +1724228099,Exchange Online,143838,32520 +1724228099,Office 365,3234,14747 +1724228099,Microsoft Windows Live Services Authentication,32553,68094 +1724228099,Weborama,4698,3911 +1724228099,Marketo,4687,170209 +1724228099,Telegram,1974,7564 +1724228099,Stripe,3342,5147 +1724228099,DNS over HTTPS,11393,40176 +1724228099,_err_4905,3275,98834 +1724228099,Notion,4609,29626 +1724228099,HTTPS,549,4772 +1724228099,SSL client,549,4772 +1724228099,Exchange Online,549,4772 +1724228099,HTTPS,1043,5012 +1724228099,SSL client,1043,5012 +1724228099,Office 365,1043,5012 +1724228099,__unknown,12596,14928 +1724228099,HTTPS,502161,1884772 +1724228099,__unknown,7751,22920 +1724228099,STUN,1148,962 +1724228099,HTTPS,27558,41067 +1724228099,SSL client,2636,5464 +1724228099,CloudFront,2636,5464 +1724228099,ICMP,1312,0 +1724228099,__unknown,2697090,5306116 +1724228099,BitTorrent,310,496 +1724228099,DHCPv6,163,0 +1724228099,Google APIs,3320,21244 +1724228099,Google,34528,77835 +1724228099,DNS,62183,0 +1724228099,Gmail,53500,70382 +1724228099,HTTP,2133,1672 +1724228099,LiveJournal,30099,58114 +1724228099,Microsoft Update,1317,1269 +1724228099,NTP,900,900 +1724228099,SSL,8733,5518 +1724228099,STUN,1646,1776 +1724228099,Odnoklassniki,2549,7357 +1724228099,HTTPS,279710,1097095 +1724228099,WhatsApp,2805,12567 +1724228099,APNS,8733,5518 +1724228099,SSL client,163168,323710 +1724228099,Yandex,4686,28085 +1724228099,Microsoft CryptoAPI,2133,1672 +1724228099,Google Play,13069,9740 +1724228099,Rambler,8263,32617 +1724228099,ICMP,104927,180 +1724228099,ICMP for IPv6,70,0 +1724228099,Gmail attachment,284,0 +1724228099,Thin Manager TFTP,196,252 +1724228099,Grammarly,2233,7870 +1724228099,DNS over HTTPS,17313,52181 +1724228099,IPv6 No Next Header,196,0 +1724228099,CoAP,1176,792 +1724228099,__unknown,879029,1790792 +1724228099,Bing,14488,688765 +1724228099,BITS,20704,649366 +1724228099,BitTorrent,339,198 +1724228099,DHCPv6,978,0 +1724228099,Google APIs,2350,6745 +1724228099,Google,72658,199825 +1724228099,Kaspersky,509,537 +1724228099,MSN,35102,509962 +1724228099,QQ,738,343 +1724228099,Adobe Software,4737,46334 +1724228099,BitTorrent tracker,153,198 +1724228099,Chrome,12793,518307 +1724228099,DNS,142705,97716 +1724228099,Gmail,60188,125180 +1724228099,Google Analytics,15002,33544 +1724228099,HTTP,101342,1366324 +1724228099,Internet Explorer,738,343 +1724228099,Launchpad,3200,2414 +1724228099,LiveJournal,12330,292970 +1724228099,Microsoft Update,4190,3346 +1724228099,NetBIOS-dgm,250,0 +1724228099,NTP,11290,2550 +1724228099,SSL,9247,5642 +1724228099,Advanced Packaging Tool,32582,157788 +1724228099,IMAPS,10544,31369 +1724228099,HTTPS,776919,6679287 +1724228099,Apple sites,15483,26900 +1724228099,iCloud,24251,43385 +1724228099,Bing Maps,925,8998 +1724228099,Avast,764,782 +1724228099,SSL client,347658,2198720 +1724228099,Ubuntu Update Manager,24590,151062 +1724228099,Microsoft,6742,165214 +1724228099,Mail.Ru,10544,31369 +1724228099,Yandex,40677,108721 +1724228099,Ubuntu,6067,5687 +1724228099,Microsoft CryptoAPI,6179,5092 +1724228099,uTorrent,670,476 +1724228099,Google Play,4011,6775 +1724228099,Smart AdServer,15192,20583 +1724228099,Rambler,8922,14588 +1724228099,smpnameres,26850,9160 +1724228099,ICMP,1930,196 +1724228099,Telegram,66538,518676 +1724228099,Sberbank of Russia,2880,10203 +1724228099,Thin Manager TFTP,240,264 +1724228099,Edge Chromium,3689,9552 +1724228099,DNS over TLS,2224,9540 +1724228099,DNS over HTTPS,61603,187427 +1724228399,Google,19878,31280 +1724228399,HTTPS,19878,31280 +1724228399,SSL client,19878,31280 +1724228399,DNS over HTTPS,26863,67534 +1724228399,__unknown,1390,1970 +1724228399,HTTPS,4253379,3289783 +1724228399,SSL client,3438,5942 +1724228399,Sharepoint Online,3438,5942 +1724228399,HTTPS,2139,3199 +1724228399,HTTPS,109636,471722 +1724228399,SSL client,109636,471722 +1724228399,Mail.Ru,109636,471722 +1724228399,__unknown,3558,0 +1724228399,HTTPS,6876,8547 +1724228399,SSL client,6876,8547 +1724228399,Yandex,6876,8547 +1724228399,Windows Live,25170,7287 +1724228399,HTTPS,150330,273138 +1724228399,SSL client,106945,251430 +1724228399,Microsoft,9485,125141 +1724228399,Yandex,39211,102144 +1724228399,Google Play,29457,9366 +1724228399,Microsoft Teams,3622,7492 +1724228399,Google APIs,4054,14670 +1724228399,HTTPS,56483,52975 +1724228399,SSL client,42361,38858 +1724228399,Yandex,6050,7794 +1724228399,Google Play,32257,16394 +1724228399,__unknown,106093,65114 +1724228399,Google,46020,111633 +1724228399,MSN,3633,2824 +1724228399,Reddit,36406,21415 +1724228399,Skype,5940,7813 +1724228399,HTTPS,2015471,2250792 +1724228399,Apple sites,3775,14877 +1724228399,Avast,2231,21022 +1724228399,SSL client,1804981,625893 +1724228399,Microsoft,21105,61817 +1724228399,Mail.Ru,26693,39973 +1724228399,Yandex,1619795,299651 +1724228399,Google Play,21663,8572 +1724228399,Office 365,7299,25984 +1724228399,Stripe,10421,10312 +1724228399,__unknown,74735,71823 +1724228399,Google APIs,9283,21336 +1724228399,Google,249869,173966 +1724228399,MSN,4481,4563 +1724228399,Adobe Software,4760,6943 +1724228399,Chrome,1510,372 +1724228399,DNS,267,649 +1724228399,Gmail,7095,18041 +1724228399,HTTP,10961,19596 +1724228399,Skype,4647,16551 +1724228399,YouTube,6877,8694 +1724228399,Odnoklassniki,22864,43036 +1724228399,Advanced Packaging Tool,1783,1759 +1724228399,IMAPS,11595,30799 +1724228399,HTTPS,1583089,9940249 +1724228399,WhatsApp,4615,11051 +1724228399,iCloud,29377,84141 +1724228399,Mozilla,2490,1230 +1724228399,Avast,1189,7785 +1724228399,SSL client,963887,1165173 +1724228399,Ubuntu Update Manager,1214,1193 +1724228399,Microsoft,32761,60524 +1724228399,Mail.Ru,316476,458033 +1724228399,Yandex,74175,170313 +1724228399,Ubuntu,569,566 +1724228399,Google Update,4281,10310 +1724228399,Microsoft CryptoAPI,500,463 +1724228399,Rambler,3326,6857 +1724228399,Office 365,9758,69395 +1724228399,Xiaomi,184459,13765 +1724228399,Edge Chromium,467,1364 +1724228399,DNS over HTTPS,6765,34731 +1724228399,CoAP,10094,7519 +1724228399,__unknown,21720,11956 +1724228399,HTTPS,52538,63389 +1724228399,SSL client,52538,63389 +1724228399,Telegram,52538,63389 +1724228399,__unknown,4794,3956 +1724228399,__unknown,2574330,969730 +1724228399,HTTPS,68503,387991 +1724228399,SSL client,58446,81211 +1724228399,Google Play,39861,20222 +1724228399,Lijit,18585,60989 +1724228399,ICMP,892,0 +1724228399,Telegram,509,309 +1724228399,DNS over HTTPS,4102,10308 +1724228399,__unknown,688262,1152604 +1724228399,BITS,1530,14365 +1724228399,BitTorrent,310,434 +1724228399,DHCPv6,163,0 +1724228399,Google APIs,18441,168926 +1724228399,Google Drive,5984,10049 +1724228399,Google,409000,2065886 +1724228399,DNS,45360,554 +1724228399,Gmail,17467,18369 +1724228399,HTTP,4933,18191 +1724228399,LiveJournal,26070,44816 +1724228399,Microsoft Update,641,502 +1724228399,NetBIOS-dgm,243,0 +1724228399,NTP,25366,6270 +1724228399,STUN,984,888 +1724228399,YouTube,6047,82635 +1724228399,VKontakte,7221,47281 +1724228399,Odnoklassniki,5582,10576 +1724228399,Advanced Packaging Tool,635,566 +1724228399,HTTPS,669261,3651188 +1724228399,Mozilla,1996,4611 +1724228399,SSL client,504887,2479088 +1724228399,Yandex,3624,13468 +1724228399,Ubuntu,635,566 +1724228399,Microsoft CryptoAPI,1245,1478 +1724228399,Office 365,2364,15731 +1724228399,ICMP,47725,0 +1724228399,Thin Manager TFTP,276,106 +1724228399,Grammarly,2232,7947 +1724228399,DNS over HTTPS,4888,15648 +1724228399,Notion,1223,4524 +1724228399,__unknown,710355,3726633 +1724228399,Apple Update,1781,4992 +1724228399,Google APIs,7914,20675 +1724228399,Google,16868,40906 +1724228399,MSN,3518,11414 +1724228399,QQ,738,343 +1724228399,Chrome,46209,102814 +1724228399,DNS,69654,54720 +1724228399,Gmail,29813,43914 +1724228399,Google Analytics,4672,13387 +1724228399,HTTP,106492,307206 +1724228399,Internet Explorer,738,343 +1724228399,Launchpad,2560,1984 +1724228399,Microsoft Update,642,503 +1724228399,NTP,1980,1980 +1724228399,SSL,17607,22426 +1724228399,Advanced Packaging Tool,30465,156918 +1724228399,HTTPS,387217,913128 +1724228399,Apple sites,8819,61637 +1724228399,iCloud,18634,40409 +1724228399,Mozilla,5643,3558 +1724228399,Avast,1212,1239 +1724228399,SSL client,142065,417163 +1724228399,Ubuntu Update Manager,23113,150622 +1724228399,Microsoft,4819,13387 +1724228399,Yandex,20259,121591 +1724228399,Ubuntu,5217,4773 +1724228399,Microsoft CryptoAPI,1772,1520 +1724228399,Microsoft WNS,693,7965 +1724228399,Smart AdServer,11394,15437 +1724228399,Rambler,1864,6173 +1724228399,Google Hangouts,797,7091 +1724228399,smpnameres,9691,6671 +1724228399,ICMP,3000,0 +1724228399,Weborama,3476,8773 +1724228399,Gmail attachment,388,284 +1724228399,Google Inbox,925,4523 +1724228399,Edge Chromium,3989,12762 +1724228399,DNS over TLS,1145,4770 +1724228399,DNS over HTTPS,55470,154899 +1724228700,Thin Manager TFTP,672,280 +1724228700,__unknown,84780,93377 +1724228700,HTTP,3866336,3064932 +1724228700,HTTP,601969,452550 +1724228700,HTTP,460714,351198 +1724228700,HTTPS,1984,6092 +1724228700,__unknown,768012,229328 +1724228700,HTTPS,36522,24715 +1724228700,__unknown,144069,2430963 +1724228700,HTTPS,32082,27407 +1724228700,SSL client,29037,24623 +1724228700,Google Play,29037,24623 +1724228700,__unknown,2753242,543019 +1724228700,Google,148535,895567 +1724228700,HTTPS,16845806,2073330 +1724228700,SSL client,16778841,2034534 +1724228700,Yandex,16630306,1138967 +1724228700,__unknown,129924,49641 +1724228700,Google APIs,42231,9616 +1724228700,Google,1583429,1979847 +1724228700,HTTPS,2116079,5433902 +1724228700,Avast,1523,10358 +1724228700,SSL client,1989968,2134291 +1724228700,Microsoft,12832,26658 +1724228700,Mail.Ru,52866,32448 +1724228700,Yandex,290438,63185 +1724228700,Google Play,1688,8454 +1724228700,Google Sign in,4961,3725 +1724228700,DNS over HTTPS,37301,81796 +1724228700,__unknown,770523,2380226 +1724228700,Bing,11071,224561 +1724228700,Google APIs,25628,23853 +1724228700,Google,59896,89090 +1724228700,MSN,8938,30640 +1724228700,Apple Store,9908,41774 +1724228700,HTTP,7130,196531 +1724228700,iTunes,16703,86909 +1724228700,Microsoft Update,5249,11200 +1724228700,Skype,9145,32679 +1724228700,Odnoklassniki,23920,43963 +1724228700,Steam,2050,4922 +1724228700,Advanced Packaging Tool,4862,192590 +1724228700,IMAPS,49690,143038 +1724228700,HTTPS,3142826,6278147 +1724228700,Apple sites,24115,232731 +1724228700,iCloud,29962,86936 +1724228700,SSL client,2900601,3057989 +1724228700,Amazon Web Services,3445,21602 +1724228700,CloudFront,3772,1093 +1724228700,Ubuntu Update Manager,866,816 +1724228700,Microsoft,95103,162940 +1724228700,Mail.Ru,668567,1098925 +1724228700,Yandex,1815833,674704 +1724228700,GitHub,1652,5976 +1724228700,Ubuntu,527,468 +1724228700,Microsoft Azure,10349,8599 +1724228700,Microsoft CryptoAPI,600,382 +1724228700,Apple Maps,2140,4764 +1724228700,Google Play,5304,26023 +1724228700,Exchange Online,24540,30939 +1724228700,Office 365,9503,76891 +1724228700,Sharepoint Online,6887,11657 +1724228700,OneDrive,4668,11024 +1724228700,Office Mobile,14792,8946 +1724228700,Edge Chromium,994,3373 +1724228700,Stripe,8315,6725 +1724228700,DNS over HTTPS,6485,32871 +1724228700,_err_4655,841,605 +1724228700,__unknown,155042,98445 +1724228700,SSL,5072,12550 +1724228700,SSL client,5072,12550 +1724228700,Google Hangouts,5072,12550 +1724228700,__unknown,44456,39800 +1724228700,ICMP,2580,0 +1724228700,HTTPS,382528,45625941 +1724228700,__unknown,198600,10043912 +1724228700,STUN,2296,2072 +1724228700,ICMP,4882,0 +1724228700,__unknown,95890,531343 +1724228700,Google,282826,1106240 +1724228700,SSL,21633,5980 +1724228700,HTTPS,288844,1123535 +1724228700,APNS,21633,5980 +1724228700,SSL client,304459,1112220 +1724228700,ICMP,5340,5400 +1724228700,CoAP,1960,1440 +1724228700,__unknown,743720,1410342 +1724228700,BitTorrent,310,496 +1724228700,Google APIs,11070,22271 +1724228700,Google,16944,55029 +1724228700,DNS,21190,0 +1724228700,Gmail,16101,69529 +1724228700,HTTP,26978,1599889 +1724228700,NTP,12886,3540 +1724228700,SSL,8791,11486 +1724228700,STUN,2948,4006 +1724228700,Odnoklassniki,2947,8146 +1724228700,Advanced Packaging Tool,2707,2574 +1724228700,HTTPS,223859,1339130 +1724228700,WhatsApp,13266,261833 +1724228700,Apple sites,1715,6330 +1724228700,Mozilla,2615,1712 +1724228700,SSL client,95100,309373 +1724228700,Ubuntu Update Manager,2707,2574 +1724228700,Microsoft,21090,1593082 +1724228700,Yandex,19954,68178 +1724228700,Amazon Ads System,2425,8235 +1724228700,Microsoft CryptoAPI,2424,3072 +1724228700,Lijit,16464,55595 +1724228700,ICMP,22962,0 +1724228700,ICMP for IPv6,70,0 +1724228700,Weborama,2675,6537 +1724228700,Gmail attachment,284,0 +1724228700,Thin Manager TFTP,472,358 +1724228700,Grammarly,2190,7811 +1724228700,DNS over HTTPS,5537,17529 +1724228700,IPv6 No Next Header,98,0 +1724228700,__unknown,833683,12735690 +1724228700,BITS,2072,4593 +1724228700,BitTorrent,153,537 +1724228700,DHCPv6,1141,0 +1724228700,Google APIs,4820,13491 +1724228700,Google,52953,964768 +1724228700,QQ,738,343 +1724228700,BitTorrent tracker,153,537 +1724228700,DNS,99557,74053 +1724228700,Gmail,45094,212294 +1724228700,HTTP,652483,32814231 +1724228700,Internet Explorer,1500,1003 +1724228700,Launchpad,1280,992 +1724228700,Microsoft Update,20703,2219500 +1724228700,NTP,1260,1260 +1724228700,SSL,17474,10584 +1724228700,Steam,3846,57601 +1724228700,Advanced Packaging Tool,40820,630932 +1724228700,HTTPS,667331,2712672 +1724228700,Apple sites,3258,23479 +1724228700,iCloud,9830,21038 +1724228700,Avast,382,391 +1724228700,SSL client,219823,1584098 +1724228700,Amazon Web Services,2192,7572 +1724228700,Ubuntu Update Manager,34652,625556 +1724228700,Microsoft,557241,29873625 +1724228700,NIH,6579,48541 +1724228700,Mail.Ru,49089,57943 +1724228700,Yandex,16083,152571 +1724228700,Ubuntu,7146,6685 +1724228700,Microsoft CryptoAPI,3418,3466 +1724228700,Google Play,12888,19069 +1724228700,Smart AdServer,11400,16167 +1724228700,Microsoft Windows Live Services Authentication,1006,22699 +1724228700,ICMP,3284,420 +1724228700,ICMP for IPv6,87,0 +1724228700,Edge Chromium,8786,25097 +1724228700,DNS over TLS,4966,16695 +1724228700,DNS over HTTPS,36106,123163 +1724228700,_err_4655,2454,1733 +1724228700,IPv6 No Next Header,98,0 +1724229000,__unknown,1206324,930909 +1724229000,__unknown,1162,1760 +1724229000,__unknown,540,300 +1724229000,HTTPS,9164,15720 +1724229000,HTTPS,17634,20275 +1724229000,AnyDesk,17634,20275 +1724229000,HTTPS,58941,37705 +1724229000,SSL client,58941,37705 +1724229000,Rambler,58941,37705 +1724229000,HTTPS,7830,6621 +1724229000,__unknown,41021,25728 +1724229000,HTTPS,54409,61982 +1724229000,SSL client,54409,61982 +1724229000,Telegram,54409,61982 +1724229000,__unknown,44878,493194 +1724229000,HTTPS,128235,43648 +1724229000,SSL client,118106,40455 +1724229000,Mail.Ru,107201,28421 +1724229000,Google Play,10905,12034 +1724229000,__unknown,865570,215385 +1724229000,MSN,3966,9068 +1724229000,Odnoklassniki,2666,7607 +1724229000,IMAPS,2076,6047 +1724229000,HTTPS,260452,517572 +1724229000,Mozilla,2261,4739 +1724229000,Avast,1314,10988 +1724229000,SSL client,105299,290475 +1724229000,Microsoft,30846,52708 +1724229000,Mail.Ru,16485,34867 +1724229000,Yandex,10744,17076 +1724229000,Microsoft Azure,2473,8872 +1724229000,Apple Maps,2780,6464 +1724229000,Pocket,2743,6206 +1724229000,Google Play,23363,104120 +1724229000,Rambler,1329,5570 +1724229000,Office 365,3378,18362 +1724229000,Sharepoint Online,6474,16498 +1724229000,DNS over HTTPS,26247,64690 +1724229000,__unknown,295120,1442267 +1724229000,Bing,4721,19097 +1724229000,Google APIs,9102,28263 +1724229000,Google,630120,724286 +1724229000,MSN,13491,60842 +1724229000,Apple Store,13056,47141 +1724229000,Dell,1111,4305 +1724229000,DNS,590,704 +1724229000,HTTP,2438,1635 +1724229000,iTunes,2184,14131 +1724229000,Microsoft Update,3020,7231 +1724229000,SSL,35090,20414 +1724229000,Odnoklassniki,9200,16895 +1724229000,Advanced Packaging Tool,467,182 +1724229000,IMAPS,4566,12758 +1724229000,HTTPS,3225202,7511990 +1724229000,APNS,33330,12392 +1724229000,Apple sites,37304,42599 +1724229000,iCloud,163126,166080 +1724229000,Mozilla,2241,4739 +1724229000,Opera,893,3422 +1724229000,SSL client,1696988,2498742 +1724229000,Amazon Web Services,3199,21430 +1724229000,CloudFront,5251,2215 +1724229000,Microsoft,77877,100864 +1724229000,Mail.Ru,433680,659876 +1724229000,Yandex,103650,145660 +1724229000,Ubuntu,826,569 +1724229000,Microsoft CryptoAPI,1007,926 +1724229000,Google Play,9409,21034 +1724229000,Rambler,16271,25744 +1724229000,ShareThis,5717,6841 +1724229000,Exchange Online,6947,6850 +1724229000,Office 365,5221,25943 +1724229000,Sharepoint Online,10015,19656 +1724229000,Microsoft Windows Live Services Authentication,58850,137463 +1724229000,Google Hangouts,1760,8022 +1724229000,Telegram,2134,7510 +1724229000,TikTok,12667,153842 +1724229000,Stripe,23514,10457 +1724229000,DNS over HTTPS,6362,27417 +1724229000,__unknown,23122,701444 +1724229000,Windows Live,4404,26116 +1724229000,SSL,2513,9190 +1724229000,HTTPS,27399,54177 +1724229000,Apple sites,1514,7466 +1724229000,SSL client,5918,33582 +1724229000,__unknown,1177,783 +1724229000,Google Drive,81652,58891 +1724229000,HTTPS,81652,58891 +1724229000,SSL client,81652,58891 +1724229000,__unknown,12206,273220 +1724229000,Google,36765,65625 +1724229000,Gmail,23875,41866 +1724229000,STUN,1148,962 +1724229000,HTTPS,91105,137240 +1724229000,SSL client,84442,126271 +1724229000,ICMP,668,0 +1724229000,Google Sign in,23802,18780 +1724229000,__unknown,1313767,3947167 +1724229000,BitTorrent,310,496 +1724229000,Google APIs,4405,22904 +1724229000,Google,128176,367833 +1724229000,MSN,5852,6795 +1724229000,DNS,34327,308 +1724229000,Gmail,10663,10690 +1724229000,HTTP,5156,6417 +1724229000,Launchpad,640,496 +1724229000,NetBIOS-dgm,250,0 +1724229000,NTP,25140,5403 +1724229000,STUN,902,814 +1724229000,VKontakte,49086,1519936 +1724229000,Odnoklassniki,4777,14884 +1724229000,Advanced Packaging Tool,3153,2827 +1724229000,HTTPS,417403,2261657 +1724229000,Apple sites,2585,8912 +1724229000,SSL client,283937,2085018 +1724229000,Ubuntu Update Manager,1878,1765 +1724229000,Mail.Ru,55224,95507 +1724229000,Yandex,1208,7193 +1724229000,Ubuntu,635,566 +1724229000,Microsoft CryptoAPI,681,977 +1724229000,Microsoft WNS,577,501 +1724229000,Google Play,20246,22980 +1724229000,ICMP,5316,294 +1724229000,Thin Manager TFTP,276,106 +1724229000,Grammarly,2292,7885 +1724229000,DNS over HTTPS,14985,41253 +1724229000,IPv6 No Next Header,196,0 +1724229000,__unknown,955004,3824261 +1724229000,Apple Update,5214,15402 +1724229000,BITS,1395,2638 +1724229000,DHCPv6,978,0 +1724229000,Google APIs,8263,24726 +1724229000,Google,96796,611185 +1724229000,Kaspersky,548,607 +1724229000,QQ,678,343 +1724229000,DNS,127271,82631 +1724229000,Gmail,14217,60811 +1724229000,HTTP,86452,630709 +1724229000,Internet Explorer,678,343 +1724229000,Launchpad,3200,2216 +1724229000,Microsoft Update,3175,2792 +1724229000,NetBIOS-dgm,243,0 +1724229000,NTP,1170,1170 +1724229000,SSL,8692,5298 +1724229000,VKontakte,2383,5528 +1724229000,Advanced Packaging Tool,48162,563807 +1724229000,HTTPS,633203,8270850 +1724229000,Apple sites,13626,95255 +1724229000,iCloud,7650,25858 +1724229000,Avast,1528,1564 +1724229000,SSL client,245959,7524351 +1724229000,Apple Stocks,2684,7771 +1724229000,Ubuntu Update Manager,39010,556183 +1724229000,Microsoft,693,7965 +1724229000,Yandex,58659,6586118 +1724229000,Amazon Ads System,1055,7004 +1724229000,Ubuntu,7652,7248 +1724229000,Microsoft CryptoAPI,8340,9639 +1724229000,Microsoft NCSI,454,487 +1724229000,Microsoft WNS,693,7965 +1724229000,Pocket,2764,5561 +1724229000,Google Play,10489,16048 +1724229000,CloudFlare,1905,6450 +1724229000,Smart AdServer,7716,10292 +1724229000,Rambler,5233,12618 +1724229000,ICMP,1264,0 +1724229000,Weborama,3199,7778 +1724229000,Gmail attachment,672,284 +1724229000,Telegram,2133,7550 +1724229000,Thin Manager TFTP,308,332 +1724229000,Edge Chromium,5450,14390 +1724229000,DNS over TLS,5725,23850 +1724229000,DNS over HTTPS,33700,99788 +1724229000,Notion,3209,15034 +1724229300,Thin Manager TFTP,392,440 +1724229300,__unknown,113037,165336 +1724229300,HTTPS,18471,21360 +1724229300,__unknown,359,4477 +1724229300,HTTPS,3433,2106 +1724229300,Google APIs,2087,7342 +1724229300,HTTP,3164,202490 +1724229300,Advanced Packaging Tool,3164,202490 +1724229300,HTTPS,57184,59743 +1724229300,SSL client,37825,38141 +1724229300,Mail.Ru,14770,12833 +1724229300,Google Play,20968,17966 +1724229300,DNS over HTTPS,40495,94814 +1724229300,__unknown,57220,53546 +1724229300,Google APIs,12122,30915 +1724229300,Google,3916,12111 +1724229300,MSN,15700,84229 +1724229300,HTTP,460,2618 +1724229300,Advanced Packaging Tool,460,2618 +1724229300,HTTPS,964493,3543056 +1724229300,Apple sites,12830,392999 +1724229300,Avast,1254,9526 +1724229300,SSL client,146166,654585 +1724229300,Ubuntu Update Manager,460,2618 +1724229300,Microsoft,17164,26337 +1724229300,Mail.Ru,28489,26040 +1724229300,Yandex,46741,64693 +1724229300,Telegram,10797,34728 +1724229300,Stripe,7950,7735 +1724229300,__unknown,776567,412368 +1724229300,Google APIs,2814,7281 +1724229300,MSN,4230,12522 +1724229300,Yahoo!,2374,5454 +1724229300,Adobe Software,2629,9645 +1724229300,DNS,333,447 +1724229300,Gmail,23620,59585 +1724229300,HTTP,3943,4245 +1724229300,Microsoft Update,1539,3583 +1724229300,schuelerVZ,4094,6601 +1724229300,Skype,7663,22426 +1724229300,SSL,15921,20504 +1724229300,YouTube,5567,7552 +1724229300,Advanced Packaging Tool,3018,2943 +1724229300,IMAPS,43433,116940 +1724229300,HTTPS,2107001,5740263 +1724229300,WhatsApp,6926,21690 +1724229300,Apple sites,10286,49552 +1724229300,iCloud,30625,61737 +1724229300,Avast,1330,11868 +1724229300,SSL client,651050,1268262 +1724229300,Ad Nexus,28850,17554 +1724229300,Acrobat.com,5652,13736 +1724229300,Amazon Web Services,3325,21542 +1724229300,Ubuntu Update Manager,2491,2413 +1724229300,Microsoft,88347,190444 +1724229300,Mail.Ru,278808,361755 +1724229300,Yandex,28307,68211 +1724229300,Ubuntu,527,530 +1724229300,Microsoft CryptoAPI,536,912 +1724229300,Apple Maps,1787,10183 +1724229300,Rubicon Project,8659,12831 +1724229300,Criteo,2135,7942 +1724229300,Rambler,4874,6575 +1724229300,Exchange Online,1358,7946 +1724229300,Office 365,4471,161492 +1724229300,AdRoll,1891,6338 +1724229300,Microsoft Windows Live Services Authentication,38655,58697 +1724229300,Google Hangouts,2966,2200 +1724229300,Weborama,7826,9840 +1724229300,Sway,4849,15717 +1724229300,Office Mobile,12077,7870 +1724229300,Telegram,102990,1078386 +1724229300,Google Sign in,8489,10368 +1724229300,Stripe,19901,14768 +1724229300,DNS over HTTPS,31376,101016 +1724229300,Discord,1175,6450 +1724229300,__unknown,187,228 +1724229300,HTTPS,9458,13238 +1724229300,SSL client,9458,13238 +1724229300,DNS over HTTPS,9458,13238 +1724229300,SSL,31718,44642 +1724229300,Apple sites,31718,44642 +1724229300,SSL client,31718,44642 +1724229300,__unknown,5149,104703 +1724229300,VKontakte,17742,36958 +1724229300,HTTPS,112829,62699 +1724229300,SSL client,17742,36958 +1724229300,ICMP,984,0 +1724229300,__unknown,37645,236547 +1724229300,HTTPS,77633,74402 +1724229300,SSL client,2556,6571 +1724229300,ICMP,4502,3840 +1724229300,Stripe,2556,6571 +1724229300,__unknown,822745,2313091 +1724229300,BitTorrent,310,496 +1724229300,DHCPv6,163,0 +1724229300,Google APIs,10746,31638 +1724229300,Google Drive,16590,111005 +1724229300,Google,305778,386620 +1724229300,MSN,578,502 +1724229300,DNS,23495,0 +1724229300,Gmail,8620,12312 +1724229300,HTTP,31596,4664015 +1724229300,NTP,13020,3270 +1724229300,SSL,8023,6063 +1724229300,STUN,3784,6144 +1724229300,YouTube,5377,98726 +1724229300,TeamViewer,1451,5565 +1724229300,VKontakte,2922,5796 +1724229300,Odnoklassniki,2336,7279 +1724229300,Advanced Packaging Tool,635,566 +1724229300,HTTPS,464530,979549 +1724229300,APNS,8023,6063 +1724229300,Apple sites,9020,120077 +1724229300,SSL client,380384,807607 +1724229300,Microsoft,30383,4662947 +1724229300,Gravatar,1857,12621 +1724229300,Ubuntu,635,566 +1724229300,Microsoft WNS,578,502 +1724229300,Rambler,1437,5810 +1724229300,smsd,864,692 +1724229300,ICMP,15870,0 +1724229300,Google Sign in,6227,4095 +1724229300,Thin Manager TFTP,196,252 +1724229300,DNS over HTTPS,11378,25004 +1724229300,IPv6 No Next Header,196,0 +1724229300,__unknown,745056,11531743 +1724229300,BITS,9691,69974 +1724229300,BitTorrent,153,198 +1724229300,Google APIs,13628,74874 +1724229300,Google Drive,16562,6785 +1724229300,Google,30886,106869 +1724229300,QQ,1152,1924 +1724229300,BitTorrent tracker,153,198 +1724229300,DNS,79280,70715 +1724229300,Gmail,7153,13470 +1724229300,HTTP,433373,16541053 +1724229300,Internet Explorer,14641,2443 +1724229300,iTunes,2217,18544 +1724229300,Launchpad,3200,2414 +1724229300,Microsoft Update,284801,13553714 +1724229300,NTP,2430,2430 +1724229300,SSL,5979,31288 +1724229300,STUN,2658,2590 +1724229300,VKontakte,3789,6052 +1724229300,Advanced Packaging Tool,29920,27446 +1724229300,Windows Update,87342,1756481 +1724229300,HTTPS,719447,18684218 +1724229300,Apple sites,11544,29977 +1724229300,iCloud,10808,34719 +1724229300,Avast,7056,8594 +1724229300,SSL client,153345,738858 +1724229300,CloudFront,1958,8057 +1724229300,Ubuntu Update Manager,20610,19552 +1724229300,Microsoft,23281,1971390 +1724229300,VeriSign,566,2141 +1724229300,Yandex,46734,338146 +1724229300,Ubuntu,7385,6855 +1724229300,Microsoft CryptoAPI,11030,12679 +1724229300,Microsoft NCSI,1293,1461 +1724229300,Office 365,2544,15731 +1724229300,Google Hangouts,3180,22172 +1724229300,ICMP,20028,0 +1724229300,Gmail attachment,1060,568 +1724229300,Telegram,3869,3847 +1724229300,Thin Manager TFTP,682,664 +1724229300,Edge Chromium,2408,4757 +1724229300,DNS over TLS,10107,42929 +1724229300,DNS over HTTPS,16539,69144 +1724229300,Notion,2737,5639 +1724229600,HTTPS,35260,754745 +1724229600,__unknown,19890,16942 +1724229600,HTTPS,750577,515587 +1724229600,__unknown,6909,4256 +1724229600,HTTPS,18750,250638 +1724229600,SSL client,18750,250638 +1724229600,Microsoft,15858,243380 +1724229600,Microsoft Teams,2892,7258 +1724229600,__unknown,3176,16051 +1724229600,HTTPS,819314,1357003 +1724229600,HTTPS,351305,91906 +1724229600,SSL client,3973,7855 +1724229600,Yandex,3973,7855 +1724229600,__unknown,158114,98527 +1724229600,Dropbox,2925,1343 +1724229600,Google Drive,30837,10127 +1724229600,Google,216603,1150814 +1724229600,MSN,1049,5861 +1724229600,iTunes,1922,18711 +1724229600,schuelerVZ,26006,30327 +1724229600,Skype,2846,7906 +1724229600,YouTube,24804,5767 +1724229600,HTTPS,2187977,3211661 +1724229600,Avast,1270,9509 +1724229600,SSL client,1833875,1566997 +1724229600,Microsoft,9944,30241 +1724229600,Mail.Ru,58081,58600 +1724229600,Yandex,1453383,222762 +1724229600,Simpli.fi,2335,5979 +1724229600,Microsoft Azure,1870,9050 +1724229600,Telegram,2337,15178 +1724229600,__unknown,678717,230456 +1724229600,Bing,12592,558879 +1724229600,Dropbox,8862,223870 +1724229600,Eset,2037,4837 +1724229600,Google APIs,10129,30741 +1724229600,Google,1009,5292 +1724229600,MSN,1047,6675 +1724229600,Apple Store,25401,96487 +1724229600,HTTP,5502,6300 +1724229600,iTunes,16619,56316 +1724229600,Microsoft Update,121785,291600 +1724229600,Reddit,4137,14481 +1724229600,Skype,27546,136725 +1724229600,SSL,16207,25458 +1724229600,YouTube,15632,207441 +1724229600,VKontakte,5050,13652 +1724229600,Odnoklassniki,10920,19595 +1724229600,Steam,12537,143642 +1724229600,Advanced Packaging Tool,3122,2980 +1724229600,IMAPS,8712,24515 +1724229600,HTTPS,2153185,16510164 +1724229600,Apple sites,1543,7459 +1724229600,iCloud,9662,15463 +1724229600,Avast,1270,10086 +1724229600,SSL client,1156762,3371031 +1724229600,Amazon Web Services,2654,21490 +1724229600,CloudFront,1421,7026 +1724229600,Ubuntu Update Manager,3122,2980 +1724229600,Microsoft,133696,296278 +1724229600,Wikia,5505,15862 +1724229600,NIH,7610,17429 +1724229600,Mail.Ru,248218,331413 +1724229600,Yandex,237937,411846 +1724229600,Ubuntu,425,461 +1724229600,Intel,2303,7450 +1724229600,Apple Maps,3747,38319 +1724229600,Rubicon Project,2605,4575 +1724229600,Rambler,27852,34379 +1724229600,Exchange Online,36933,49447 +1724229600,Office 365,88637,224747 +1724229600,Microsoft Windows Live Services Authentication,8603,22600 +1724229600,Yandex Market,9667,12126 +1724229600,Office Mobile,41618,57000 +1724229600,Telegram,4351,23447 +1724229600,Edge Chromium,587,2005 +1724229600,Grammarly,14699,16253 +1724229600,DNS over HTTPS,6844,29807 +1724229600,HTTPS,496651,390586 +1724229600,SSL client,96623,260014 +1724229600,Yandex,96623,260014 +1724229600,__unknown,180752,75241 +1724229600,HTTPS,58331,30079 +1724229600,HTTPS,16416,22551 +1724229600,SSL client,16416,22551 +1724229600,DNS over HTTPS,16416,22551 +1724229600,__unknown,7768,6291 +1724229600,__unknown,5100,4300 +1724229600,VKontakte,35829,37530 +1724229600,HTTPS,35829,37530 +1724229600,SSL client,35829,37530 +1724229600,Gmail,55327,61169 +1724229600,SSL,2247,4533 +1724229600,STUN,2378,2146 +1724229600,HTTPS,55327,61169 +1724229600,SSL client,57574,65702 +1724229600,Google Hangouts,2247,4533 +1724229600,ICMP,1338,0 +1724229600,CoAP,3430,2592 +1724229600,__unknown,186011,102767 +1724229600,Google,25617,103627 +1724229600,HTTPS,87949,1322387 +1724229600,SSL client,28430,115716 +1724229600,CloudFlare,2813,12089 +1724229600,ICMP,8102,6660 +1724229600,DNS over HTTPS,7796,21682 +1724229600,__unknown,1494521,11561636 +1724229600,BITS,11996,102982 +1724229600,BitTorrent,496,496 +1724229600,DHCPv6,978,0 +1724229600,Google APIs,16544,42401 +1724229600,Google,36087,223229 +1724229600,Chrome,934,526 +1724229600,DNS,38497,0 +1724229600,Gmail,11429,12549 +1724229600,Google Analytics,2061,6492 +1724229600,HTTP,30081,717556 +1724229600,Microsoft Update,642,508 +1724229600,NetBIOS-dgm,250,0 +1724229600,NTP,24600,5100 +1724229600,STUN,3038,4710 +1724229600,VKontakte,3002,6292 +1724229600,HTTPS,293850,686882 +1724229600,iCloud,8327,13645 +1724229600,Mozilla,1876,4611 +1724229600,SSL client,125451,359325 +1724229600,Microsoft,16717,619708 +1724229600,Yandex,1368,6363 +1724229600,Microsoft CryptoAPI,642,508 +1724229600,Apple Maps,2715,6063 +1724229600,Google Play,38453,23635 +1724229600,Office 365,2424,15835 +1724229600,ICMP,28709,60 +1724229600,Weborama,3134,7627 +1724229600,Gmail attachment,284,0 +1724229600,Thin Manager TFTP,568,664 +1724229600,DNS over HTTPS,32831,90179 +1724229600,IPv6 No Next Header,98,0 +1724229600,__unknown,515515,4238116 +1724229600,Amazon,853,6702 +1724229600,Apple Update,3366,10457 +1724229600,BitTorrent,310,310 +1724229600,DHCPv6,163,0 +1724229600,Google APIs,19083,76478 +1724229600,Google,92540,225382 +1724229600,Chrome,21973,8870 +1724229600,DNS,117283,97021 +1724229600,Google Analytics,6143,30191 +1724229600,HTTP,3362293,269925044 +1724229600,Launchpad,3200,2348 +1724229600,Microsoft Update,86071,1400825 +1724229600,NTP,12480,2730 +1724229600,SSL,5302,30768 +1724229600,STUN,2844,4188 +1724229600,Advanced Packaging Tool,29314,26518 +1724229600,Windows Update,81378,1380520 +1724229600,HTTPS,805850,14206591 +1724229600,Apple sites,6800,74986 +1724229600,iCloud,10196,28256 +1724229600,Avast,1528,1564 +1724229600,SSL client,345272,12363719 +1724229600,Ubuntu Update Manager,22496,20918 +1724229600,Microsoft,3099815,265834092 +1724229600,Mail.Ru,10590,20471 +1724229600,Yandex,163955,11771344 +1724229600,Exchange,76525,2619681 +1724229600,Ubuntu,4893,4631 +1724229600,Microsoft CryptoAPI,11767,29682 +1724229600,Microsoft NCSI,1625,1593 +1724229600,Microsoft WNS,1326,15930 +1724229600,Apple Maps,1658,10120 +1724229600,Rambler,8258,24957 +1724229600,Office 365,940,2318 +1724229600,Google Hangouts,5302,30768 +1724229600,ICMP,2882,0 +1724229600,Telegram,1851,7765 +1724229600,ResearchGate,1115,4264 +1724229600,Thin Manager TFTP,560,438 +1724229600,Edge Chromium,5977,16293 +1724229600,DNS over TLS,5527,23850 +1724229600,DNS over HTTPS,38949,130600 +1724229600,DeepL Translator,1837,6602 +1724229600,Notion,2067,7124 +1724229600,IPv6 No Next Header,98,0 +1724229899,Thin Manager TFTP,252,0 +1724229899,__unknown,89095,35415 +1724229899,DNS over HTTPS,156320,361009 +1724229899,HTTPS,1700479,129836716 +1724229899,HTTPS,204046,71773 +1724229899,HTTPS,53462,455569 +1724229899,SSL client,53462,455569 +1724229899,Mail.Ru,53462,455569 +1724229899,__unknown,73980,1531139 +1724229899,HTTPS,15457,21321 +1724229899,SSL client,15457,21321 +1724229899,Yandex,15457,21321 +1724229899,__unknown,10227,5219 +1724229899,HTTPS,8624,1683 +1724229899,Chrome,1616,1196 +1724229899,HTTP,1616,1196 +1724229899,HTTPS,325179,1796546 +1724229899,SSL client,31957,30529 +1724229899,Chartbeat,11118,12008 +1724229899,Google Play,20839,18521 +1724229899,__unknown,251549,675892 +1724229899,Bing,3492,6481 +1724229899,Google APIs,2661,6438 +1724229899,Google,1475,9106 +1724229899,MSN,3797,7537 +1724229899,HTTP,575,1210 +1724229899,Skype,5429,141626 +1724229899,YouTube,21592,252693 +1724229899,TeamViewer,32241,56963 +1724229899,HTTPS,421905,1064371 +1724229899,Avast,1188,8564 +1724229899,SSL client,266598,823206 +1724229899,Microsoft,63920,121055 +1724229899,Mail.Ru,74072,60027 +1724229899,Yandex,36748,121256 +1724229899,Microsoft CryptoAPI,575,1210 +1724229899,Google Play,20550,18272 +1724229899,Exchange Online,1222,6333 +1724229899,Office 365,13333,46616 +1724229899,Stripe,13019,8787 +1724229899,Microsoft Teams,4100,8415 +1724229899,__unknown,242487,460696 +1724229899,Apple Update,6218,24510 +1724229899,Bing,15856,223786 +1724229899,Google APIs,10288,19813 +1724229899,Google,44629,55638 +1724229899,MSN,26781,101645 +1724229899,Apple Store,7736,29451 +1724229899,DNS,267,513 +1724229899,Gmail,13043,17048 +1724229899,HTTP,17962,832525 +1724229899,Microsoft Update,20983,5854 +1724229899,Reddit,8711,8572 +1724229899,YouTube,1291,7363 +1724229899,VKontakte,51980,52235 +1724229899,Odnoklassniki,5520,10173 +1724229899,IMAPS,13043,17048 +1724229899,HTTPS,2315076,16566197 +1724229899,WhatsApp,1857,5981 +1724229899,Apple sites,5369,13240 +1724229899,iCloud,103722,116072 +1724229899,Bing Maps,4529,28637 +1724229899,Mozilla,1721,4937 +1724229899,SSL client,1326125,5051648 +1724229899,Amazon Web Services,3199,21490 +1724229899,CloudFront,1509,1062 +1724229899,Microsoft,206035,1093964 +1724229899,NIH,48243,1893462 +1724229899,Mail.Ru,224239,253458 +1724229899,Yandex,337622,1519447 +1724229899,Ubuntu,1506,4441 +1724229899,Microsoft CryptoAPI,2162,2695 +1724229899,Apple Maps,2834,7420 +1724229899,Google Play,25917,76177 +1724229899,Rambler,19087,25564 +1724229899,Office 365,50434,78590 +1724229899,Microsoft Windows Live Services Authentication,43872,84175 +1724229899,Weborama,7903,10178 +1724229899,Office Mobile,37392,26662 +1724229899,Telegram,9360,67268 +1724229899,Microsoft Teams,3788,71652 +1724229899,DNS over HTTPS,3411,16178 +1724229899,ICMP,4428,0 +1724229899,__unknown,15023,8036 +1724229899,__unknown,5272,54334 +1724229899,HTTPS,15558,237205 +1724229899,__unknown,55971,292933 +1724229899,STUN,2294,2590 +1724229899,HTTPS,60224,65459 +1724229899,DNS over HTTPS,4949,13542 +1724229899,__unknown,1533446,5479522 +1724229899,Amazon,1792,7276 +1724229899,BitTorrent,372,0 +1724229899,Google APIs,23967,339986 +1724229899,Google Drive,6025,9222 +1724229899,Google,221265,2686574 +1724229899,Kaspersky,608,607 +1724229899,DNS,58802,71 +1724229899,Gmail,44181,80878 +1724229899,HTTP,9041,12752 +1724229899,Microsoft Update,729,1081 +1724229899,NetBIOS-dgm,243,0 +1724229899,NTP,450,450 +1724229899,STUN,4772,5550 +1724229899,VKontakte,4291,5451 +1724229899,HTTPS,593923,4588051 +1724229899,WhatsApp,18781,403291 +1724229899,SSL client,439233,3748518 +1724229899,CloudFront,1662,7900 +1724229899,Microsoft,46120,113098 +1724229899,Yandex,1313,907 +1724229899,Microsoft CryptoAPI,7704,11064 +1724229899,Apple Maps,2276,5147 +1724229899,Google Play,30032,4387 +1724229899,ICMP,22132,1740 +1724229899,Mendeley,2227,11962 +1724229899,JetBrains,22803,444149 +1724229899,Telegram,2486,7128 +1724229899,Google Sign in,31323,28842 +1724229899,Grammarly,2232,7886 +1724229899,DNS over HTTPS,13098,32932 +1724229899,__unknown,979845,776946 +1724229899,Apple Update,1081,4816 +1724229899,Bing,2194,9707 +1724229899,BitTorrent,2323,909 +1724229899,DHCPv6,978,0 +1724229899,Google APIs,43687,2234710 +1724229899,Google,95909,166886 +1724229899,Google Translate,3664,7387 +1724229899,QQ,678,343 +1724229899,BitTorrent tracker,153,537 +1724229899,Chrome,1130,968 +1724229899,DNS,105725,83772 +1724229899,Firefox,822,1129 +1724229899,Gmail,6976,4421 +1724229899,HTTP,98392,1199502 +1724229899,Internet Explorer,678,343 +1724229899,Launchpad,2560,1786 +1724229899,Microsoft Update,28306,1115391 +1724229899,NTP,8600,2715 +1724229899,SSL,8802,10302 +1724229899,STUN,984,888 +1724229899,Advanced Packaging Tool,29626,27224 +1724229899,HTTPS,788763,7617718 +1724229899,Apple sites,4962,27997 +1724229899,iCloud,31043,177487 +1724229899,Mozilla,2891,5762 +1724229899,Avast,3020,10089 +1724229899,SSL client,292253,4758084 +1724229899,CloudFront,1934,7542 +1724229899,Ubuntu Update Manager,23448,22186 +1724229899,Microsoft,11016,27292 +1724229899,Mail.Ru,7070,5650 +1724229899,Yandex,56184,2016069 +1724229899,Ubuntu,4959,4635 +1724229899,Microsoft CryptoAPI,10015,13506 +1724229899,Microsoft NCSI,537,553 +1724229899,Google Play,4486,6985 +1724229899,Rambler,5132,12739 +1724229899,Garmin,2201,5480 +1724229899,ICMP,4725,0 +1724229899,Weborama,2848,7006 +1724229899,Gmail attachment,388,284 +1724229899,Telegram,8231,33042 +1724229899,Thin Manager TFTP,280,672 +1724229899,Edge Chromium,2635,6822 +1724229899,DNS over TLS,6816,28801 +1724229899,DNS over HTTPS,26970,71364 +1724229899,IPv6 No Next Header,98,0 +1724230200,HTTPS,41489,69790 +1724230200,HTTPS,6780,7181 +1724230200,SSL client,6780,7181 +1724230200,Mail.Ru,6780,7181 +1724230200,__unknown,53297,26812 +1724230200,HTTPS,104519,131688 +1724230200,SSL client,104519,131688 +1724230200,Telegram,104519,131688 +1724230200,DNS over HTTPS,106172,283400 +1724230200,HTTPS,57544,64286 +1724230200,SSL client,53405,61485 +1724230200,Telegram,53405,61485 +1724230200,__unknown,98115,962627 +1724230200,HTTPS,5246,8694 +1724230200,SSL client,5246,8694 +1724230200,Yandex,5246,8694 +1724230200,__unknown,4546,34258 +1724230200,HTTPS,111707,1558058 +1724230200,SSL client,80048,61164 +1724230200,Google Play,80048,61164 +1724230200,__unknown,36918,22443 +1724230200,Apple Update,7939,40890 +1724230200,Dropbox,3342,2539 +1724230200,Google APIs,3681,27574 +1724230200,Google,10318,23245 +1724230200,Google Translate,4279,8067 +1724230200,MSN,93904,89722 +1724230200,HTTP,1075,1826 +1724230200,iTunes,3789,18288 +1724230200,HTTPS,838749,10699422 +1724230200,Apple sites,16049,583923 +1724230200,Mozilla,2654,1879 +1724230200,Avast,1314,10732 +1724230200,SSL client,373284,1309455 +1724230200,Microsoft,44730,56515 +1724230200,VeriSign,1075,1826 +1724230200,Mail.Ru,121288,74346 +1724230200,Yandex,30215,60886 +1724230200,Microsoft Azure,8389,272592 +1724230200,Microsoft CryptoAPI,1075,1826 +1724230200,uTorrent,14159,20418 +1724230200,Google Play,2772,2072 +1724230200,Office 365,4462,15767 +1724230200,ICMP,6314,0 +1724230200,__unknown,263125,469171 +1724230200,Bing,4978,11038 +1724230200,Dropbox,3761,6447 +1724230200,Google APIs,82869495,2026728 +1724230200,Google,99076,168442 +1724230200,MSN,14712,97343 +1724230200,Adobe Software,2252,5996 +1724230200,Apple Store,41540,208625 +1724230200,DNS,333,447 +1724230200,Gmail,3061,7308 +1724230200,Google Analytics,995,5724 +1724230200,HTTP,20257,12148 +1724230200,Skype,1840,86257 +1724230200,SSL,4265,6339 +1724230200,YouTube,20775,55949 +1724230200,Odnoklassniki,16560,30519 +1724230200,Advanced Packaging Tool,2775,2623 +1724230200,IMAPS,3061,7308 +1724230200,HTTPS,84205389,7063742 +1724230200,WhatsApp,3932,8405 +1724230200,Spotify,2727,8674 +1724230200,Apple sites,5058,120769 +1724230200,iCloud,63246,134729 +1724230200,Mozilla,8388,26718 +1724230200,Avast,1642,9958 +1724230200,SSL client,83831197,4640618 +1724230200,CloudFront,993,6914 +1724230200,Ubuntu Update Manager,2775,2623 +1724230200,Microsoft,81013,82316 +1724230200,Mail.Ru,410036,1058831 +1724230200,Yandex,99493,264359 +1724230200,Apple Maps,1604,31605 +1724230200,AdGear,2189,8179 +1724230200,Exchange Online,6230,8772 +1724230200,Office 365,9011,29187 +1724230200,Sharepoint Online,2278,94285 +1724230200,Microsoft Windows Live Services Authentication,16098,34112 +1724230200,Weborama,3259,7225 +1724230200,Office Mobile,39736,27490 +1724230200,Stripe,16219,11311 +1724230200,DNS over HTTPS,5974,36393 +1724230200,Lenovo,970,4182 +1724230200,SSL,2710,9055 +1724230200,HTTPS,21324,20535 +1724230200,__unknown,6818,54333 +1724230200,iTunes,8802,10879 +1724230200,SSL,11246,6435 +1724230200,HTTPS,189657,170469 +1724230200,APNS,11246,6435 +1724230200,iCloud,22317,40922 +1724230200,SSL client,42365,58236 +1724230200,DNS over HTTPS,0,1390 +1724230200,__unknown,75565,2628551 +1724230200,Gmail,35275,74013 +1724230200,HTTPS,193368,3267116 +1724230200,Apple sites,1545,8696 +1724230200,SSL client,58893,157471 +1724230200,Lijit,22073,74762 +1724230200,ICMP,410,0 +1724230200,DNS over HTTPS,138,74 +1724230200,CoAP,1568,1152 +1724230200,__unknown,1122900,6204244 +1724230200,BitTorrent,2963,1373 +1724230200,DHCPv6,163,0 +1724230200,Google APIs,27397,8850 +1724230200,Google Drive,6041,9962 +1724230200,Google,61763,102844 +1724230200,DNS,32769,0 +1724230200,Gmail,10686,10897 +1724230200,HTTP,12312,20625 +1724230200,Launchpad,640,430 +1724230200,Microsoft Update,4936,12589 +1724230200,NTP,26040,6630 +1724230200,SSL,6241,15215 +1724230200,STUN,1148,1036 +1724230200,Odnoklassniki,2489,7357 +1724230200,Steam,2050,6995 +1724230200,Advanced Packaging Tool,2624,2282 +1724230200,HTTPS,477291,4657353 +1724230200,SSL client,135158,679514 +1724230200,Ubuntu Update Manager,1349,1286 +1724230200,Yandex,1313,907 +1724230200,Ubuntu,635,566 +1724230200,Microsoft CryptoAPI,9688,18343 +1724230200,Office 365,14708,422977 +1724230200,ICMP,14878,0 +1724230200,Gmail attachment,284,0 +1724230200,Telegram,2343,7850 +1724230200,Thin Manager TFTP,276,106 +1724230200,Font Awesome,6511,103213 +1724230200,DNS over HTTPS,23752,63913 +1724230200,IPv6 No Next Header,98,0 +1724230200,__unknown,1172590,8424000 +1724230200,Apple Update,160267,5307468 +1724230200,BitTorrent,496,0 +1724230200,DHCPv6,978,0 +1724230200,Google APIs,12856,32057 +1724230200,Google Drive,1204,8351 +1724230200,Google,28702,87762 +1724230200,QQ,678,343 +1724230200,Chrome,1745,1412 +1724230200,DNS,66569,54320 +1724230200,Gmail,331884,2246462 +1724230200,HTTP,84252,91303 +1724230200,Internet Explorer,678,343 +1724230200,Launchpad,3200,2216 +1724230200,Microsoft Update,4587,3725 +1724230200,NetBIOS-dgm,250,0 +1724230200,NTP,2430,2430 +1724230200,SSL,797,7092 +1724230200,STUN,1088,1036 +1724230200,Odnoklassniki,2431,7219 +1724230200,Advanced Packaging Tool,33762,30711 +1724230200,HTTPS,1586137,15472295 +1724230200,WhatsApp,1979,5981 +1724230200,Apple sites,16632,59527 +1724230200,iCloud,91108,337195 +1724230200,Avast,2424,6252 +1724230200,SSL client,703462,9105497 +1724230200,Ubuntu Update Manager,26405,24749 +1724230200,Microsoft,1417,8990 +1724230200,Yandex,44927,977567 +1724230200,Ubuntu,5073,4664 +1724230200,Microsoft CryptoAPI,10788,11234 +1724230200,Microsoft WNS,633,7964 +1724230200,Rambler,5072,12859 +1724230200,WeChat,1204,647 +1724230200,Lijit,1071,6211 +1724230200,ICMP,8780,0 +1724230200,Telegram,36303,873746 +1724230200,Edge Chromium,5977,16941 +1724230200,DNS over TLS,4869,18984 +1724230200,DNS over HTTPS,21791,77125 +1724230500,Thin Manager TFTP,108,108 +1724230500,__unknown,339746,326602 +1724230500,__unknown,1235475,10489229 +1724230500,Telegram,1235475,10489229 +1724230500,HTTPS,22403,52232 +1724230500,SSL client,22403,52232 +1724230500,Yandex,22403,52232 +1724230500,DNS over HTTPS,238581,532581 +1724230500,HTTPS,18135,84688 +1724230500,SSL client,7951,13304 +1724230500,Yandex,7951,13304 +1724230500,HTTPS,18375,21892 +1724230500,Windows Live,5626,7253 +1724230500,Skype,31036,11905 +1724230500,SSL,7007,13084 +1724230500,HTTPS,1065998,2037128 +1724230500,SSL client,769123,903547 +1724230500,Microsoft,12706,228607 +1724230500,Mail.Ru,712748,642698 +1724230500,Google Hangouts,7007,13084 +1724230500,Google APIs,6924,25287 +1724230500,Google Analytics,2036,6193 +1724230500,HTTPS,67322,139858 +1724230500,SSL client,10205,37573 +1724230500,Google Play,1245,6093 +1724230500,ICMP,21402,0 +1724230500,__unknown,98586,117512 +1724230500,Google,15441,29667 +1724230500,MSN,2531,13809 +1724230500,YouTube,18079,509092 +1724230500,TeamViewer,2969,17694 +1724230500,HTTPS,716557,15817827 +1724230500,Apple sites,6384,65704 +1724230500,Mozilla,3948,9598 +1724230500,Avast,1473,9319 +1724230500,SSL client,298938,835847 +1724230500,Microsoft,42367,57532 +1724230500,Mail.Ru,148768,49117 +1724230500,Yandex,42152,38004 +1724230500,Office 365,5200,17071 +1724230500,ICMP,9632,0 +1724230500,Yandex Market,9167,12565 +1724230500,Office Mobile,459,6675 +1724230500,DNS over HTTPS,38991,92366 +1724230500,__unknown,367486,250638 +1724230500,Bing,69343,289612 +1724230500,Google APIs,13140,28511 +1724230500,Google,4956,18321 +1724230500,MSN,8693,52899 +1724230500,HTTP,11629,12136 +1724230500,Microsoft Update,315352,272848 +1724230500,Skype,3254,7019 +1724230500,Odnoklassniki,11040,20286 +1724230500,Steam,15795,37387 +1724230500,Advanced Packaging Tool,5123,4925 +1724230500,HTTPS,2943204,47180926 +1724230500,Spotify,10884,37036 +1724230500,Apple sites,4899,12477 +1724230500,iCloud,19842,27733 +1724230500,Mozilla,2241,4679 +1724230500,Avast,118274,237752 +1724230500,SSL client,2290804,2910297 +1724230500,Ad Nexus,8045,4978 +1724230500,Ubuntu Update Manager,5123,4925 +1724230500,Microsoft,701347,563035 +1724230500,Mail.Ru,270573,399253 +1724230500,Yandex,170179,224060 +1724230500,Asus,1440,8287 +1724230500,Nvidia,21070,100805 +1724230500,Google Update,3087,2188 +1724230500,Microsoft CryptoAPI,1938,3175 +1724230500,Apple Maps,2978,5646 +1724230500,AdGear,2369,8179 +1724230500,Rambler,16368,20537 +1724230500,Lijit,7975,20061 +1724230500,Office 365,15286,44119 +1724230500,Sharepoint Online,1022,6402 +1724230500,Microsoft Windows Live Services Authentication,147165,399950 +1724230500,Weborama,3039,6233 +1724230500,OneDrive,831,7020 +1724230500,360 Safeguard,429,1476 +1724230500,Office Mobile,15085,15739 +1724230500,Telegram,15010,95407 +1724230500,GISMETEO,2134,9322 +1724230500,Xiaomi,309300,16884 +1724230500,DNS over HTTPS,14076,41993 +1724230500,DNS over HTTPS,2928,9115 +1724230500,SSL,2559,9055 +1724230500,HTTPS,8634,11416 +1724230500,SSL client,8634,11416 +1724230500,DNS over HTTPS,8634,11416 +1724230500,Google,67985,46512 +1724230500,HTTPS,67985,46512 +1724230500,SSL client,67985,46512 +1724230500,DNS over HTTPS,138,74 +1724230500,__unknown,71458,47670 +1724230500,ICMP,2580,0 +1724230500,__unknown,46706,356959 +1724230500,DNS over HTTPS,5405,14066 +1724230500,__unknown,74400,167796 +1724230500,Google APIs,8463,11500 +1724230500,Google,74045,162593 +1724230500,iTunes,4483,9997 +1724230500,HTTPS,141415,693094 +1724230500,SSL client,110916,433332 +1724230500,Yandex,15999,51392 +1724230500,New Relic,3031,21916 +1724230500,ICMP,656,0 +1724230500,Font Awesome,4895,175934 +1724230500,__unknown,3795501,76584584 +1724230500,BITS,6523,191908 +1724230500,BitTorrent,310,496 +1724230500,DHCPv6,163,0 +1724230500,Google APIs,15127,161781 +1724230500,Google,51935,113383 +1724230500,Android browser,453,333 +1724230500,Chrome,1335,929 +1724230500,DNS,25422,0 +1724230500,Gmail,5826,9686 +1724230500,HTTP,11884,344670 +1724230500,NetBIOS-dgm,243,0 +1724230500,NTP,11448,2910 +1724230500,STUN,10018,4948 +1724230500,YouTube,15984,74483 +1724230500,Advanced Packaging Tool,986,926 +1724230500,HTTPS,585110,1736511 +1724230500,Apple sites,1928,9475 +1724230500,iCloud,16522,11407 +1724230500,SSL client,120869,398980 +1724230500,Ubuntu Update Manager,986,926 +1724230500,Microsoft,6523,191908 +1724230500,Siri,1873,6615 +1724230500,Microsoft CryptoAPI,2587,150574 +1724230500,ICMP,30630,0 +1724230500,Telegram,1431,7431 +1724230500,Google Sign in,12127,12483 +1724230500,Thin Manager TFTP,472,358 +1724230500,DNS over HTTPS,13265,42662 +1724230500,IPv6 No Next Header,98,0 +1724230500,CoAP,1372,720 +1724230500,__unknown,589701,3129559 +1724230500,Apple Update,1355,5530 +1724230500,Bing,5646,153373 +1724230500,BITS,6417,186104 +1724230500,BitTorrent,463,632 +1724230500,Google APIs,3250,7472 +1724230500,Google,60847,132552 +1724230500,QQ,738,343 +1724230500,BitTorrent tracker,153,198 +1724230500,Chrome,643,550 +1724230500,DNS,97919,84706 +1724230500,Gmail,17137,10321 +1724230500,HTTP,83950,271534 +1724230500,Internet Explorer,2477,1853 +1724230500,Launchpad,1920,1290 +1724230500,Microsoft Update,2666,2138 +1724230500,NTP,990,990 +1724230500,STUN,902,814 +1724230500,YouTube,4883,12536 +1724230500,TeamViewer,1325,1118 +1724230500,VKontakte,2382,5477 +1724230500,Steam,78,86 +1724230500,Advanced Packaging Tool,30789,28131 +1724230500,HTTPS,927952,7685134 +1724230500,DynGate,492,396 +1724230500,Apple sites,853,2484 +1724230500,iCloud,38518,183812 +1724230500,Avast,1146,1173 +1724230500,SSL client,309137,5733015 +1724230500,GoDaddy,582,2992 +1724230500,Ubuntu Update Manager,25886,24155 +1724230500,Microsoft,9771,196883 +1724230500,VeriSign,566,2141 +1724230500,Mail.Ru,59374,85067 +1724230500,Yandex,80637,5041269 +1724230500,Gravatar,1180,5206 +1724230500,Ubuntu,5252,4975 +1724230500,Microsoft CryptoAPI,8750,14769 +1724230500,Rambler,5072,12875 +1724230500,WeChat,1378,677 +1724230500,Lijit,5301,14654 +1724230500,ICMP,3331,0 +1724230500,360 Safeguard,838,599 +1724230500,Gmail attachment,672,284 +1724230500,Office Mobile,7499,6710 +1724230500,Telegram,12831,36435 +1724230500,Edge Chromium,4336,12144 +1724230500,DNS over TLS,6972,28791 +1724230500,DNS over HTTPS,26645,99738 +1724230800,HTTPS,52053,68954 +1724230800,__unknown,3462,9949 +1724230800,__unknown,5399,4789 +1724230800,HTTPS,586478,1174989 +1724230800,SSL client,18852,23915 +1724230800,Exchange Online,15226,18534 +1724230800,Stripe,3626,5381 +1724230800,HTTPS,82872,264248 +1724230800,HTTPS,148517,435154 +1724230800,Dictionary.com,4452,10525 +1724230800,SSL client,13260,14347 +1724230800,Yandex,8808,3822 +1724230800,__unknown,28273,35373 +1724230800,Bing,7977,13398 +1724230800,Google APIs,6897,16469 +1724230800,Google,2664,9506 +1724230800,MSN,3019,19146 +1724230800,HTTP,1062,1356 +1724230800,HTTPS,249977,2283853 +1724230800,Avast,1254,10588 +1724230800,SSL client,98324,223121 +1724230800,Microsoft,34389,63638 +1724230800,Mail.Ru,12126,23455 +1724230800,Yandex,9538,18148 +1724230800,Microsoft CryptoAPI,1062,1356 +1724230800,Viber,2179,8136 +1724230800,Google Play,3135,2153 +1724230800,Office 365,7133,17334 +1724230800,Weborama,3101,5307 +1724230800,OneDrive,3611,9283 +1724230800,Discord,1301,6560 +1724230800,__unknown,295623,557156 +1724230800,Bing,8864,52508 +1724230800,BITS,1153,792 +1724230800,Dropbox,4221,10147 +1724230800,Google APIs,25333,49823 +1724230800,MSN,76329,1515414 +1724230800,Yahoo!,2520,5690 +1724230800,Dell,1111,4307 +1724230800,HTTP,6932,6258 +1724230800,Microsoft Update,1479,3644 +1724230800,VKontakte,2655,5410 +1724230800,Odnoklassniki,20240,37241 +1724230800,Advanced Packaging Tool,5125,5140 +1724230800,HTTPS,1981524,7877922 +1724230800,WhatsApp,2093,9161 +1724230800,Apple sites,7898,28329 +1724230800,iCloud,15803,29670 +1724230800,Mozilla,2141,4479 +1724230800,Avast,1254,8768 +1724230800,SSL client,1351577,4730286 +1724230800,Ad Nexus,7985,5034 +1724230800,Ubuntu Update Manager,3424,3550 +1724230800,Microsoft,237081,565592 +1724230800,NIH,1912,6803 +1724230800,Mail.Ru,518187,493556 +1724230800,Yandex,191719,1297096 +1724230800,Ubuntu,1920,1730 +1724230800,uTorrent,8277,13300 +1724230800,Google Play,9161,22863 +1724230800,AdGear,2472,8529 +1724230800,Rambler,30544,39844 +1724230800,Exchange Online,3166,6379 +1724230800,Office 365,57325,142778 +1724230800,Sharepoint Online,3984,100232 +1724230800,Microsoft Windows Live Services Authentication,59667,129725 +1724230800,Weborama,7805,9580 +1724230800,Office Mobile,33333,26760 +1724230800,Telegram,37601,327192 +1724230800,GISMETEO,1879,2806 +1724230800,Grammarly,4193,13460 +1724230800,Microsoft Teams,4192,91311 +1724230800,DNS over HTTPS,23238,78446 +1724230800,CoAP,7938,5183 +1724230800,__unknown,358,594 +1724230800,SSL,2809,9190 +1724230800,HTTPS,1355861,6146653 +1724230800,SSL,2999,10361 +1724230800,HTTPS,77848,90137 +1724230800,SSL client,49817,72624 +1724230800,Google Hangouts,2999,10361 +1724230800,Telegram,46818,62263 +1724230800,__unknown,585,4267 +1724230800,HTTP,1778,1986 +1724230800,DNS over HTTPS,24896,58019 +1724230800,__unknown,222670,8165819 +1724230800,Google,7202,11553 +1724230800,Gmail,46807,60299 +1724230800,SSL,2534,6230 +1724230800,HTTPS,135668,969551 +1724230800,SSL client,54009,71852 +1724230800,ICMP,902,0 +1724230800,DNS over HTTPS,8325,24317 +1724230800,__unknown,2363475,10572602 +1724230800,BitTorrent,310,496 +1724230800,Google APIs,11348,33121 +1724230800,Google,73715,167528 +1724230800,MSN,577,501 +1724230800,DNS,53130,0 +1724230800,Gmail,9791,19864 +1724230800,HTTP,11500,22618 +1724230800,Launchpad,640,430 +1724230800,Microsoft Update,612,500 +1724230800,NTP,43342,9015 +1724230800,STUN,44912,3670 +1724230800,YouTube,6895,143774 +1724230800,VKontakte,9998,15148 +1724230800,Odnoklassniki,9872,26685 +1724230800,Advanced Packaging Tool,1275,996 +1724230800,HTTPS,358860,2427725 +1724230800,SSL client,188117,643576 +1724230800,VeriSign,566,2141 +1724230800,Yandex,4316,65486 +1724230800,Ubuntu,635,566 +1724230800,Microsoft CryptoAPI,9648,21121 +1724230800,Microsoft WNS,577,501 +1724230800,Google Play,7249,35473 +1724230800,Lijit,40983,101362 +1724230800,ICMP,7810,0 +1724230800,Weborama,2725,6840 +1724230800,Telegram,7228,24590 +1724230800,Google Sign in,4981,7671 +1724230800,Thin Manager TFTP,560,438 +1724230800,Grammarly,2252,7886 +1724230800,DNS over HTTPS,27341,52905 +1724230800,CoAP,605,362 +1724230800,__unknown,1813990,20322591 +1724230800,DHCPv6,978,0 +1724230800,Google APIs,83371,279380 +1724230800,Google Drive,7469,10044 +1724230800,Google,69362,203160 +1724230800,QQ,678,343 +1724230800,Chrome,7701,50760 +1724230800,DNS,111003,82535 +1724230800,Firefox,2466,3083 +1724230800,HTTP,298569,4636449 +1724230800,Internet Explorer,678,343 +1724230800,Launchpad,2560,1720 +1724230800,Microsoft Update,121822,2372809 +1724230800,NTP,540,540 +1724230800,SSL,7001,11754 +1724230800,STUN,33954,1258 +1724230800,YouTube,7320,38848 +1724230800,VKontakte,2383,5460 +1724230800,Steam,2909,45911 +1724230800,Advanced Packaging Tool,26910,24257 +1724230800,Windows Update,79649,1338802 +1724230800,HTTPS,1172994,8794910 +1724230800,WhatsApp,11096,61577 +1724230800,Apple sites,9121,22551 +1724230800,iCloud,94140,101850 +1724230800,Mozilla,3560,8671 +1724230800,Avast,770,848 +1724230800,Opera,11051,7920 +1724230800,SSL client,578371,3230347 +1724230800,Ubuntu Update Manager,18923,17659 +1724230800,Microsoft,34073,1371856 +1724230800,Mail.Ru,4833,17685 +1724230800,Yandex,257833,2357173 +1724230800,Gravatar,7014,47599 +1724230800,Ubuntu,5852,5339 +1724230800,Microsoft CryptoAPI,9325,15790 +1724230800,Microsoft NCSI,822,974 +1724230800,Microsoft WNS,633,7964 +1724230800,uTorrent,2731,6242 +1724230800,Rubicon Project,2345,6579 +1724230800,33Across,1131,7019 +1724230800,Google Hangouts,797,7092 +1724230800,ICMP,2800,0 +1724230800,Gmail attachment,672,284 +1724230800,JetBrains,8512,27188 +1724230800,Telegram,7412,35280 +1724230800,Google Sign in,1259,5870 +1724230800,Thin Manager TFTP,576,664 +1724230800,Edge Chromium,1761,6023 +1724230800,DNS over TLS,2158,9541 +1724230800,DNS over HTTPS,28943,97312 +1724230800,IPv6 No Next Header,196,0 +1724231100,Thin Manager TFTP,672,280 +1724231100,ICMP,1099380,1100520 +1724231100,ICMP,708180,708780 +1724231100,__unknown,49476,615231 +1724231100,HTTPS,15269,15253 +1724231100,SSL client,15269,15253 +1724231100,Yandex,15269,15253 +1724231100,HTTPS,9573,17400 +1724231100,SSL client,9573,17400 +1724231100,Sharepoint Online,9573,17400 +1724231100,HTTPS,92704,133757 +1724231100,SSL client,92704,133757 +1724231100,Sharepoint Online,3718,7692 +1724231100,Telegram,88986,126065 +1724231100,HTTPS,107507,466783 +1724231100,SSL client,107507,466783 +1724231100,Mail.Ru,107507,466783 +1724231100,ICMP,36120,35760 +1724231100,HTTPS,6971,11474 +1724231100,SSL client,6971,11474 +1724231100,Yandex,6971,11474 +1724231100,HTTPS,241190,61981 +1724231100,SSL client,241190,61981 +1724231100,Mail.Ru,241190,61981 +1724231100,HTTPS,67759,895471 +1724231100,HTTPS,258823,1551953 +1724231100,SSL client,56655,64073 +1724231100,Yandex,3125,4061 +1724231100,Telegram,53530,60012 +1724231100,HTTPS,845637,5487054 +1724231100,SSL client,8764,2633 +1724231100,Google Play,8764,2633 +1724231100,DNS over HTTPS,6729,16080 +1724231100,__unknown,52520,37878 +1724231100,Google APIs,6074,18805 +1724231100,Google,8775,19803 +1724231100,Windows Live,5763,9141 +1724231100,Gmail,15305,20049 +1724231100,HTTP,1605,2043 +1724231100,Microsoft Update,1071,1067 +1724231100,Skype,1089,6519 +1724231100,VKontakte,1957,5039 +1724231100,Windows Update,486,621 +1724231100,HTTPS,1233604,41384983 +1724231100,Apple sites,2212,8091 +1724231100,iCloud,3931,9335 +1724231100,Avast,1260,9595 +1724231100,SSL client,656395,1048604 +1724231100,Mail.Ru,549427,806825 +1724231100,Yandex,54264,41260 +1724231100,Microsoft CryptoAPI,1119,1422 +1724231100,Office 365,3344,45509 +1724231100,Microsoft Teams,2994,48633 +1724231100,DNS over HTTPS,14740,36848 +1724231100,__unknown,160034,314605 +1724231100,Apple Update,1636,5147 +1724231100,Dropbox,2122,1593 +1724231100,Google APIs,16079,73464 +1724231100,Google,35260,141843 +1724231100,MSN,11112,28313 +1724231100,HTTP,10635,145469 +1724231100,Microsoft Update,120334,301687 +1724231100,Skype,15189,33919 +1724231100,TeamViewer,1584,8893 +1724231100,VKontakte,68185,68524 +1724231100,Odnoklassniki,9200,16955 +1724231100,Advanced Packaging Tool,1909,1759 +1724231100,IMAPS,4488,12522 +1724231100,HTTPS,2936483,58788398 +1724231100,WhatsApp,3285,5622 +1724231100,Apple sites,11751,228057 +1724231100,iCloud,14343,32124 +1724231100,Avast,1944,4342 +1724231100,SSL client,1685563,2596097 +1724231100,Amazon Web Services,5490,29623 +1724231100,Ubuntu Update Manager,1274,1193 +1724231100,Microsoft,72947,110825 +1724231100,NIH,1912,6803 +1724231100,Mail.Ru,265664,319615 +1724231100,Yandex,469566,392503 +1724231100,Ubuntu,635,566 +1724231100,Microsoft Azure,2610,12080 +1724231100,Microsoft CryptoAPI,3210,2341 +1724231100,Apple Maps,2345,5358 +1724231100,Google Play,3289,7102 +1724231100,Rambler,21249,27052 +1724231100,Exchange Online,3919,20939 +1724231100,Office 365,49599,150403 +1724231100,Sharepoint Online,9474,181980 +1724231100,Microsoft Windows Live Services Authentication,18538,45259 +1724231100,Yandex Market,44192,109619 +1724231100,Office Mobile,32905,32059 +1724231100,Telegram,41234,238503 +1724231100,GISMETEO,2260,9534 +1724231100,Xiaomi,360098,19380 +1724231100,Microsoft Teams,14354,173851 +1724231100,DNS over HTTPS,6770,26630 +1724231100,__unknown,374272,9607281 +1724231100,ICMP,28448,0 +1724231100,DNS over HTTPS,138,74 +1724231100,__unknown,555484,186991 +1724231100,__unknown,2423,109723 +1724231100,SSL,2741,9189 +1724231100,HTTPS,33429,14290 +1724231100,__unknown,28005,685170 +1724231100,Windows Live,3303,19587 +1724231100,HTTPS,43742,379664 +1724231100,SSL client,3303,19587 +1724231100,ICMP,846,0 +1724231100,__unknown,105385,1026543 +1724231100,Google APIs,4887,8401 +1724231100,Google,21496,24888 +1724231100,HTTP,785,474 +1724231100,HTTPS,37691,72090 +1724231100,SSL client,26383,33289 +1724231100,ICMP,4660,3840 +1724231100,Telegram,3124,7712 +1724231100,DNS over HTTPS,38236,89350 +1724231100,__unknown,2952516,24729897 +1724231100,BITS,7121,34517 +1724231100,BitTorrent,1381,1378 +1724231100,DHCPv6,163,0 +1724231100,Google APIs,24350,208112 +1724231100,Google Drive,9495,11368 +1724231100,Google,56693,317942 +1724231100,MSN,578,502 +1724231100,BitTorrent tracker,1071,944 +1724231100,DNS,38509,0 +1724231100,Gmail,8670,15164 +1724231100,Google Analytics,7051,32062 +1724231100,HTTP,13120,40463 +1724231100,Launchpad,640,430 +1724231100,Microsoft Update,2967,2968 +1724231100,NetBIOS-dgm,250,0 +1724231100,NTP,2160,2160 +1724231100,SSL,8818,14992 +1724231100,STUN,9386,4262 +1724231100,VKontakte,6669,28501 +1724231100,Odnoklassniki,5155,14784 +1724231100,Advanced Packaging Tool,1275,996 +1724231100,HTTPS,442009,1655954 +1724231100,WhatsApp,3191,11257 +1724231100,SSL client,213020,871751 +1724231100,Ubuntu,635,566 +1724231100,Atlassian,42623,13451 +1724231100,Microsoft CryptoAPI,3417,3367 +1724231100,Microsoft WNS,578,502 +1724231100,Undertone,2361,11466 +1724231100,Lijit,30208,69991 +1724231100,ICMP,31529,18910 +1724231100,Google Sign in,6133,107336 +1724231100,Thin Manager TFTP,196,252 +1724231100,Grammarly,4602,15774 +1724231100,DNS over HTTPS,31453,86733 +1724231100,IPv6 No Next Header,196,0 +1724231100,__unknown,1481256,5242351 +1724231100,Apple Update,5439,13594 +1724231100,BitTorrent,153,537 +1724231100,DHCPv6,978,0 +1724231100,Google APIs,259608,235937 +1724231100,Google Drive,16558,7188 +1724231100,Google,60683,238629 +1724231100,QQ,678,343 +1724231100,Wikipedia,19051,134829 +1724231100,BitTorrent tracker,153,537 +1724231100,Chrome,565,484 +1724231100,DNS,108250,95640 +1724231100,Gmail,6978,4055 +1724231100,HTTP,438419,11689408 +1724231100,Internet Explorer,678,343 +1724231100,Launchpad,2560,1852 +1724231100,Microsoft Update,3210,2512 +1724231100,NetBIOS-dgm,243,0 +1724231100,NTP,25050,5460 +1724231100,SSL,10204,29541 +1724231100,STUN,984,888 +1724231100,YouTube,1207,6142 +1724231100,VKontakte,1529,4619 +1724231100,Advanced Packaging Tool,27398,24883 +1724231100,HTTPS,1164111,4074181 +1724231100,WhatsApp,2963,4235 +1724231100,Apple sites,4117,12630 +1724231100,iCloud,50414,68953 +1724231100,Avast,830,848 +1724231100,SSL client,570006,1981794 +1724231100,Ubuntu Update Manager,18237,17093 +1724231100,Microsoft,367751,11609125 +1724231100,Mail.Ru,3996,14954 +1724231100,Yandex,45700,904322 +1724231100,Ubuntu,7026,6399 +1724231100,Microsoft CryptoAPI,4391,3992 +1724231100,Microsoft NCSI,1614,1593 +1724231100,Microsoft WNS,1266,15928 +1724231100,Apple Maps,1661,10118 +1724231100,Rambler,5132,12739 +1724231100,Lijit,5358,14453 +1724231100,Google Hangouts,4077,23735 +1724231100,ICMP,2164,0 +1724231100,ICMP for IPv6,70,0 +1724231100,Weborama,4719,13473 +1724231100,Firebase Crashlytics,39243,122353 +1724231100,Telegram,2096,7730 +1724231100,Google Sign in,4529,8213 +1724231100,Google Inbox,17987,88372 +1724231100,Thin Manager TFTP,276,106 +1724231100,Edge Chromium,4696,16034 +1724231100,DNS over TLS,10461,43336 +1724231100,DNS over HTTPS,31510,122596 +1724231400,HTTPS,342564,213135 +1724231400,SSL client,342564,213135 +1724231400,Yandex,342564,213135 +1724231400,Google,147004,152450 +1724231400,HTTPS,147004,152450 +1724231400,SSL client,147004,152450 +1724231400,HTTPS,13306,8857 +1724231400,__unknown,26520,22532 +1724231400,__unknown,35772,31902 +1724231400,HTTPS,11238,14049 +1724231400,HTTPS,256697,695972 +1724231400,SSL client,38908,131407 +1724231400,Microsoft,7623,117397 +1724231400,Google Play,31285,14010 +1724231400,HTTPS,59865,98116 +1724231400,__unknown,210371,213578 +1724231400,Google APIs,5115,13328 +1724231400,Google,18273,318136 +1724231400,MSN,18025,51267 +1724231400,Gmail,6071,3585 +1724231400,iTunes,3087,13519 +1724231400,VKontakte,15577,22754 +1724231400,IMAPS,1936,6116 +1724231400,HTTPS,426889,3531625 +1724231400,Mozilla,2196,4639 +1724231400,Avast,1254,9366 +1724231400,SSL client,218079,924605 +1724231400,Microsoft,22407,59390 +1724231400,Mail.Ru,49447,121199 +1724231400,Yandex,31914,61251 +1724231400,Viber,1981,2708 +1724231400,Office 365,39275,235593 +1724231400,Office Mobile,3457,7870 +1724231400,Telegram,6711,38108 +1724231400,DNS over HTTPS,4154,11497 +1724231400,__unknown,289053,1032336 +1724231400,Apple Update,1801,5090 +1724231400,Bing,4531,11377 +1724231400,BITS,8425,202224 +1724231400,Dropbox,2966,1361 +1724231400,Google APIs,15975,80336 +1724231400,Google,645207,351669 +1724231400,MSN,24663,85074 +1724231400,Gmail,49578,86735 +1724231400,HTTP,15137,207293 +1724231400,Launchpad,508,206 +1724231400,Microsoft Update,124973,279880 +1724231400,HP Home & Home Office Store,10048,7421 +1724231400,Skype,3254,7019 +1724231400,SSL,30975,26363 +1724231400,Advanced Packaging Tool,1722,1432 +1724231400,IMAPS,45939,70970 +1724231400,HTTPS,5284368,53937918 +1724231400,APNS,24622,13915 +1724231400,Apple sites,21786,115972 +1724231400,iCloud,89887,231057 +1724231400,Avast,8637,36587 +1724231400,SSL client,1502437,2331961 +1724231400,Ad Nexus,7925,4951 +1724231400,Ubuntu Update Manager,1214,1226 +1724231400,Microsoft,95748,392888 +1724231400,Mail.Ru,208860,273043 +1724231400,Yandex,34781,77187 +1724231400,Ubuntu,503,451 +1724231400,Microsoft CryptoAPI,2922,2090 +1724231400,Apple Maps,1400,12395 +1724231400,Rambler,16261,20417 +1724231400,Apple Music,14333,21119 +1724231400,Office 365,33179,292833 +1724231400,Microsoft Windows Live Services Authentication,57074,85116 +1724231400,ICMP,7872,0 +1724231400,Gmail attachment,6121,33908 +1724231400,Office Mobile,8766,8048 +1724231400,Telegram,13384,66691 +1724231400,GISMETEO,2128,9302 +1724231400,Edge Chromium,527,186 +1724231400,DNS over HTTPS,16194,75625 +1724231400,Gmail,5937784,8725346 +1724231400,STUN,9052,10582 +1724231400,HTTPS,5937784,8725346 +1724231400,SSL client,5937784,8725346 +1724231400,HTTPS,17933,20735 +1724231400,ICMP,2214,0 +1724231400,__unknown,246142,75019 +1724231400,HTTPS,6662,23580 +1724231400,__unknown,41154,40906 +1724231400,Google,44486,28220 +1724231400,iTunes,1489,6510 +1724231400,STUN,425540,6384660 +1724231400,HTTPS,370056,6086197 +1724231400,Apple sites,1338,5455 +1724231400,SSL client,136838,127742 +1724231400,Apple Maps,2714,6989 +1724231400,Google Play,46261,25617 +1724231400,CloudFlare,5427,7611 +1724231400,ICMP,2428,1680 +1724231400,Telegram,16846,26003 +1724231400,Google Sign in,11599,11812 +1724231400,DNS over HTTPS,18737,43627 +1724231400,__unknown,1957580,18156227 +1724231400,BitTorrent,310,496 +1724231400,DHCPv6,163,0 +1724231400,Google APIs,62529,58010 +1724231400,Google Drive,25767,17556 +1724231400,Google,112783,306032 +1724231400,Adobe Software,418331,15815862 +1724231400,DNS,52511,0 +1724231400,Gmail,14330,128762 +1724231400,HTTP,12246,22767 +1724231400,iTunes,5202,50943 +1724231400,Launchpad,640,430 +1724231400,NTP,13110,3360 +1724231400,STUN,496,592 +1724231400,VKontakte,10656,19374 +1724231400,Odnoklassniki,2575,2410 +1724231400,Advanced Packaging Tool,640,430 +1724231400,HTTPS,911591,17791843 +1724231400,Apple sites,6141,40560 +1724231400,SSL client,722403,17229528 +1724231400,Microsoft,2812,15109 +1724231400,Yandex,13241,360630 +1724231400,Nvidia,18634,43331 +1724231400,Microsoft CryptoAPI,3036,4436 +1724231400,Lijit,3716,8514 +1724231400,ICMP,42494,60 +1724231400,Weborama,1928,5385 +1724231400,Telegram,1684,7788 +1724231400,Google Sign in,13234,12671 +1724231400,Thin Manager TFTP,284,332 +1724231400,Grammarly,2272,7887 +1724231400,Stripe,9380,343813 +1724231400,DNS over HTTPS,17148,53386 +1724231400,IPv6 No Next Header,196,0 +1724231400,__unknown,1823884,6415435 +1724231400,Amazon,853,6702 +1724231400,Apple Update,3648,12659 +1724231400,Google APIs,58475,227037 +1724231400,Google,53577,132050 +1724231400,QQ,678,343 +1724231400,Chrome,4589,3921 +1724231400,DNS,86214,68660 +1724231400,HTTP,814265,44119499 +1724231400,Internet Explorer,6866,2383 +1724231400,iTunes,4504,10429 +1724231400,Launchpad,2560,1720 +1724231400,Microsoft Update,1623,1390 +1724231400,NTP,12660,2910 +1724231400,STUN,2584,2030 +1724231400,YouTube,24070,5862 +1724231400,VKontakte,2383,5528 +1724231400,Advanced Packaging Tool,31079,28495 +1724231400,HTTPS,2050037,15615022 +1724231400,Apple sites,19813,720540 +1724231400,iCloud,69132,78721 +1724231400,Mozilla,2817,5922 +1724231400,Avast,382,391 +1724231400,SSL client,468333,3796019 +1724231400,Ubuntu Update Manager,24901,23523 +1724231400,Microsoft,702193,43971408 +1724231400,VeriSign,566,2140 +1724231400,Yandex,59163,1566795 +1724231400,Ubuntu,4893,4627 +1724231400,Nvidia,99898,205790 +1724231400,Microsoft CryptoAPI,20709,73527 +1724231400,Microsoft NCSI,1359,1527 +1724231400,Microsoft WNS,693,7964 +1724231400,Apple Maps,1925,10119 +1724231400,Google Play,27568,35529 +1724231400,CloudFlare,1115,4191 +1724231400,Rambler,2224,21383 +1724231400,ICMP,4924,0 +1724231400,Weborama,3024,7526 +1724231400,360 Safeguard,838,1199 +1724231400,Gmail attachment,388,284 +1724231400,JetBrains,16764,432676 +1724231400,Telegram,28935,134024 +1724231400,Thin Manager TFTP,276,106 +1724231400,Edge Chromium,1761,6016 +1724231400,DNS over TLS,10173,43107 +1724231400,DNS over HTTPS,39345,136619 +1724231400,DeepL Translator,6262,250056 +1724231400,Notion,2495,5474 +1724231700,Thin Manager TFTP,252,196 +1724231700,__unknown,4240,35281 +1724231700,HTTPS,13535,143211 +1724231700,Google,223465,1185322 +1724231700,HTTPS,223465,1185322 +1724231700,SSL client,223465,1185322 +1724231700,__unknown,1244,1838 +1724231700,__unknown,26520,15660 +1724231700,HTTPS,8694,20566 +1724231700,SSL client,8694,20566 +1724231700,Yandex,8694,20566 +1724231700,HTTPS,7818,9308 +1724231700,SSL client,7818,9308 +1724231700,Yandex,7818,9308 +1724231700,HTTPS,8267,13940 +1724231700,HTTPS,237202,55645 +1724231700,SSL client,237202,55645 +1724231700,Mail.Ru,237202,55645 +1724231700,HTTPS,28784,30339 +1724231700,SSL client,28784,30339 +1724231700,Yandex,28784,30339 +1724231700,HTTPS,2223,2540 +1724231700,HTTPS,12119,30778 +1724231700,SSL client,3345,19478 +1724231700,Yandex,3345,19478 +1724231700,DNS over HTTPS,4744,12006 +1724231700,__unknown,40946,8331 +1724231700,Google,29242,307220 +1724231700,MSN,4730,6177 +1724231700,SSL,22631,8335 +1724231700,HTTPS,1371080,77187279 +1724231700,APNS,22631,8335 +1724231700,iCloud,8078,16517 +1724231700,Mozilla,2269,4739 +1724231700,Avast,1254,8640 +1724231700,SSL client,273812,709678 +1724231700,Microsoft,39811,67882 +1724231700,Mail.Ru,71696,78534 +1724231700,Yandex,11577,14924 +1724231700,Apple Maps,12669,485131 +1724231700,Rambler,51750,166963 +1724231700,Office 365,30774,29747 +1724231700,DNS over HTTPS,6011,64685 +1724231700,__unknown,126497,137801 +1724231700,Apple Update,1969,4970 +1724231700,Bing,1927,9268 +1724231700,Google,11052,34771 +1724231700,MSN,115316,198300 +1724231700,Adobe Software,14239,13756 +1724231700,DNS,201,132 +1724231700,HTTP,938,637 +1724231700,Microsoft Update,2902,7170 +1724231700,SSL,549000,5591543 +1724231700,IMAPS,2046,5917 +1724231700,HTTPS,2304259,11846639 +1724231700,WhatsApp,1799,6003 +1724231700,Apple sites,4363,14529 +1724231700,iCloud,31330,95212 +1724231700,Bing Maps,6447,178902 +1724231700,SSL client,1036220,7597375 +1724231700,Acrobat.com,5743,13430 +1724231700,CloudFront,5655,49202 +1724231700,Microsoft,256375,182122 +1724231700,Mail.Ru,205511,257717 +1724231700,Yandex,300169,6298440 +1724231700,GitHub,1520,5974 +1724231700,Ubuntu,503,451 +1724231700,Google Play,4785,13721 +1724231700,Rambler,5964,3723 +1724231700,Office 365,19056,143884 +1724231700,Microsoft Windows Live Services Authentication,19095,49432 +1724231700,smpnameres,286122,586302 +1724231700,Office Mobile,21063,17293 +1724231700,Telegram,5754,39742 +1724231700,DNS over HTTPS,5845,22528 +1724231700,Adobe Update,1739,5559 +1724231700,HTTPS,161528,50915 +1724231700,__unknown,0,780 +1724231700,__unknown,166457,41499 +1724231700,Google,8778,15245 +1724231700,HTTPS,16606,32035 +1724231700,SSL client,8778,15245 +1724231700,ICMP,1394,0 +1724231700,__unknown,512301,17430981 +1724231700,Adobe Software,2220,6122 +1724231700,Gmail,174343,251228 +1724231700,HTTP,661,474 +1724231700,HTTPS,437274,3460216 +1724231700,WhatsApp,21221,455761 +1724231700,SSL client,181998,264421 +1724231700,CloudFlare,5435,7071 +1724231700,ICMP,410,0 +1724231700,DNS over HTTPS,5075,13523 +1724231700,__unknown,2886101,11572164 +1724231700,BITS,1586,14481 +1724231700,BitTorrent,463,496 +1724231700,Google APIs,20007,59007 +1724231700,Google,42387,173705 +1724231700,BitTorrent tracker,153,0 +1724231700,DNS,29401,0 +1724231700,Gmail,15492,38039 +1724231700,HTTP,11970,29101 +1724231700,Launchpad,640,430 +1724231700,Microsoft Update,3610,2857 +1724231700,NTP,900,900 +1724231700,SSL,4015,13059 +1724231700,STUN,850,990 +1724231700,TFTP,60,0 +1724231700,YouTube,12758,39496 +1724231700,Odnoklassniki,7021,21894 +1724231700,Advanced Packaging Tool,1998,1716 +1724231700,IMAPS,2664,2946 +1724231700,HTTPS,616655,12452830 +1724231700,SSL client,125106,405903 +1724231700,Ubuntu Update Manager,1358,1286 +1724231700,VeriSign,566,2140 +1724231700,Nvidia,10530,21782 +1724231700,Microsoft CryptoAPI,6282,9604 +1724231700,CloudFlare,2420,11009 +1724231700,Office 365,2416,15843 +1724231700,Google Hangouts,619,7093 +1724231700,ICMP,22159,11232 +1724231700,Gmail attachment,284,0 +1724231700,Firebase Crashlytics,2202,6538 +1724231700,Telegram,337477,11900510 +1724231700,DNS over HTTPS,19018,51573 +1724231700,DeepL Translator,6672,20199 +1724231700,IPv6 No Next Header,196,0 +1724231700,__unknown,2038775,10077330 +1724231700,Apple Update,1783,4815 +1724231700,BitTorrent,153,198 +1724231700,DHCPv6,1141,0 +1724231700,Google APIs,22632,89476 +1724231700,Google,33960,183784 +1724231700,QQ,678,343 +1724231700,BitTorrent tracker,153,198 +1724231700,Chrome,3525,3155 +1724231700,DNS,129666,100324 +1724231700,Gmail,28616,73022 +1724231700,HTTP,86006,182833 +1724231700,Internet Explorer,1638,1313 +1724231700,iTunes,4343,30391 +1724231700,Launchpad,3200,2150 +1724231700,Microsoft Update,7526,14392 +1724231700,NetBIOS-dgm,250,0 +1724231700,NTP,180,180 +1724231700,Skype,6335,15033 +1724231700,SSL,8542,13826 +1724231700,STUN,36276,2146 +1724231700,YouTube,11257,18903 +1724231700,VKontakte,2448,5459 +1724231700,Steam,5123,68771 +1724231700,Advanced Packaging Tool,32420,29647 +1724231700,HTTPS,2049631,8806246 +1724231700,Pinterest,2162,6343 +1724231700,Spotify,1347,6518 +1724231700,Apple sites,24651,114017 +1724231700,iCloud,19484,44520 +1724231700,Avast,1146,1173 +1724231700,SSL client,377350,1345486 +1724231700,Ubuntu Update Manager,24919,23643 +1724231700,Microsoft,7582,22769 +1724231700,Mail.Ru,4241,4840 +1724231700,Yandex,153578,568333 +1724231700,Ubuntu,4726,4315 +1724231700,Nvidia,14650,34091 +1724231700,Microsoft CryptoAPI,12276,39905 +1724231700,Microsoft NCSI,2350,2567 +1724231700,uTorrent,617,482 +1724231700,Scorecard Research,3784,15291 +1724231700,Improve Digital,4193,13454 +1724231700,Rambler,5132,12891 +1724231700,Office 365,960,970 +1724231700,ICMP,8985,0 +1724231700,Gmail attachment,776,568 +1724231700,Telegram,108002,670132 +1724231700,Thin Manager TFTP,108,108 +1724231700,Edge Chromium,1054,2728 +1724231700,DNS over TLS,16264,66857 +1724231700,DNS over HTTPS,44907,133529 +1724231700,Discord,2106,2354 +1724231700,_err_4655,3952,3345 +1724231700,Notion,2559,5525 +1724231700,IPv6 No Next Header,98,0 +1724232000,SSL,5909,12000 +1724232000,SSL client,5909,12000 +1724232000,Google Hangouts,5909,12000 +1724232000,__unknown,4428,24185 +1724232000,HTTPS,20679,44202 +1724232000,SSL client,20679,44202 +1724232000,Yandex,20679,44202 +1724232000,__unknown,1484,2060 +1724232000,HTTPS,3623,6169 +1724232000,SSL client,3623,6169 +1724232000,Sharepoint Online,3623,6169 +1724232000,HTTPS,203311,30730 +1724232000,HTTPS,6023,9958 +1724232000,HTTPS,5396988,594711 +1724232000,SSL client,112332,143696 +1724232000,Yandex,6593,11163 +1724232000,Telegram,105739,132533 +1724232000,HTTPS,5486,9528 +1724232000,SSL client,5486,9528 +1724232000,Yandex,5486,9528 +1724232000,DNS over HTTPS,17879,39652 +1724232000,__unknown,3168,4973 +1724232000,HTTPS,62026,75998 +1724232000,SSL client,53949,67556 +1724232000,Telegram,53949,67556 +1724232000,__unknown,45388,240352 +1724232000,HTTPS,473332,356438 +1724232000,SSL client,35332,27781 +1724232000,Yandex,33826,21679 +1724232000,Google Play,1506,6102 +1724232000,Telegram,19756,235602 +1724232000,DNS over HTTPS,29939,73057 +1724232000,__unknown,378008,207243 +1724232000,Google APIs,8448,18269 +1724232000,Google,32569,331841 +1724232000,SSL,958079,2356485 +1724232000,TeamViewer,1458,8847 +1724232000,HTTPS,432566,1642428 +1724232000,iCloud,2942,8275 +1724232000,Avast,1314,11788 +1724232000,SSL client,341384,1512279 +1724232000,Microsoft,28945,31556 +1724232000,Mail.Ru,64361,90402 +1724232000,Yandex,66962,70028 +1724232000,uTorrent,14123,20370 +1724232000,Rambler,12571,13616 +1724232000,Office 365,9724,32576 +1724232000,smpnameres,119433,97791 +1724232000,Google Meet,97967,874711 +1724232000,__unknown,428216,2455379 +1724232000,Bing,2108,8757 +1724232000,Dropbox,5017,6958 +1724232000,Google APIs,17833,43607 +1724232000,Google,6632,96635 +1724232000,MSN,16743,91900 +1724232000,Chrome,2818,867 +1724232000,Gmail,3514,17461 +1724232000,HTTP,9558,13910 +1724232000,iTunes,4316,25854 +1724232000,schuelerVZ,3409,4156 +1724232000,SSL,61599,50269 +1724232000,VKontakte,16967,28436 +1724232000,Advanced Packaging Tool,875,1368 +1724232000,HTTPS,1713912,8702626 +1724232000,WhatsApp,3162,5682 +1724232000,APNS,15848,7976 +1724232000,iCloud,19577,42854 +1724232000,Mozilla,2365,4857 +1724232000,SSL client,969434,5229650 +1724232000,Ad Nexus,7925,4889 +1724232000,Amazon Web Services,3259,21370 +1724232000,Ubuntu Update Manager,875,1368 +1724232000,Microsoft,110859,139648 +1724232000,Mail.Ru,524847,551382 +1724232000,Yandex,144869,3992749 +1724232000,Ubuntu,503,451 +1724232000,Microsoft Azure,6350,28686 +1724232000,Google Update,4400,10370 +1724232000,Microsoft CryptoAPI,495,398 +1724232000,AdGear,2189,7404 +1724232000,Rambler,28815,39856 +1724232000,Office 365,11084,31733 +1724232000,smpnameres,240,673 +1724232000,Office Mobile,8766,8048 +1724232000,Mail.ru Attachment,3915,17666 +1724232000,Telegram,4337,16613 +1724232000,Grammarly,2227,6768 +1724232000,DNS over HTTPS,22263,58712 +1724232000,HTTPS,65228,31600 +1724232000,Google,13516,16069 +1724232000,HTTPS,13516,16069 +1724232000,SSL client,13516,16069 +1724232000,Google,15506,19466 +1724232000,HTTPS,15506,19466 +1724232000,SSL client,15506,19466 +1724232000,ICMP,3900,4020 +1724232000,__unknown,139083,4069221 +1724232000,HTTP,723,408 +1724232000,HTTPS,28488,20800 +1724232000,__unknown,141077,925495 +1724232000,HTTP,882,3680 +1724232000,HTTPS,193817,99777 +1724232000,SSL client,133229,32840 +1724232000,Microsoft CryptoAPI,882,3680 +1724232000,ICMP,990,0 +1724232000,Telegram,121556,21092 +1724232000,Google Sign in,11673,11748 +1724232000,DNS over HTTPS,3493,11920 +1724232000,__unknown,2812617,15052913 +1724232000,BitTorrent,310,496 +1724232000,Google APIs,26523,52720 +1724232000,Google Drive,6031,10020 +1724232000,Google,292428,242423 +1724232000,Android browser,782,526 +1724232000,DNS,48139,0 +1724232000,Gmail,19849,18903 +1724232000,HTTP,64785,4358071 +1724232000,NetBIOS-dgm,243,0 +1724232000,NTP,23680,5190 +1724232000,SSL,797,7092 +1724232000,YouTube,1679,3626 +1724232000,Advanced Packaging Tool,59857,4346802 +1724232000,HTTPS,827618,2236967 +1724232000,Mozilla,1996,4611 +1724232000,SSL client,377309,411622 +1724232000,CloudFront,2221,10295 +1724232000,Ubuntu Update Manager,59222,4346236 +1724232000,Ubuntu,635,566 +1724232000,Nvidia,4681,12554 +1724232000,Microsoft CryptoAPI,4146,10743 +1724232000,Apple Maps,2063,30704 +1724232000,Google Hangouts,797,7092 +1724232000,ICMP,76075,784 +1724232000,ICMP for IPv6,70,0 +1724232000,Weborama,3202,6546 +1724232000,Gmail attachment,568,0 +1724232000,Telegram,75982,118925 +1724232000,Google Sign in,4981,7869 +1724232000,Thin Manager TFTP,276,106 +1724232000,Grammarly,4542,15772 +1724232000,DNS over HTTPS,28403,54648 +1724232000,DeepL Translator,6913,14768 +1724232000,IPv6 No Next Header,196,0 +1724232000,__unknown,1900208,29766327 +1724232000,Bing,9274,23951 +1724232000,DHCPv6,978,0 +1724232000,Google APIs,86882,181841 +1724232000,Google Drive,1115,7775 +1724232000,Google,37371,222288 +1724232000,QQ,678,343 +1724232000,Chrome,3700,3276 +1724232000,DNS,90051,72295 +1724232000,Firefox,2300,2796 +1724232000,Gmail,51949,27493 +1724232000,HTTP,388327,20494276 +1724232000,Internet Explorer,2234,1834 +1724232000,iTunes,853,5875 +1724232000,Launchpad,2560,1786 +1724232000,Microsoft Update,982,815 +1724232000,NTP,1260,1260 +1724232000,SSL,797,7092 +1724232000,STUN,2926,4262 +1724232000,VKontakte,13689,73813 +1724232000,Advanced Packaging Tool,114871,3984745 +1724232000,HTTPS,1177939,2531720 +1724232000,Apple sites,14419,66240 +1724232000,iCloud,29883,74991 +1724232000,Mozilla,4755,6395 +1724232000,Avast,2753,2719 +1724232000,Opera,3530,5853 +1724232000,SSL client,332152,899628 +1724232000,Ubuntu Update Manager,108123,3979707 +1724232000,Microsoft,216536,16450055 +1724232000,Mail.Ru,1090,5495 +1724232000,Yandex,11016,51510 +1724232000,Ubuntu,4613,3713 +1724232000,Microsoft CryptoAPI,8413,10994 +1724232000,Microsoft NCSI,3226,3475 +1724232000,Microsoft WNS,573,7965 +1724232000,uTorrent,5818,3880 +1724232000,Google Play,43597,66367 +1724232000,Rambler,4405,12060 +1724232000,Lijit,1071,6211 +1724232000,Office 365,619,1199 +1724232000,Google Hangouts,797,7092 +1724232000,ICMP,7795,4146 +1724232000,Weborama,2916,7598 +1724232000,Telegram,30164,247940 +1724232000,Edge Chromium,6097,18214 +1724232000,DNS over TLS,10239,42931 +1724232000,DNS over HTTPS,26239,93220 +1724232000,Notion,2467,2167 +1724232299,Thin Manager TFTP,672,280 +1724232299,__unknown,1631036,1430872 +1724232299,__unknown,48680,47390 +1724232299,HTTPS,26298,32374 +1724232299,Skype,5438,8848 +1724232299,HTTPS,5438,8848 +1724232299,SSL client,5438,8848 +1724232299,HTTPS,101793,1778465 +1724232299,HTTPS,7445,11492 +1724232299,SSL client,7445,11492 +1724232299,Yandex,7445,11492 +1724232299,HTTPS,12652,13060 +1724232299,SSL client,12652,13060 +1724232299,Yandex,6529,4491 +1724232299,Sharepoint Online,6123,8569 +1724232299,HTTPS,59771,48675 +1724232299,SSL client,24272,21517 +1724232299,Yandex,20605,15521 +1724232299,Sharepoint Online,3667,5996 +1724232299,Google,2455745,2696438 +1724232299,HTTPS,2455745,2696438 +1724232299,SSL client,2455745,2696438 +1724232299,__unknown,2441,3993 +1724232299,HTTPS,10794,19079 +1724232299,Google APIs,2047,6293 +1724232299,SSL,239197,4541259 +1724232299,HTTPS,108457,117772 +1724232299,SSL client,38829,32516 +1724232299,Yandex,36782,26223 +1724232299,__unknown,227203,114729 +1724232299,Google APIs,4378,12212 +1724232299,Google,14848,20952 +1724232299,MSN,88595,75161 +1724232299,iTunes,5471,9506 +1724232299,Skype,1641,7880 +1724232299,SSL,176028,805760 +1724232299,HTTPS,1061926,9781660 +1724232299,Apple sites,2185,7844 +1724232299,iCloud,8428,19020 +1724232299,Avast,1254,11020 +1724232299,SSL client,345931,1141029 +1724232299,Microsoft,20670,76902 +1724232299,Mail.Ru,140167,270694 +1724232299,Yandex,30821,350773 +1724232299,Microsoft Azure,5879,252118 +1724232299,Viber,2401,7224 +1724232299,Office 365,1522,1425 +1724232299,smpnameres,26192,12636 +1724232299,Yandex Market,17671,18298 +1724232299,DNS over HTTPS,2446,7755 +1724232299,__unknown,379864,681786 +1724232299,Bing,645,5168 +1724232299,Eset,2000,1246 +1724232299,Google APIs,3653,7571 +1724232299,Google,9172,24038 +1724232299,MSN,7024,17823 +1724232299,DNS,201,132 +1724232299,Gmail,111317,119310 +1724232299,Google Analytics,2477,6545 +1724232299,HTTP,5277,3962 +1724232299,iTunes,2077,9995 +1724232299,Launchpad,574,430 +1724232299,SSL,29750,43360 +1724232299,YouTube,1181,8383 +1724232299,TeamViewer,866,5289 +1724232299,VKontakte,4663,6403 +1724232299,Steam,15227,22093 +1724232299,Advanced Packaging Tool,2662,2450 +1724232299,IMAPS,125720,171287 +1724232299,HTTPS,1647066,7273431 +1724232299,Apple sites,16590,65714 +1724232299,iCloud,41825,156964 +1724232299,Avast,2692,14884 +1724232299,SSL client,1171733,2278389 +1724232299,Ad Nexus,9393,5011 +1724232299,Amazon Web Services,3259,21490 +1724232299,Ubuntu Update Manager,1561,1490 +1724232299,Microsoft,71075,117176 +1724232299,Mail.Ru,674062,952333 +1724232299,Yandex,35497,49394 +1724232299,GNOME,3825,349025 +1724232299,Ubuntu,820,670 +1724232299,uTorrent,11128,19566 +1724232299,Google Play,9258,1548 +1724232299,Rambler,4877,6658 +1724232299,Lijit,1263,5264 +1724232299,Office 365,17340,47448 +1724232299,Microsoft Windows Live Services Authentication,78558,186846 +1724232299,Office Mobile,26876,23608 +1724232299,GISMETEO,2194,9305 +1724232299,DNS over TLS,1301,6202 +1724232299,Microsoft Teams,2740,7461 +1724232299,DNS over HTTPS,12363,48640 +1724232299,HTTPS,57750,24832 +1724232299,HTTPS,57695,23914 +1724232299,STUN,7134,6364 +1724232299,HTTPS,39559,23827 +1724232299,SSL,163832,434791 +1724232299,DNS over HTTPS,63307,152323 +1724232299,CoAP,5096,3744 +1724232299,ICMP,1066,0 +1724232299,__unknown,548,428 +1724232299,DNS over HTTPS,54911,139329 +1724232299,__unknown,38363,1372298 +1724232299,BITS,22843,236941 +1724232299,HTTP,22843,236941 +1724232299,SSL,1493,1492 +1724232299,VKontakte,10272,12684 +1724232299,HTTPS,57434,475338 +1724232299,Spotify,4378,6382 +1724232299,Avast,7535,2901 +1724232299,SSL client,23678,23459 +1724232299,Microsoft,22843,236941 +1724232299,Google Hangouts,1493,1492 +1724232299,ICMP,246,0 +1724232299,DNS over HTTPS,22029,48908 +1724232299,__unknown,2416664,36314959 +1724232299,Bing,2382,10518 +1724232299,BitTorrent,463,496 +1724232299,DHCPv6,163,0 +1724232299,Google APIs,17805,64567 +1724232299,Google,192250,623635 +1724232299,Kaspersky,574,607 +1724232299,MSN,3570,8474 +1724232299,BitTorrent tracker,153,0 +1724232299,DNS,32028,0 +1724232299,Gmail,34808,43234 +1724232299,HTTP,1774,1499 +1724232299,Launchpad,640,430 +1724232299,NTP,360,360 +1724232299,SSL,7503,5842 +1724232299,VKontakte,3497,7028 +1724232299,Odnoklassniki,2549,7434 +1724232299,Advanced Packaging Tool,640,430 +1724232299,HTTPS,694390,2539052 +1724232299,WhatsApp,20840,582672 +1724232299,Mozilla,7105,8219 +1724232299,SSL client,473711,894070 +1724232299,Samsung,1924,11891 +1724232299,Microsoft,15247,24466 +1724232299,Yandex,2553,16825 +1724232299,Nvidia,2828,6928 +1724232299,Microsoft CryptoAPI,560,462 +1724232299,Google Play,5153,16660 +1724232299,ICMP,12927,1140 +1724232299,Office Mobile,591,6675 +1724232299,Telegram,178514,46271 +1724232299,Thin Manager TFTP,472,358 +1724232299,DNS over HTTPS,12693,37271 +1724232299,DeepL Translator,6615,9925 +1724232299,IPv6 No Next Header,98,0 +1724232299,__unknown,16493880,20789705 +1724232299,BITS,4150,19743 +1724232299,BitTorrent,153,537 +1724232299,Google APIs,124725,104099 +1724232299,Google,50281,74030 +1724232299,QQ,678,343 +1724232299,BitTorrent tracker,153,537 +1724232299,Chrome,2245,1995 +1724232299,DNS,75692,66444 +1724232299,Firefox,2912,7877 +1724232299,Google Analytics,8182,17207 +1724232299,HTTP,767073,50637111 +1724232299,Internet Explorer,1440,1003 +1724232299,Launchpad,2560,1720 +1724232299,Microsoft Update,3901,11605 +1724232299,_err_742,782,7491 +1724232299,NTP,2430,2430 +1724232299,SSL,11943,5508 +1724232299,STUN,984,888 +1724232299,Advanced Packaging Tool,26176,23223 +1724232299,HTTPS,2310084,30041739 +1724232299,WhatsApp,5951,535343 +1724232299,APNS,11943,5508 +1724232299,Apple sites,4008,19850 +1724232299,iCloud,123124,24170 +1724232299,Mozilla,10120,7874 +1724232299,Avast,764,782 +1724232299,SSL client,387261,860835 +1724232299,Ubuntu Update Manager,19459,18183 +1724232299,Microsoft,697705,50520583 +1724232299,Mail.Ru,7152,15974 +1724232299,Yandex,34813,560967 +1724232299,Ubuntu,6773,6082 +1724232299,Microsoft CryptoAPI,7464,14936 +1724232299,Microsoft NCSI,1982,2080 +1724232299,Microsoft WNS,753,8027 +1724232299,Apple Maps,1727,4385 +1724232299,Office 365,2424,15731 +1724232299,ICMP,3611,0 +1724232299,360 Safeguard,862,615 +1724232299,Gmail attachment,388,284 +1724232299,Telegram,1547,7068 +1724232299,Edge Chromium,4109,14022 +1724232299,Stripe,1144,4882 +1724232299,DNS over TLS,4316,19079 +1724232299,DNS over HTTPS,29922,121673 +1724232600,SSL,23122,31611 +1724232600,SSL client,23122,31611 +1724232600,Google Hangouts,23122,31611 +1724232600,HTTPS,55899,72803 +1724232600,SSL client,55899,72803 +1724232600,Notion,55899,72803 +1724232600,__unknown,1244,1838 +1724232600,HTTPS,4726,7334 +1724232600,SSL client,4726,7334 +1724232600,Sharepoint Online,4726,7334 +1724232600,__unknown,882,7778 +1724232600,HTTPS,195906,61393 +1724232600,SSL client,195906,61393 +1724232600,Yandex,195906,61393 +1724232600,HTTPS,9493,17702 +1724232600,SSL client,9493,17702 +1724232600,Yandex,9493,17702 +1724232600,HTTPS,78612,55095 +1724232600,SSL client,5151,5253 +1724232600,Exchange Online,5151,5253 +1724232600,__unknown,4371,111798 +1724232600,Skype,3976,8741 +1724232600,HTTPS,11307,133717 +1724232600,SSL client,11307,133717 +1724232600,Microsoft,7331,124976 +1724232600,__unknown,36200,19796 +1724232600,SSL,252682,107067 +1724232600,HTTPS,41676,43811 +1724232600,SSL client,24580,27180 +1724232600,Google Play,20839,18161 +1724232600,smpnameres,96992,23493 +1724232600,Yandex Market,3741,9019 +1724232600,__unknown,16169,17022 +1724232600,Google APIs,2693,8789 +1724232600,Google,270616,1525956 +1724232600,MSN,8217,42429 +1724232600,Gmail,8614,15346 +1724232600,Google Analytics,8971,9834 +1724232600,HTTP,1679,4856 +1724232600,SSL,14372,17708 +1724232600,VKontakte,32296,759799 +1724232600,Advanced Packaging Tool,520,2618 +1724232600,HTTPS,1065660,22787054 +1724232600,Apple sites,1824,7485 +1724232600,iCloud,16403,29789 +1724232600,Mozilla,2361,4799 +1724232600,Avast,1314,11852 +1724232600,SSL client,473030,2638484 +1724232600,Ubuntu Update Manager,520,2618 +1724232600,Microsoft,33587,76113 +1724232600,Mail.Ru,45045,49665 +1724232600,Yandex,15542,18984 +1724232600,Microsoft CryptoAPI,414,126 +1724232600,Apple Maps,2772,6419 +1724232600,Office 365,17636,38114 +1724232600,Microsoft Windows Live Services Authentication,5171,5826 +1724232600,smpnameres,59208,23219 +1724232600,Microsoft Teams,2740,33704 +1724232600,__unknown,161453,3953790 +1724232600,Bing,17850,79034 +1724232600,Google APIs,10116,28905 +1724232600,Google,222842,380018 +1724232600,MSN,16962,71006 +1724232600,Adobe Software,483,4269 +1724232600,Dell,1111,4305 +1724232600,Gmail,19097,222557 +1724232600,HTTP,6983,11304 +1724232600,iTunes,23686,57470 +1724232600,Microsoft Update,151771,83072 +1724232600,Skype,12675,30667 +1724232600,SSL,1928,2603 +1724232600,VKontakte,7644,11085 +1724232600,Windows Update,1601,2045 +1724232600,IMAPS,27542,251553 +1724232600,HTTPS,3987297,82737515 +1724232600,WhatsApp,1859,5921 +1724232600,Apple sites,43087,176850 +1724232600,iCloud,37975,79513 +1724232600,Mozilla,2187,4739 +1724232600,Avast,6055,4727 +1724232600,SSL client,1640472,23177769 +1724232600,Ad Nexus,7883,4974 +1724232600,Amazon Web Services,3265,21542 +1724232600,Microsoft,57361,84391 +1724232600,Mail.Ru,531126,625010 +1724232600,Yandex,160081,8299432 +1724232600,Microsoft CryptoAPI,1295,1066 +1724232600,Apple Maps,4799,12210 +1724232600,Google Play,8911,22293 +1724232600,AdGear,2345,8239 +1724232600,Office 365,219767,12467258 +1724232600,Microsoft Windows Live Services Authentication,41518,89179 +1724232600,smpnameres,8750,5153 +1724232600,Weborama,3225,5961 +1724232600,Gmail attachment,8108,253363 +1724232600,Telegram,2168864,58883964 +1724232600,AnyDesk,1928,2603 +1724232600,GISMETEO,2200,9597 +1724232600,Edge Chromium,407,1298 +1724232600,Stripe,8722,7385 +1724232600,DNS over HTTPS,19642,46594 +1724232600,HTTPS,107119,126856 +1724232600,SSL client,107119,126856 +1724232600,Telegram,107119,126856 +1724232600,__unknown,187,228 +1724232600,HTTPS,5780507,13477935 +1724232600,iTunes,7523,107333 +1724232600,HTTPS,73411,178945 +1724232600,SSL client,7523,107333 +1724232600,__unknown,34016,834029 +1724232600,HTTP,563,408 +1724232600,SSL,67114,18477 +1724232600,HTTPS,7427,29436 +1724232600,APNS,67114,18477 +1724232600,SSL client,67114,18477 +1724232600,ICMP,3478,0 +1724232600,DNS over HTTPS,0,1390 +1724232600,__unknown,2391778,950750 +1724232600,Google APIs,5130,8790 +1724232600,Gmail,12490,32446 +1724232600,SSL,40268,18655 +1724232600,HTTPS,143083,1454400 +1724232600,APNS,40268,18655 +1724232600,SSL client,87181,163067 +1724232600,Samsung,1831,7980 +1724232600,Lijit,27462,95196 +1724232600,ICMP,300,300 +1724232600,__unknown,1746678,5851296 +1724232600,BitTorrent,248,496 +1724232600,DHCPv6,978,0 +1724232600,Google APIs,8796,27587 +1724232600,Google Drive,12626,13125 +1724232600,Google,94028,223880 +1724232600,Google Translate,3604,7446 +1724232600,DNS,38365,512 +1724232600,Firefox,2896,3334 +1724232600,Gmail,2310,6611 +1724232600,Google Analytics,44974,26732 +1724232600,HTTP,24249,1120253 +1724232600,Microsoft Update,17897,1110517 +1724232600,NetBIOS-dgm,250,0 +1724232600,NetBIOS-ns,276,0 +1724232600,NTP,11650,2910 +1724232600,SSL,11780,5205 +1724232600,STUN,124,148 +1724232600,VKontakte,2235,6331 +1724232600,Advanced Packaging Tool,1349,1288 +1724232600,HTTPS,441593,1410209 +1724232600,WhatsApp,14807,422492 +1724232600,APNS,11780,5205 +1724232600,SSL client,224492,385231 +1724232600,CloudFront,1868,7544 +1724232600,Ubuntu Update Manager,1349,1288 +1724232600,Microsoft,1346,4515 +1724232600,Mail.Ru,1433,5101 +1724232600,Microsoft CryptoAPI,3704,3102 +1724232600,Google Play,24631,21717 +1724232600,ICMP,7385,2940 +1724232600,ICMP for IPv6,70,0 +1724232600,Gmail attachment,284,0 +1724232600,Google Sign in,4983,8032 +1724232600,Thin Manager TFTP,276,106 +1724232600,DNS over HTTPS,30642,91401 +1724232600,DeepL Translator,9036,20910 +1724232600,IPv6 No Next Header,98,0 +1724232600,CoAP,980,720 +1724232600,__unknown,1103662,11371509 +1724232600,DHCPv6,163,0 +1724232600,Eset,1125,482 +1724232600,Google APIs,27852,97862 +1724232600,Google Drive,7525,10122 +1724232600,Google,185847,5871574 +1724232600,Kaspersky,608,607 +1724232600,MSN,577,501 +1724232600,QQ,678,343 +1724232600,Chrome,1695,1452 +1724232600,DNS,84472,64946 +1724232600,Gmail,17592,43759 +1724232600,Google Analytics,1073,5302 +1724232600,HTTP,230991,2613462 +1724232600,Internet Explorer,678,343 +1724232600,Launchpad,1920,1290 +1724232600,Microsoft Update,86481,2386505 +1724232600,NetBIOS-dgm,243,0 +1724232600,NTP,13470,3720 +1724232600,SSL,10620,38630 +1724232600,STUN,1170,1110 +1724232600,VKontakte,2443,5537 +1724232600,Steam,6291,85661 +1724232600,Advanced Packaging Tool,31377,29092 +1724232600,Windows Update,74472,1379717 +1724232600,HTTPS,1650973,13435190 +1724232600,Apple sites,1078,4281 +1724232600,iCloud,284296,362070 +1724232600,Mozilla,5983,7214 +1724232600,Avast,1146,1173 +1724232600,SSL client,675850,6924226 +1724232600,GoDaddy,588,2993 +1724232600,Ubuntu Update Manager,23895,22566 +1724232600,Microsoft,693,7965 +1724232600,Mail.Ru,14510,19453 +1724232600,Yandex,22510,136426 +1724232600,Linux Mint,928,996 +1724232600,Ubuntu,5909,5615 +1724232600,Asus,37188,198562 +1724232600,Nvidia,8237,19466 +1724232600,Microsoft CryptoAPI,7645,9034 +1724232600,Microsoft NCSI,931,974 +1724232600,Microsoft WNS,1270,8466 +1724232600,uTorrent,670,476 +1724232600,Apple Maps,3526,40889 +1724232600,Google Play,12569,20935 +1724232600,Rambler,6473,18413 +1724232600,Google Hangouts,855,7031 +1724232600,ICMP,4638,1502 +1724232600,Gmail attachment,672,284 +1724232600,Telegram,4146,8550 +1724232600,Sberbank of Russia,3068,8878 +1724232600,Google Inbox,13045,33540 +1724232600,Edge Chromium,2935,10034 +1724232600,DNS over TLS,9710,39292 +1724232600,DNS over HTTPS,27190,82898 +1724232600,_err_4655,9886,8501 +1724232600,Notion,3595,8198 +1724232600,IPv6 No Next Header,98,0 +1724232900,HTTPS,6431,9163 +1724232900,SSL client,6431,9163 +1724232900,Sharepoint Online,6431,9163 +1724232900,__unknown,1648,9479 +1724232900,SSL,2638,2655 +1724232900,AnyDesk,2638,2655 +1724232900,HTTPS,789594,216808 +1724232900,SSL client,789594,216808 +1724232900,Mail.Ru,789594,216808 +1724232900,HTTPS,4514,4717 +1724232900,SSL client,4514,4717 +1724232900,Yandex,4514,4717 +1724232900,DNS over HTTPS,13191,35019 +1724232900,HTTPS,5465,9027 +1724232900,SSL client,5465,9027 +1724232900,Yandex,5465,9027 +1724232900,HTTPS,805884,57578 +1724232900,SSL client,805884,57578 +1724232900,Yandex,805884,57578 +1724232900,DNS over HTTPS,10336,23498 +1724232900,Google APIs,6321,21841 +1724232900,HTTPS,65783,88833 +1724232900,SSL client,36139,58206 +1724232900,Yandex,29818,36365 +1724232900,__unknown,307009,311499 +1724232900,Dropbox,6716,218610 +1724232900,Google,6690,25438 +1724232900,Gmail,39478,198175 +1724232900,HTTPS,457024,1462708 +1724232900,Apple sites,12786,53855 +1724232900,SSL client,164615,850464 +1724232900,Microsoft,17885,29900 +1724232900,Mail.Ru,14392,13695 +1724232900,Yandex,27952,221586 +1724232900,Google Play,30330,9137 +1724232900,Sharepoint Online,3310,75879 +1724232900,Telegram,2145,7714 +1724232900,Google Sign in,5076,4189 +1724232900,__unknown,823809,359699 +1724232900,Apple Update,106213,5370590 +1724232900,Bing,13445,86719 +1724232900,Dropbox,1861355,785692 +1724232900,Google APIs,2842,9098 +1724232900,Google,283248,170039 +1724232900,MSN,16821,42112 +1724232900,Gmail,8386,9776 +1724232900,HTTP,24520,722959 +1724232900,Microsoft Update,179454,460784 +1724232900,Skype,6089,15645 +1724232900,SSL,4724,5224 +1724232900,Advanced Packaging Tool,3889,3563 +1724232900,IMAPS,11756,21569 +1724232900,HTTPS,4186751,14922436 +1724232900,WhatsApp,4810,6323 +1724232900,Apple sites,52695,2347771 +1724232900,iCloud,34882,65484 +1724232900,Mozilla,5239,6777 +1724232900,Avast,98276,255344 +1724232900,SSL client,3630454,13107979 +1724232900,Ad Nexus,8667,4826 +1724232900,Amazon Web Services,3205,21602 +1724232900,Ubuntu Update Manager,2835,2623 +1724232900,Microsoft,446183,923177 +1724232900,Mail.Ru,313385,363574 +1724232900,Yandex,102598,1624036 +1724232900,Ubuntu,1545,1401 +1724232900,Microsoft CryptoAPI,3685,8069 +1724232900,Apple Maps,2209,6235 +1724232900,Xbox Live sites,8399,352606 +1724232900,Office 365,13555,60017 +1724232900,Microsoft Windows Live Services Authentication,14002,27207 +1724232900,Weborama,1661,5978 +1724232900,Yandex Market,23171,27599 +1724232900,Yandex Music,3630,42350 +1724232900,Office Mobile,17946,16253 +1724232900,Telegram,11786,58512 +1724232900,AnyDesk,4724,5224 +1724232900,Google Inbox,5301,7318 +1724232900,DNS over HTTPS,17631,84326 +1724232900,Discord,1235,6423 +1724232900,DNS over HTTPS,555746,1316145 +1724232900,__unknown,1283839,191028 +1724232900,__unknown,15548,633196 +1724232900,HTTPS,20778,20873 +1724232900,ICMP,738,0 +1724232900,__unknown,126488,96240 +1724232900,HTTPS,9249,15371 +1724232900,__unknown,198667,1455315 +1724232900,Google,21881,16210 +1724232900,Google Analytics,36477,25860 +1724232900,SSL,11080,6102 +1724232900,VKontakte,6015,7374 +1724232900,HTTPS,149653,436867 +1724232900,APNS,11080,6102 +1724232900,SSL client,77201,60620 +1724232900,Box,1748,5074 +1724232900,ICMP,2006,0 +1724232900,DNS over HTTPS,7115,19039 +1724232900,__unknown,2775821,31344811 +1724232900,BitTorrent,649,434 +1724232900,Google APIs,35422,93538 +1724232900,Google,49179,337075 +1724232900,Google Translate,20508,26758 +1724232900,MSN,578,502 +1724232900,Android browser,764,526 +1724232900,BitTorrent tracker,153,0 +1724232900,DNS,27425,0 +1724232900,Gmail,17986,25045 +1724232900,HTTP,7495,9661 +1724232900,Launchpad,640,430 +1724232900,Microsoft Update,2298,2157 +1724232900,NetBIOS-ns,276,0 +1724232900,NTP,1350,1350 +1724232900,SSL,18246,16147 +1724232900,VKontakte,11673,20818 +1724232900,Odnoklassniki,2250,7264 +1724232900,Advanced Packaging Tool,2633,1856 +1724232900,HTTPS,740983,15378654 +1724232900,Apple sites,7350,37421 +1724232900,Mozilla,1607,4671 +1724232900,SSL client,361571,14293984 +1724232900,Box,1404,5023 +1724232900,Ubuntu Update Manager,1358,860 +1724232900,Microsoft,3894,9569 +1724232900,Yandex,172617,13675855 +1724232900,MDNS,364,0 +1724232900,Ubuntu,635,566 +1724232900,Nvidia,24111,12147 +1724232900,Microsoft CryptoAPI,3520,6777 +1724232900,Microsoft WNS,578,502 +1724232900,Google Play,5579,11877 +1724232900,Google Hangouts,797,7093 +1724232900,ICMP,6599,180 +1724232900,Telegram,3950,7906 +1724232900,Thin Manager TFTP,196,252 +1724232900,Grammarly,2252,7885 +1724232900,DNS over HTTPS,14974,28350 +1724232900,DeepL Translator,3458,7462 +1724232900,IPv6 No Next Header,196,0 +1724232900,CoAP,882,576 +1724232900,__unknown,2168079,6946404 +1724232900,BitTorrent,1083,198 +1724232900,DHCPv6,978,0 +1724232900,Eset,507,553 +1724232900,Google APIs,44311,147225 +1724232900,Google Drive,8965,10768 +1724232900,Google,358604,1824652 +1724232900,Kaspersky,608,607 +1724232900,QQ,1092,1924 +1724232900,Android browser,572,553 +1724232900,BitTorrent tracker,153,198 +1724232900,Chrome,1761,1452 +1724232900,DNS,101656,81601 +1724232900,Firefox,822,977 +1724232900,Google Calendar,4493,13885 +1724232900,HTTP,96580,189593 +1724232900,Internet Explorer,678,343 +1724232900,iTunes,2093,7818 +1724232900,Launchpad,2486,1720 +1724232900,Microsoft Update,7967,89311 +1724232900,NTP,1218,4310 +1724232900,SSL,41173,38678 +1724232900,VKontakte,13552,16202 +1724232900,Odnoklassniki,2549,7433 +1724232900,Advanced Packaging Tool,29160,26509 +1724232900,HTTPS,1398953,5851629 +1724232900,APNS,34982,6458 +1724232900,Apple sites,9715,52677 +1724232900,iCloud,5718,30006 +1724232900,Avast,764,782 +1724232900,SSL client,837897,2993126 +1724232900,Box,1404,5023 +1724232900,Ubuntu Update Manager,24865,23163 +1724232900,Microsoft,224318,137315 +1724232900,VeriSign,566,2141 +1724232900,Mail.Ru,19325,14433 +1724232900,Yandex,42096,524607 +1724232900,Ubuntu,3934,3919 +1724232900,Nvidia,39312,89994 +1724232900,Microsoft CryptoAPI,18631,105687 +1724232900,Microsoft NCSI,2250,2435 +1724232900,uTorrent,2889,1916 +1724232900,Apple Maps,2648,6954 +1724232900,33Across,2426,8118 +1724232900,Google Play,2540,9245 +1724232900,Rambler,5132,12891 +1724232900,Google Hangouts,4444,30869 +1724232900,ICMP,3120,60 +1724232900,Gmail attachment,672,284 +1724232900,Browsec,1943,6790 +1724232900,Telegram,8307,30265 +1724232900,ResearchGate,1055,4198 +1724232900,Xiaomi,572,553 +1724232900,Thin Manager TFTP,276,106 +1724232900,Edge Chromium,7271,22236 +1724232900,DNS over TLS,9623,38131 +1724232900,DNS over HTTPS,65612,210539 +1724232900,Notion,1342,4393 +1724233200,Thin Manager TFTP,108,108 +1724233200,HTTPS,388287,11056747 +1724233200,Gmail,4659309,13103364 +1724233200,HTTPS,4700816,13177516 +1724233200,SSL client,4679456,13136856 +1724233200,Yandex,20147,33492 +1724233200,__unknown,218256,144660 +1724233200,HTTPS,218269,120102 +1724233200,SSL client,138324,87381 +1724233200,Mail.Ru,127819,72010 +1724233200,Yandex,10505,15371 +1724233200,Thin Manager TFTP,211908,159480 +1724233200,HTTPS,6099,9696 +1724233200,SSL client,6099,9696 +1724233200,Yandex,6099,9696 +1724233200,__unknown,8468540,647319 +1724233200,HTTPS,839409,286473 +1724233200,SSL client,839409,286473 +1724233200,Google Play,785125,224551 +1724233200,Telegram,54284,61922 +1724233200,__unknown,1635,11306 +1724233200,HTTPS,72646,49548 +1724233200,SSL client,72646,49548 +1724233200,Google Play,72646,49548 +1724233200,__unknown,35295,19012 +1724233200,VKontakte,19128,495283 +1724233200,HTTPS,86455,530850 +1724233200,SSL client,82552,527595 +1724233200,Google Play,63424,32312 +1724233200,__unknown,42386,17336 +1724233200,Dropbox,1631,1475 +1724233200,Google,38884,690209 +1724233200,Gmail,8496,15374 +1724233200,HTTP,2106,6230 +1724233200,SSL,87723,22627 +1724233200,TeamViewer,1238,8838 +1724233200,VKontakte,6053,5729 +1724233200,Odnoklassniki,4920,14848 +1724233200,HTTPS,534022,2332571 +1724233200,Apple sites,793,11762 +1724233200,Mozilla,2241,5539 +1724233200,Avast,1254,9454 +1724233200,SSL client,185248,1749630 +1724233200,Microsoft,30828,51251 +1724233200,Mail.Ru,23663,44603 +1724233200,Yandex,34101,846900 +1724233200,Microsoft CryptoAPI,2106,6230 +1724233200,Office 365,565,1176 +1724233200,Yandex Market,29457,36109 +1724233200,Xiaomi,1689,7539 +1724233200,__unknown,1339502,12602461 +1724233200,Apple Update,3368,10181 +1724233200,Bing,8046,60975 +1724233200,BITS,11698,474551 +1724233200,Dropbox,11163,229747 +1724233200,Google APIs,5412,89957 +1724233200,Google,191732,216255 +1724233200,MSN,2567,18565 +1724233200,QQ,678,277 +1724233200,Adobe Software,5977,12782 +1724233200,Chrome,14154,5335 +1724233200,Gmail,14570,25443 +1724233200,HTTP,162647,7187049 +1724233200,Internet Explorer,678,277 +1724233200,iTunes,3515,36410 +1724233200,Microsoft Update,45534,2046301 +1724233200,Skype,6536,93691 +1724233200,SSL,12443,18953 +1724233200,Advanced Packaging Tool,4519,3880 +1724233200,Windows Update,471,614 +1724233200,IMAPS,16386,33494 +1724233200,HTTPS,2722435,21807327 +1724233200,WhatsApp,65720,1435478 +1724233200,Apple sites,13276,130238 +1724233200,iCloud,67188,110265 +1724233200,Opera,8464,10071 +1724233200,SSL client,2296854,16595651 +1724233200,Amazon Web Services,3535,21602 +1724233200,Ubuntu Update Manager,2790,2224 +1724233200,Microsoft,576482,3295566 +1724233200,Mail.Ru,604481,730161 +1724233200,Siri,2207,6294 +1724233200,Yandex,429832,13502319 +1724233200,Ubuntu,1729,1656 +1724233200,Asus,8233,9050 +1724233200,Microsoft CryptoAPI,101566,4404089 +1724233200,Microsoft NCSI,514,487 +1724233200,Viber,1141,1535 +1724233200,Rambler,13895,119424 +1724233200,Office 365,25014,71225 +1724233200,Sharepoint Online,2958,17838 +1724233200,Microsoft Windows Live Services Authentication,12533,32196 +1724233200,Google Hangouts,1121,7852 +1724233200,BlueStacks,1599,5046 +1724233200,Mail.ru Attachment,1957,8803 +1724233200,Telegram,354957,11280198 +1724233200,Xiaomi,301627,15283 +1724233200,DNS over TLS,132,4770 +1724233200,DNS over HTTPS,7298,45509 +1724233200,__unknown,4330346,1480037 +1724233200,HTTPS,23626,35494 +1724233200,SSL client,23626,35494 +1724233200,DNS over HTTPS,23626,35494 +1724233200,SSL,6378,6333 +1724233200,HTTPS,4043,3668 +1724233200,__unknown,0,1227 +1724233200,ICMP,16540,0 +1724233200,__unknown,357770,1563118 +1724233200,Windows Live,3243,19587 +1724233200,HTTPS,59477,61904 +1724233200,SSL client,3243,19587 +1724233200,__unknown,907228,872252 +1724233200,HTTPS,19356,16475 +1724233200,DNS over HTTPS,168,132 +1724233200,__unknown,1797507,3323104 +1724233200,Google,4320,10183 +1724233200,HTTPS,26225,88499 +1724233200,SSL client,26225,88499 +1724233200,Lijit,21905,78316 +1724233200,ICMP,10898,9960 +1724233200,DNS over HTTPS,11262,23036 +1724233200,__unknown,6511668,45475398 +1724233200,BitTorrent,1612,496 +1724233200,DHCPv6,163,0 +1724233200,Google APIs,16801,46842 +1724233200,Google Drive,9400,11139 +1724233200,Google,226962,712950 +1724233200,IKE,506,466 +1724233200,DNS,40847,0 +1724233200,Gmail,33054,78679 +1724233200,HTTP,9846,35176 +1724233200,Microsoft Update,940,814 +1724233200,NetBIOS-dgm,250,0 +1724233200,NTP,6420,1545 +1724233200,SSL,14365,9192 +1724233200,STUN,14298,4188 +1724233200,Odnoklassniki,2497,7659 +1724233200,Advanced Packaging Tool,1984,1852 +1724233200,HTTPS,541584,2650915 +1724233200,APNS,14365,9192 +1724233200,Mozilla,1876,4611 +1724233200,SSL client,355279,1223831 +1724233200,Box,1404,5023 +1724233200,Ubuntu Update Manager,1349,1286 +1724233200,Microsoft,982,7534 +1724233200,Mail.Ru,2046,10631 +1724233200,Yandex,4375,57314 +1724233200,Ubuntu,635,566 +1724233200,Nvidia,10815,18011 +1724233200,Microsoft CryptoAPI,7862,33324 +1724233200,Google Play,18632,229839 +1724233200,CloudFlare,1018,3283 +1724233200,ICMP,44369,600 +1724233200,Telegram,13501,27543 +1724233200,ResearchGate,2544,5513 +1724233200,Google Sign in,4980,7991 +1724233200,DNS over HTTPS,20779,60525 +1724233200,DeepL Translator,3528,7620 +1724233200,IPv6 No Next Header,98,0 +1724233200,CoAP,784,504 +1724233200,__unknown,2864932,22506488 +1724233200,Apple Update,1781,4991 +1724233200,BitTorrent,558,0 +1724233200,Google APIs,6295,20012 +1724233200,Google,24004,112331 +1724233200,QQ,678,343 +1724233200,Chrome,1695,1452 +1724233200,DNS,125961,91394 +1724233200,Gmail,23402,44217 +1724233200,HTTP,904207,39327870 +1724233200,Internet Explorer,1440,1003 +1724233200,iTunes,13269,47709 +1724233200,Launchpad,3200,2150 +1724233200,Microsoft Update,5604,4669 +1724233200,NTP,17780,5175 +1724233200,SSL,855,7032 +1724233200,STUN,44194,3448 +1724233200,VKontakte,11891,37545 +1724233200,Advanced Packaging Tool,30638,27548 +1724233200,IMAPS,10164,26240 +1724233200,HTTPS,884836,2682289 +1724233200,Apple sites,24521,438461 +1724233200,iCloud,28347,114054 +1724233200,Avast,830,848 +1724233200,SSL client,227980,1059652 +1724233200,Box,1404,5023 +1724233200,Ubuntu Update Manager,23281,21652 +1724233200,Microsoft,822142,39231764 +1724233200,VeriSign,566,2141 +1724233200,Siri,3178,5397 +1724233200,Yandex,38957,76256 +1724233200,Ubuntu,6348,6043 +1724233200,Nvidia,35069,86718 +1724233200,Microsoft CryptoAPI,10414,11173 +1724233200,Microsoft NCSI,1462,1527 +1724233200,Microsoft WNS,633,7965 +1724233200,Apple Maps,11523,31541 +1724233200,Lijit,1137,6552 +1724233200,Google Hangouts,855,7032 +1724233200,ICMP,6182,0 +1724233200,Weborama,3441,8752 +1724233200,360 Safeguard,846,599 +1724233200,Gmail attachment,388,284 +1724233200,Browsec,1938,7991 +1724233200,Telegram,5139,29344 +1724233200,Thin Manager TFTP,472,286 +1724233200,Edge Chromium,8846,25797 +1724233200,DNS over TLS,10426,43008 +1724233200,DNS over HTTPS,39213,131723 +1724233200,Notion,1367,6406 +1724233499,DNS over HTTPS,136593,318844 +1724233499,HTTPS,38426,176083 +1724233499,SSL client,38426,176083 +1724233499,Yandex,38426,176083 +1724233499,VKontakte,78411,1523742 +1724233499,HTTPS,104368,1600365 +1724233499,SSL client,104368,1600365 +1724233499,Yandex,25957,76623 +1724233499,HTTPS,70251,47434 +1724233499,SSL client,70251,47434 +1724233499,Yandex,70251,47434 +1724233499,HTTPS,14782,15311 +1724233499,SSL client,14782,15311 +1724233499,Yandex,14782,15311 +1724233499,HTTPS,5594,8500 +1724233499,SSL client,5594,8500 +1724233499,Yandex,5594,8500 +1724233499,Google,2278267,2520486 +1724233499,HTTPS,2326691,2553513 +1724233499,SSL client,2326691,2553513 +1724233499,Rambler,48424,33027 +1724233499,HTTPS,17508,13587 +1724233499,SSL client,5055,8366 +1724233499,Microsoft,5055,8366 +1724233499,__unknown,20422,13825 +1724233499,SSL,224996,102365 +1724233499,HTTPS,98737,775515 +1724233499,SSL client,53953,37217 +1724233499,Yandex,46688,25202 +1724233499,Google Hangouts,7265,12015 +1724233499,smpnameres,44569,19711 +1724233499,__unknown,1335731,3276396 +1724233499,Google APIs,22725,8841 +1724233499,Google,7443,15296 +1724233499,HTTP,1096,3095 +1724233499,Skype,11144,167666 +1724233499,SSL,27784,12734 +1724233499,TeamViewer,1417,8838 +1724233499,Steam,2113,4926 +1724233499,HTTPS,563597,2878886 +1724233499,WhatsApp,4028,23413 +1724233499,Apple sites,20949,360150 +1724233499,iCloud,24884,52047 +1724233499,Avast,1314,13154 +1724233499,SSL client,263284,2482999 +1724233499,Microsoft,80392,98260 +1724233499,Yandex,79350,1735078 +1724233499,Microsoft CryptoAPI,1096,3095 +1724233499,Rambler,6142,3796 +1724233499,Office 365,2509,7728 +1724233499,Telegram,15456,55676 +1724233499,Microsoft Teams,2902,7219 +1724233499,DNS over HTTPS,16232,43490 +1724233499,__unknown,382687,1888227 +1724233499,Bing,25916,153045 +1724233499,Dropbox,1647,1519 +1724233499,Google APIs,8650,25651 +1724233499,Google,5874,20670 +1724233499,MSN,7165,27892 +1724233499,Gmail,14836,21845 +1724233499,HTTP,6475,6733 +1724233499,iTunes,6705,11135 +1724233499,Microsoft Update,21948,10549 +1724233499,Skype,9581,22157 +1724233499,SSL,7748,9799 +1724233499,VKontakte,49846,47164 +1724233499,Advanced Packaging Tool,2957,2743 +1724233499,IMAPS,20369,41883 +1724233499,HTTPS,1473827,16494077 +1724233499,WhatsApp,2420,27644 +1724233499,Apple sites,12057,31444 +1724233499,iCloud,31751,63592 +1724233499,Mozilla,4187,10075 +1724233499,Avast,3858,13140 +1724233499,SSL client,1270854,15351117 +1724233499,Amazon Web Services,3139,21430 +1724233499,Ubuntu Update Manager,2957,2743 +1724233499,Microsoft,267611,621699 +1724233499,Mail.Ru,385378,462053 +1724233499,Yandex,225684,12548408 +1724233499,GitHub,1652,5975 +1724233499,Ubuntu,1451,4479 +1724233499,Microsoft Azure,2364,8746 +1724233499,Microsoft CryptoAPI,1312,1504 +1724233499,Google Play,11073,21505 +1724233499,Rambler,9754,13322 +1724233499,Office 365,88449,1023336 +1724233499,Microsoft Windows Live Services Authentication,42826,113215 +1724233499,Office Mobile,17946,16199 +1724233499,Telegram,8109,52951 +1724233499,Google Inbox,3693,20018 +1724233499,Grammarly,3200,7943 +1724233499,DNS over HTTPS,23657,82084 +1724233499,__unknown,700,2640 +1724233499,HTTPS,19981,29462 +1724233499,SSL client,19981,29462 +1724233499,DNS over HTTPS,19981,29462 +1724233499,__unknown,2747,7163 +1724233499,HTTPS,3014,15795 +1724233499,ICMP,5412,0 +1724233499,__unknown,622,1107 +1724233499,__unknown,453014,5464500 +1724233499,DNS over HTTPS,935,4584 +1724233499,__unknown,439648,109830 +1724233499,HTTPS,16667,80703 +1724233499,Apple sites,3782,60505 +1724233499,SSL client,3782,60505 +1724233499,Apple Maps,2570,7005 +1724233499,__unknown,204789,3407916 +1724233499,Google,8952,14783 +1724233499,SSL,14536,5989 +1724233499,HTTPS,102212,177916 +1724233499,APNS,14536,5989 +1724233499,SSL client,23488,20772 +1724233499,ICMP,132966,0 +1724233499,DNS over HTTPS,5009,13592 +1724233499,__unknown,4528173,82875513 +1724233499,BitTorrent,773,496 +1724233499,DHCPv6,978,0 +1724233499,Google APIs,39337,127778 +1724233499,Google Drive,23496,414588 +1724233499,Google,274830,1638820 +1724233499,BitTorrent tracker,153,0 +1724233499,DNS,36744,0 +1724233499,Gmail,7415,54128 +1724233499,Google Analytics,2215,6643 +1724233499,HTTP,3264,10555 +1724233499,NetBIOS-dgm,243,0 +1724233499,NTP,14012,4980 +1724233499,SSL,1630,9351 +1724233499,STUN,20646,4188 +1724233499,YouTube,7973,36990 +1724233499,VKontakte,3737,6802 +1724233499,Odnoklassniki,2431,7338 +1724233499,HTTPS,792339,10168170 +1724233499,Apple sites,1565,32396 +1724233499,SSL client,418380,2507984 +1724233499,Microsoft,5210,28540 +1724233499,Mail.Ru,1204,4835 +1724233499,Yandex,14688,58708 +1724233499,Nvidia,3148,5022 +1724233499,Microsoft CryptoAPI,1734,1449 +1724233499,Microsoft WNS,693,8031 +1724233499,Lijit,20953,70789 +1724233499,ICMP,10411,3000 +1724233499,Gmail attachment,284,0 +1724233499,Thin Manager TFTP,392,432 +1724233499,Grammarly,2252,7887 +1724233499,DNS over HTTPS,12309,33077 +1724233499,DeepL Translator,6431,9803 +1724233499,IPv6 No Next Header,98,0 +1724233499,CoAP,1372,1008 +1724233499,__unknown,2621747,17365029 +1724233499,Apple Update,1919,4898 +1724233499,BITS,8351,107194 +1724233499,BitTorrent,1641,537 +1724233499,Google APIs,109190,157591 +1724233499,Google Drive,112597,1510600 +1724233499,Google,58798,190720 +1724233499,Google Translate,3664,7267 +1724233499,IKE,506,466 +1724233499,QQ,678,343 +1724233499,BitTorrent tracker,153,537 +1724233499,Chrome,1926,1420 +1724233499,DNS,110177,84845 +1724233499,Firefox,3004,3368 +1724233499,Gmail,94615,146196 +1724233499,Google Analytics,1015,5242 +1724233499,HTTP,612601,34902815 +1724233499,Internet Explorer,678,343 +1724233499,iTunes,657,3500 +1724233499,Launchpad,1920,1356 +1724233499,Microsoft Update,2841,2326 +1724233499,NTP,720,720 +1724233499,Safari,316179,23131300 +1724233499,SSL,6503,11625 +1724233499,YouTube,15594,109461 +1724233499,VKontakte,13304,31591 +1724233499,Odnoklassniki,2489,7297 +1724233499,Steam,1335,7216 +1724233499,Advanced Packaging Tool,27839,25704 +1724233499,HTTPS,1118182,9721204 +1724233499,WhatsApp,4869,11907 +1724233499,Apple sites,1689,6186 +1724233499,iCloud,21557,32809 +1724233499,Avast,764,782 +1724233499,SSL client,657196,4168882 +1724233499,Ad Nexus,1084,3588 +1724233499,Box,1404,5023 +1724233499,Ubuntu Update Manager,23523,22192 +1724233499,Microsoft,216747,11664675 +1724233499,Mail.Ru,3396,5958 +1724233499,Yandex,63798,1730715 +1724233499,Ubuntu,4096,3992 +1724233499,Intel,1814,8744 +1724233499,Nvidia,41668,87447 +1724233499,Microsoft CryptoAPI,13237,20958 +1724233499,Microsoft NCSI,471,487 +1724233499,Microsoft WNS,1833,23709 +1724233499,Google Play,81316,44042 +1724233499,CloudFlare,2048,4712 +1724233499,Rambler,5192,12891 +1724233499,Google Hangouts,855,7031 +1724233499,ICMP,4664,120 +1724233499,Bootstrap CDN,1181,4762 +1724233499,Gmail attachment,388,284 +1724233499,Telegram,11933,34681 +1724233499,Google Sign in,3337,12743 +1724233499,Thin Manager TFTP,392,360 +1724233499,Edge Chromium,7672,23600 +1724233499,DNS over TLS,6673,28372 +1724233499,DNS over HTTPS,63035,181509 +1724233499,_err_4655,3398,2775 +1724233499,IPv6 No Next Header,98,0 +1724233800,Thin Manager TFTP,672,280 +1724233800,HTTP,1492136,1119216 +1724233800,Google,30229,43317 +1724233800,HTTPS,30229,43317 +1724233800,SSL client,30229,43317 +1724233800,HTTPS,6260,6682 +1724233800,SSL client,6260,6682 +1724233800,Yandex,6260,6682 +1724233800,HTTPS,204330,72957 +1724233800,HTTPS,122557,548039 +1724233800,SSL client,119986,536951 +1724233800,Mail.Ru,119986,536951 +1724233800,__unknown,47838,11863 +1724233800,Windows Live,10074,7348 +1724233800,HTTPS,10074,7348 +1724233800,SSL client,10074,7348 +1724233800,HTTPS,12396,76366 +1724233800,SSL client,12396,76366 +1724233800,Yandex,12396,76366 +1724233800,HTTPS,48436,54399 +1724233800,HTTPS,4102,3976 +1724233800,HTTPS,418992,61879904 +1724233800,SSL client,6347,14820 +1724233800,Microsoft,3455,7561 +1724233800,Microsoft Teams,2892,7259 +1724233800,Google,49226,35744 +1724233800,HTTPS,208427,68959 +1724233800,Apple sites,3716,5759 +1724233800,iCloud,3718,7446 +1724233800,SSL client,206855,63980 +1724233800,Dropbox Download,150195,15031 +1724233800,__unknown,3389,23597 +1724233800,HTTPS,110968,2749181 +1724233800,DNS over HTTPS,4404,11967 +1724233800,__unknown,226001,511131 +1724233800,Dropbox,3342,2538 +1724233800,Google,25486,45336 +1724233800,MSN,1545,7491 +1724233800,HTTP,1075,1826 +1724233800,Skype,2596,14096 +1724233800,SSL,62688,51757 +1724233800,VKontakte,20919,44320 +1724233800,HTTPS,681976,8006143 +1724233800,iCloud,5388,11236 +1724233800,Mozilla,2197,1375 +1724233800,Avast,2540,20356 +1724233800,SSL client,309013,4052543 +1724233800,Microsoft,15101,34230 +1724233800,VeriSign,1075,1826 +1724233800,Mail.Ru,45195,107473 +1724233800,Yandex,67695,126711 +1724233800,Microsoft CryptoAPI,1075,1826 +1724233800,Google Play,22961,9170 +1724233800,Office 365,90635,3616245 +1724233800,Microsoft Windows Live Services Authentication,3413,11966 +1724233800,smpnameres,123685,56608 +1724233800,Telegram,8037,56889 +1724233800,__unknown,572790,1183376 +1724233800,Apple Update,1861,6601 +1724233800,Bing,16726,309846 +1724233800,BITS,18493,1100150 +1724233800,Google APIs,17388,55978 +1724233800,Google,43685,76421 +1724233800,MSN,2535,13323 +1724233800,Yahoo!,11220,11472 +1724233800,DNS,847,1411 +1724233800,Gmail,65552,2751989 +1724233800,HTTP,26290,1163872 +1724233800,iTunes,8790,35039 +1724233800,Microsoft Update,21605,1154417 +1724233800,Skype,845,9496 +1724233800,SSL,9097,3726 +1724233800,Advanced Packaging Tool,1557,1636 +1724233800,Windows Update,3112,54267 +1724233800,IMAPS,73248,2780643 +1724233800,HTTPS,2073446,24478756 +1724233800,WhatsApp,7371,162112 +1724233800,Apple sites,35173,147569 +1724233800,iCloud,191109,532630 +1724233800,Mozilla,2309,4739 +1724233800,Avast,6507,24320 +1724233800,Opera,8458,11039 +1724233800,SSL client,1512512,21414753 +1724233800,Ad Nexus,17780,9977 +1724233800,Ubuntu Update Manager,1092,1166 +1724233800,Microsoft,108573,173701 +1724233800,Mail.Ru,351677,477670 +1724233800,Yandex,338280,14442839 +1724233800,Ubuntu,465,470 +1724233800,Microsoft Azure,2358,8691 +1724233800,Microsoft CryptoAPI,1131,2622 +1724233800,Apple Maps,4779,15002 +1724233800,Google Play,2013,6673 +1724233800,AdGear,2309,8119 +1724233800,Rambler,19696,125611 +1724233800,Office 365,75925,1586909 +1724233800,Microsoft Windows Live Services Authentication,44331,175234 +1724233800,Yandex Market,42609,112488 +1724233800,Office Mobile,70809,253830 +1724233800,Telegram,156647,3251673 +1724233800,Google Inbox,25428,45734 +1724233800,Edge Chromium,1114,3375 +1724233800,Stripe,6109,6153 +1724233800,DNS over HTTPS,12586,37617 +1724233800,HTTP,62345,45980 +1724233800,__unknown,13880,13967 +1724233800,HTTPS,4910,5626 +1724233800,SSL client,4910,5626 +1724233800,Yandex,4910,5626 +1724233800,ICMP,3116,0 +1724233800,__unknown,34179,518197 +1724233800,HTTPS,144566,171627 +1724233800,SSL client,8869,11976 +1724233800,Yandex,8869,11976 +1724233800,__unknown,85345,1079766 +1724233800,HTTPS,42528,21580 +1724233800,__unknown,303800,688938 +1724233800,ICMP,42804,0 +1724233800,__unknown,340563,813357 +1724233800,HTTPS,732022,885026 +1724233800,SSL client,28089,15199 +1724233800,Google Play,28089,15199 +1724233800,DNS over HTTPS,0,1597 +1724233800,__unknown,454140,11081859 +1724233800,HTTP,425,465 +1724233800,SSL,1258,7964 +1724233800,HTTPS,101296,565552 +1724233800,SSL client,58183,157545 +1724233800,Yandex,44740,120948 +1724233800,Microsoft CryptoAPI,425,465 +1724233800,Google Hangouts,1258,7964 +1724233800,ICMP,656,0 +1724233800,Telegram,9791,22116 +1724233800,DNS over HTTPS,23385,62605 +1724233800,__unknown,3484667,24868635 +1724233800,BITS,121094,6111693 +1724233800,BitTorrent,434,496 +1724233800,Google APIs,25490,161526 +1724233800,Google Drive,33165,26393 +1724233800,Google,183702,377690 +1724233800,Chrome,1655,4668 +1724233800,DNS,37615,0 +1724233800,Gmail,39138,46304 +1724233800,Google Analytics,13893,13055 +1724233800,HTTP,132794,6150045 +1724233800,Launchpad,640,430 +1724233800,Microsoft Update,7664,31371 +1724233800,NTP,1170,1080 +1724233800,SSL,18922,31859 +1724233800,STUN,3296,3158 +1724233800,YouTube,17024,88724 +1724233800,Odnoklassniki,8241,23460 +1724233800,Advanced Packaging Tool,1998,1716 +1724233800,HTTPS,1381024,3989515 +1724233800,APNS,16939,15321 +1724233800,Apple sites,7649,25290 +1724233800,SSL client,430226,948012 +1724233800,Box,1404,5023 +1724233800,Ubuntu Update Manager,1358,1286 +1724233800,Yandex,3495,13237 +1724233800,Nvidia,44229,54058 +1724233800,Microsoft CryptoAPI,7664,31371 +1724233800,Google Hangouts,797,7091 +1724233800,ICMP,27397,0 +1724233800,Gmail attachment,284,0 +1724233800,Demandbase,5417,52459 +1724233800,Telegram,5159,8761 +1724233800,Google Sign in,16977,19749 +1724233800,Thin Manager TFTP,6352,5686 +1724233800,DNS over HTTPS,14700,28858 +1724233800,_err_4655,5035,4224 +1724233800,DeepL Translator,7631,14408 +1724233800,__unknown,2873990,17399073 +1724233800,BITS,1134,1932 +1724233800,DHCPv6,1141,0 +1724233800,Google APIs,145905378,3695183 +1724233800,Google Drive,58607,323366 +1724233800,Google,45026,140533 +1724233800,QQ,678,343 +1724233800,Chrome,15762,214534 +1724233800,cURL,1299,1259 +1724233800,DNS,62291,53248 +1724233800,Gmail,5469,8039 +1724233800,HTTP,1734649,87301722 +1724233800,Internet Explorer,678,343 +1724233800,Launchpad,2560,1720 +1724233800,Microsoft Update,108141,2353552 +1724233800,NetBIOS-dgm,250,0 +1724233800,NTP,13200,3450 +1724233800,SSL,3039,18505 +1724233800,STUN,3398,880 +1724233800,YouTube,9455,19097 +1724233800,Odnoklassniki,2515,2173 +1724233800,Advanced Packaging Tool,28364,25917 +1724233800,Windows Update,79752,1334147 +1724233800,HTTPS,147400783,20650449 +1724233800,WhatsApp,2260,4931 +1724233800,Apple sites,6328,12762 +1724233800,iCloud,12570,19246 +1724233800,Mozilla,4392,6343 +1724233800,Avast,764,782 +1724233800,SSL client,146443040,10080331 +1724233800,Box,1404,5023 +1724233800,Ubuntu Update Manager,22090,20873 +1724233800,Microsoft,1328644,77646252 +1724233800,VeriSign,933,1036 +1724233800,Mail.Ru,17555,27187 +1724233800,Yandex,281149,5122334 +1724233800,Ubuntu,5414,5160 +1724233800,Nvidia,63087,589016 +1724233800,Microsoft CryptoAPI,12114,45484 +1724233800,Microsoft NCSI,822,1100 +1724233800,uTorrent,608,542 +1724233800,Improve Digital,2708,7532 +1724233800,Office 365,210701,7022544 +1724233800,Google Hangouts,3039,18505 +1724233800,ICMP,7498,1382 +1724233800,Weborama,2692,6287 +1724233800,Telegram,25541,766488 +1724233800,Thin Manager TFTP,196,360 +1724233800,Edge Chromium,5264,14288 +1724233800,DNS over TLS,8171,33664 +1724233800,DNS over HTTPS,45821,155016 +1724233800,IPv6 No Next Header,196,0 +1724234099,Thin Manager TFTP,108,108 +1724234099,__unknown,5283113,5476838 +1724234099,__unknown,1220829,2166761 +1724234099,HTTPS,355900,386719 +1724234099,AnyDesk,355900,386719 +1724234099,HTTPS,729990,702134 +1724234099,AnyDesk,729990,702134 +1724234099,__unknown,1605252,3337101 +1724234099,Telegram,817597,1454981 +1724234099,HTTPS,1703235,34520688 +1724234099,HTTPS,1963363,1861372 +1724234099,Telegram,1963363,1861372 +1724234099,__unknown,43949,41477 +1724234099,HTTPS,1277018,4345782 +1724234099,Telegram,1277018,4345782 +1724234099,HTTPS,78989,44267 +1724234099,SSL client,78989,44267 +1724234099,Yandex,78989,44267 +1724234099,DNS over HTTPS,216415,492219 +1724234099,__unknown,2310,18331 +1724234099,HTTPS,591126,533463 +1724234099,SSL client,133511,189580 +1724234099,Telegram,591126,533463 +1724234099,HTTPS,160428,204811 +1724234099,SSL client,160428,204811 +1724234099,Telegram,160428,204811 +1724234099,SSL,76590,62854 +1724234099,HTTPS,11102,15013 +1724234099,SSL client,7299,12119 +1724234099,Yandex,7299,12119 +1724234099,__unknown,2796,5030 +1724234099,HTTPS,24396,5488 +1724234099,SSL client,24396,5488 +1724234099,Yandex,24396,5488 +1724234099,__unknown,23038,20712 +1724234099,HTTPS,138253,46848 +1724234099,DNS over HTTPS,58606,138279 +1724234099,__unknown,32990,1026997 +1724234099,HTTPS,26226,407293 +1724234099,SSL client,12454,392410 +1724234099,Yandex,5000,10007 +1724234099,Font Awesome,7454,382403 +1724234099,__unknown,185896,3438740 +1724234099,Bing,21293,657164 +1724234099,Google,34137,44236 +1724234099,Yahoo!,7739,6557 +1724234099,HTTP,540,977 +1724234099,Skype,2582,8276 +1724234099,HTTPS,903366,11414748 +1724234099,iCloud,5383,15476 +1724234099,Avast,1254,8432 +1724234099,SSL client,169074,972951 +1724234099,Microsoft,32897,67921 +1724234099,Mail.Ru,21610,53570 +1724234099,Yandex,8499,11283 +1724234099,Microsoft CryptoAPI,540,977 +1724234099,Rambler,3279,6265 +1724234099,Lijit,13539,46838 +1724234099,Office 365,12249,32602 +1724234099,Microsoft Windows Live Services Authentication,1740,6744 +1724234099,smpnameres,32314,12843 +1724234099,Telegram,5972,45180 +1724234099,Microsoft Teams,2873,7587 +1724234099,DNS over HTTPS,6909,18422 +1724234099,__unknown,357854,5670658 +1724234099,Bing,3547,6480 +1724234099,Dropbox,1996,4758 +1724234099,Google APIs,117102,55780 +1724234099,Google,8905,29344 +1724234099,MSN,3918,10554 +1724234099,Gmail,10441,15451 +1724234099,HTTP,5090,20095 +1724234099,iTunes,11896,38632 +1724234099,Microsoft Update,19799,4343 +1724234099,Skype,3121,7015 +1724234099,SSL,19139,23307 +1724234099,YouTube,3668,6181 +1724234099,TeamViewer,1387,840 +1724234099,Advanced Packaging Tool,767,938 +1724234099,IMAPS,15127,32779 +1724234099,HTTPS,2727233,38194849 +1724234099,WhatsApp,6499,15963 +1724234099,DynGate,1387,840 +1724234099,Apple sites,979,4127 +1724234099,iCloud,66965,134517 +1724234099,Mozilla,2141,4699 +1724234099,Avast,4020,22738 +1724234099,SSL client,1150598,8143724 +1724234099,CloudFront,1598,6757 +1724234099,Microsoft,302286,625380 +1724234099,Mail.Ru,287187,362812 +1724234099,Yandex,157620,6435661 +1724234099,Ubuntu,767,938 +1724234099,Microsoft Azure,1856,8370 +1724234099,Microsoft CryptoAPI,545,322 +1724234099,Apple Maps,2990,5526 +1724234099,Rambler,4878,6515 +1724234099,Office 365,21781,116064 +1724234099,Sharepoint Online,986,5948 +1724234099,Microsoft Windows Live Services Authentication,42804,95599 +1724234099,Weborama,3033,6263 +1724234099,Hola,4234,6580 +1724234099,Office Mobile,17587,10730 +1724234099,Telegram,34126,113240 +1724234099,AnyDesk,21609,24890 +1724234099,GISMETEO,2134,9258 +1724234099,Google Inbox,21603,78769 +1724234099,Edge Chromium,467,1364 +1724234099,Grammarly,12529,10068 +1724234099,Stripe,8014,6458 +1724234099,DNS over HTTPS,256624,609350 +1724234099,__unknown,268459,142864 +1724234099,__unknown,555,594 +1724234099,DNS over HTTPS,1331,5393 +1724234099,HTTPS,484279,72547 +1724234099,__unknown,37724,71003 +1724234099,__unknown,26272,24443 +1724234099,HTTPS,501290,1439760 +1724234099,SSL client,458823,1420214 +1724234099,Google Meet,458823,1420214 +1724234099,__unknown,68258,2841 +1724234099,SSL,22595,15838 +1724234099,HTTPS,2445674,391010 +1724234099,SSL client,2410221,335877 +1724234099,Google Play,2410221,335877 +1724234099,__unknown,530590,2242577 +1724234099,HTTP,386,993 +1724234099,HTTPS,66403,609659 +1724234099,SSL client,9162,9275 +1724234099,Samsung,386,993 +1724234099,Optimizely,9162,9275 +1724234099,ICMP,15430,10200 +1724234099,__unknown,2169028,4746900 +1724234099,BITS,28676,916042 +1724234099,BitTorrent,310,496 +1724234099,Google APIs,76006,275406 +1724234099,Google,30039,94815 +1724234099,Chrome,1335,929 +1724234099,DNS,22009,0 +1724234099,HTTP,36336,922482 +1724234099,Launchpad,640,430 +1724234099,Microsoft Update,1292,1000 +1724234099,NetBIOS-dgm,243,0 +1724234099,NTP,1170,1170 +1724234099,SSL,5964,18897 +1724234099,STUN,5282,6198 +1724234099,VKontakte,9295,23040 +1724234099,Odnoklassniki,4747,14717 +1724234099,Advanced Packaging Tool,3859,3505 +1724234099,HTTPS,565314,4134372 +1724234099,WhatsApp,1834,7920 +1724234099,iCloud,4941,10820 +1724234099,SSL client,297729,1692516 +1724234099,Box,1404,5023 +1724234099,Samsung,5308,17913 +1724234099,Ubuntu Update Manager,2632,2545 +1724234099,Mail.Ru,72802,276186 +1724234099,Yandex,72817,914937 +1724234099,Ubuntu,587,530 +1724234099,Microsoft CryptoAPI,2466,2006 +1724234099,Apple Maps,5217,15079 +1724234099,Google Play,5744,16900 +1724234099,Office 365,524,6543 +1724234099,Google Hangouts,3013,9650 +1724234099,Aeolon Core Protocol,1882,2168 +1724234099,ICMP,57534,0 +1724234099,Telegram,4095,8016 +1724234099,Thin Manager TFTP,668,538 +1724234099,Grammarly,2292,7947 +1724234099,DNS over HTTPS,24270,60637 +1724234099,DeepL Translator,6609,13668 +1724234099,__unknown,2016889,9038867 +1724234099,Apple Update,23469,552527 +1724234099,BitTorrent,153,198 +1724234099,DHCPv6,815,0 +1724234099,Google APIs,14339,32581 +1724234099,Google,57133,117432 +1724234099,MSN,577,501 +1724234099,QQ,738,343 +1724234099,BitTorrent tracker,153,198 +1724234099,Chrome,40305,16293 +1724234099,cURL,6052,71427 +1724234099,DNS,76577,63318 +1724234099,Facebook,1786,4498 +1724234099,Gmail,7942,5183 +1724234099,HTTP,1541931,81221950 +1724234099,Internet Explorer,738,343 +1724234099,Launchpad,2420,1430 +1724234099,Microsoft Update,114526,1402894 +1724234099,NTP,2340,2430 +1724234099,SSL,1887,11272 +1724234099,STUN,82,74 +1724234099,VKontakte,8715,23860 +1724234099,Advanced Packaging Tool,26068,23763 +1724234099,Windows Update,74661,1323527 +1724234099,IMAPS,8636,7259 +1724234099,HTTPS,1634701,45533834 +1724234099,Spotify,5229,137453 +1724234099,Apple sites,30392,72640 +1724234099,Avast,1146,1173 +1724234099,SSL client,377343,1892429 +1724234099,Box,1404,5023 +1724234099,Baidu,6052,71427 +1724234099,CloudFront,4013,12615 +1724234099,Ubuntu Update Manager,21887,20743 +1724234099,Microsoft,1318275,79702678 +1724234099,VeriSign,566,2141 +1724234099,Mail.Ru,18209,33235 +1724234099,Yandex,142498,708467 +1724234099,Ubuntu,2685,2574 +1724234099,Microsoft CryptoAPI,8581,10187 +1724234099,Microsoft NCSI,500,521 +1724234099,Microsoft WNS,1963,16491 +1724234099,uTorrent,608,482 +1724234099,Apple Maps,5468,37509 +1724234099,33Across,2366,8270 +1724234099,Rambler,5018,12814 +1724234099,Microsoft Windows Live Services Authentication,955,16126 +1724234099,Google Hangouts,855,7032 +1724234099,ICMP,3342,0 +1724234099,Browsec,1753,5493 +1724234099,Telegram,6720,15452 +1724234099,Thin Manager TFTP,392,360 +1724234099,Edge Chromium,4049,13410 +1724234099,DNS over TLS,13130,57308 +1724234099,DNS over HTTPS,38793,138032 +1724234099,DeepL Translator,2244,7186 +1724234400,HTTP,98073579,2812645323 +1724234400,_err_742,98073579,2812645323 +1724234400,Jabber,21999,19837 +1724234400,HTTPS,17040,15501 +1724234400,SSL client,17040,15501 +1724234400,Yandex,17040,15501 +1724234400,DNS over HTTPS,6523,18150 +1724234400,HTTPS,6899,11288 +1724234400,SSL client,6899,11288 +1724234400,Yandex,6899,11288 +1724234400,HTTPS,22641,57196 +1724234400,SSL client,22641,57196 +1724234400,Microsoft,22641,57196 +1724234400,__unknown,4926,7422 +1724234400,HTTPS,336147,3457538 +1724234400,SSL client,33158,23627 +1724234400,Yandex,33158,23627 +1724234400,Telegram,227581,3377046 +1724234400,Google,1221482,1347633 +1724234400,SSL,314261,121184 +1724234400,HTTPS,1231442,1360783 +1724234400,SSL client,1221482,1347633 +1724234400,smpnameres,76355,38520 +1724234400,SSL,88720,20189 +1724234400,HTTPS,1975896,1400274 +1724234400,SSL client,17869,25509 +1724234400,Yandex,17869,25509 +1724234400,smpnameres,14632,9004 +1724234400,__unknown,264905,6048347 +1724234400,Bing,8034,13403 +1724234400,Dropbox,1647,1519 +1724234400,Google APIs,2898,7365 +1724234400,Google,3125,7797 +1724234400,HTTP,597,3055 +1724234400,SSL,20637,11857 +1724234400,VKontakte,129935,356455 +1724234400,HTTPS,1042719,18728803 +1724234400,iCloud,6561,22144 +1724234400,Mozilla,2439,4763 +1724234400,Avast,2310,20541 +1724234400,SSL client,319332,703398 +1724234400,Microsoft,78845,67094 +1724234400,Mail.Ru,9156,23175 +1724234400,Yandex,26696,115780 +1724234400,Microsoft CryptoAPI,597,3055 +1724234400,Google Play,11482,12241 +1724234400,Office 365,27372,43007 +1724234400,smpnameres,15806,6456 +1724234400,Office Mobile,8832,8114 +1724234400,Telegram,39924,86355 +1724234400,DNS over HTTPS,2444,7764 +1724234400,__unknown,229784,1850461 +1724234400,Bing,50491,134139 +1724234400,Google APIs,4215,7715 +1724234400,Google,6423,13635 +1724234400,MSN,15625,51132 +1724234400,Dell,1111,4307 +1724234400,Gmail,19028,30530 +1724234400,HTTP,201108,2833191 +1724234400,iTunes,13754,75739 +1724234400,Reddit,4156,26067 +1724234400,Skype,3315,8041 +1724234400,SSL,38819,18977 +1724234400,Advanced Packaging Tool,569,566 +1724234400,IMAPS,14338,37083 +1724234400,HTTPS,33722223,24000077 +1724234400,WhatsApp,8625,161700 +1724234400,APNS,16408,9146 +1724234400,Apple sites,20114,74540 +1724234400,iCloud,144450,227686 +1724234400,Mozilla,4045,10273 +1724234400,Avast,721,662 +1724234400,Opera,1411,4085 +1724234400,SSL client,31300798,12303188 +1724234400,Ad Nexus,9974,5142 +1724234400,Amazon Web Services,3139,21490 +1724234400,Microsoft,295557,672450 +1724234400,Mail.Ru,419196,477056 +1724234400,Yandex,966245,8838125 +1724234400,Ubuntu,994,957 +1724234400,Microsoft CryptoAPI,2160,4830 +1724234400,uTorrent,8373,13360 +1724234400,Apple Maps,3782,12901 +1724234400,Pocket,2977,6266 +1724234400,Rambler,23752,32480 +1724234400,Office 365,60112,105062 +1724234400,Sharepoint Online,6328,101328 +1724234400,Microsoft Windows Live Services Authentication,87798,226758 +1724234400,smpnameres,4528,1024 +1724234400,Weborama,3511,4892 +1724234400,OneDrive,2624,10276 +1724234400,Office Mobile,58665,49386 +1724234400,Telegram,29052328,1124223 +1724234400,GISMETEO,2194,9318 +1724234400,Google Inbox,3704,24445 +1724234400,Stripe,6784,6520 +1724234400,DNS over TLS,2054,15340 +1724234400,DNS over HTTPS,10282,57852 +1724234400,ICMP,15840,15720 +1724234400,__unknown,187,228 +1724234400,HTTPS,49100,62639 +1724234400,SSL client,49100,62639 +1724234400,Telegram,49100,62639 +1724234400,__unknown,494372,778802 +1724234400,Google,69246,60277 +1724234400,HTTPS,69246,60277 +1724234400,SSL client,69246,60277 +1724234400,ICMP,50130,0 +1724234400,__unknown,10173,17980 +1724234400,SSL,54123,14335 +1724234400,HTTPS,76441,34210 +1724234400,APNS,54123,14335 +1724234400,SSL client,59064,22384 +1724234400,Yandex,4941,8049 +1724234400,__unknown,1402512,2160976 +1724234400,Gmail,12250,10669 +1724234400,HTTP,535,1227 +1724234400,iTunes,6930,46404 +1724234400,HTTPS,104378,374321 +1724234400,SSL client,76701,123170 +1724234400,Microsoft CryptoAPI,535,1227 +1724234400,ICMP,164,0 +1724234400,Google Inbox,57521,66097 +1724234400,__unknown,3186263,24840011 +1724234400,BITS,2440,5333 +1724234400,BitTorrent,463,496 +1724234400,DHCPv6,163,0 +1724234400,Google APIs,21776,111307 +1724234400,Google,46226,139851 +1724234400,BitTorrent tracker,153,0 +1724234400,DNS,27520,66 +1724234400,Firefox,4663,4118 +1724234400,Gmail,26527,70992 +1724234400,HTTP,33809,1371746 +1724234400,Launchpad,640,430 +1724234400,Microsoft Update,24892,1360859 +1724234400,NTP,630,630 +1724234400,SSL,8867,5117 +1724234400,STUN,2844,4188 +1724234400,YouTube,9089,10343 +1724234400,VKontakte,20469,36122 +1724234400,Advanced Packaging Tool,640,430 +1724234400,HTTPS,408575,871258 +1724234400,WhatsApp,20615,10942 +1724234400,APNS,8867,5117 +1724234400,Apple sites,1755,6187 +1724234400,Mozilla,5118,6961 +1724234400,SSL client,232504,535324 +1724234400,Yandex,5434,67824 +1724234400,Snapchat,2675,5345 +1724234400,Microsoft CryptoAPI,2458,2012 +1724234400,Apple Maps,4323,14544 +1724234400,Google Play,63370,29253 +1724234400,ICMP,9725,0 +1724234400,Telegram,9505,23044 +1724234400,Google Sign in,11202,12456 +1724234400,Thin Manager TFTP,756,618 +1724234400,Amp,6498,29271 +1724234400,DNS over HTTPS,9368,30629 +1724234400,DeepL Translator,6173,9640 +1724234400,IPv6 No Next Header,98,0 +1724234400,__unknown,3872074,56897914 +1724234400,Bing,2152,6337 +1724234400,Google APIs,22884,62511 +1724234400,Google Drive,17016,22288 +1724234400,Google,49299,262494 +1724234400,Kaspersky,548,541 +1724234400,MSN,578,502 +1724234400,Chrome,4379,4690 +1724234400,cURL,964,1274 +1724234400,DNS,166626,119590 +1724234400,HTTP,267656,6333709 +1724234400,Launchpad,2560,1720 +1724234400,Microsoft Update,5582,12879 +1724234400,NTP,35240,8010 +1724234400,SSL,15760,27793 +1724234400,YouTube,8311,163906 +1724234400,VKontakte,4707,11096 +1724234400,Steam,2091,17255 +1724234400,Advanced Packaging Tool,26185,23765 +1724234400,HTTPS,1222398,14346616 +1724234400,Pinterest,73685,1760831 +1724234400,Apple sites,9294,23493 +1724234400,iCloud,103628,61900 +1724234400,Mozilla,654,3391 +1724234400,Avast,764,782 +1724234400,SSL client,722654,12253410 +1724234400,Box,1404,5023 +1724234400,Ubuntu Update Manager,20778,19359 +1724234400,Microsoft,143132,5525187 +1724234400,Mail.Ru,3116,5016 +1724234400,Yandex,114474,9737228 +1724234400,Ubuntu,3272,3143 +1724234400,Nvidia,2961,9320 +1724234400,Microsoft CryptoAPI,11067,20065 +1724234400,Microsoft NCSI,1451,1593 +1724234400,Microsoft WNS,578,502 +1724234400,Apple Maps,4787,12227 +1724234400,Rubicon Project,6105,12573 +1724234400,Google Play,14000,32194 +1724234400,Rambler,5072,12739 +1724234400,Google Hangouts,2044,8739 +1724234400,ICMP,36917,7016 +1724234400,Telegram,12739,33647 +1724234400,Xiaomi,266299,16092 +1724234400,Thin Manager TFTP,392,360 +1724234400,Edge Chromium,8193,23790 +1724234400,DNS over TLS,5386,28724 +1724234400,DNS over HTTPS,33787,96805 +1724234400,Notion,1307,2731 +1724234700,Thin Manager TFTP,252,196 +1724234700,HTTPS,67011,276272 +1724234700,SSL client,67011,276272 +1724234700,Yandex,67011,276272 +1724234700,HTTPS,56769,121131 +1724234700,SSL client,56769,121131 +1724234700,Yandex,56769,121131 +1724234700,Google,49517,63489 +1724234700,HTTPS,49517,63489 +1724234700,SSL client,49517,63489 +1724234700,HTTPS,46948,32748 +1724234700,__unknown,40290,34142 +1724234700,HTTPS,1156982,754826 +1724234700,ICMP,21840,0 +1724234700,__unknown,4305,105857 +1724234700,HTTPS,3905,8246 +1724234700,SSL client,3905,8246 +1724234700,Microsoft,3905,8246 +1724234700,Windows Live,27952,7871 +1724234700,HTTPS,241425,54598 +1724234700,SSL client,237380,52603 +1724234700,Yandex,48172,35595 +1724234700,Dropbox Download,161256,9137 +1724234700,HTTPS,314742,652022 +1724234700,SSL client,51695,42904 +1724234700,Google Play,51695,42904 +1724234700,Telegram,6155,45296 +1724234700,__unknown,125575,1546984 +1724234700,Bing,12269,27292 +1724234700,Google APIs,16973,291278 +1724234700,Google,995,4565 +1724234700,MSN,50896,11178 +1724234700,SSL,128353,114917 +1724234700,HTTPS,1226679,33622060 +1724234700,WhatsApp,288534,13517997 +1724234700,APNS,57724,16813 +1724234700,Apple sites,8432,23816 +1724234700,Opera,1755,4146 +1724234700,SSL client,462538,2659477 +1724234700,Ad Nexus,2749,24259 +1724234700,Pubmatic,2450,11614 +1724234700,Microsoft,20509,65192 +1724234700,Mail.Ru,47495,100382 +1724234700,Disqus,3340,9722 +1724234700,Yandex,90473,249817 +1724234700,Google Play,23282,3512 +1724234700,Undertone,42439,13941 +1724234700,Office 365,82512,1806096 +1724234700,Telegram,286122,16412770 +1724234700,DNS over HTTPS,3616,14337 +1724234700,__unknown,5989408,2384736 +1724234700,Bing,3396,6459 +1724234700,Dropbox,1450,6291 +1724234700,Google APIs,26878,49531 +1724234700,Google,66664,210967 +1724234700,McAfee,11894,41758 +1724234700,MSN,6506,39163 +1724234700,Adobe Software,3387,110898 +1724234700,Gmail,19459,31081 +1724234700,HTTP,14015,219554 +1724234700,iTunes,19441,72958 +1724234700,Microsoft Update,247697,269527 +1724234700,Skype,10538,102887 +1724234700,Advanced Packaging Tool,6323,209876 +1724234700,IMAPS,24847,51185 +1724234700,HTTPS,3773534,56958497 +1724234700,Apple sites,31398,248061 +1724234700,iCloud,64074,203223 +1724234700,Mozilla,11971,26948 +1724234700,Avast,2665,5064 +1724234700,SSL client,2116070,26586810 +1724234700,Microsoft,254130,432154 +1724234700,Mail.Ru,558053,610029 +1724234700,Yandex,556020,23289577 +1724234700,Ubuntu,587,530 +1724234700,Microsoft Azure,6127,272788 +1724234700,Microsoft CryptoAPI,2487,2009 +1724234700,Apple Maps,8883,39014 +1724234700,Rambler,16482,20769 +1724234700,Exchange Online,3756,23679 +1724234700,Office 365,22440,57919 +1724234700,Microsoft Windows Live Services Authentication,98720,240371 +1724234700,smpnameres,60,97 +1724234700,Weborama,1832,4829 +1724234700,Yandex Market,36098,98738 +1724234700,Office Mobile,17880,16331 +1724234700,Telegram,258229,14431052 +1724234700,Google Inbox,4939,33712 +1724234700,Stripe,3931,5333 +1724234700,Microsoft Teams,5528,43382 +1724234700,DNS over HTTPS,19280,95068 +1724234700,ICMP,6314,0 +1724234700,DNS over HTTPS,268254,598198 +1724234700,HTTPS,18308,37157 +1724234700,SSL client,18308,37157 +1724234700,DNS over HTTPS,138,74 +1724234700,Discord,18308,37157 +1724234700,DNS over HTTPS,941,4585 +1724234700,HTTPS,17086,23047 +1724234700,__unknown,364656,514895 +1724234700,ICMP,984,0 +1724234700,__unknown,779095,2553641 +1724234700,CoAP,3528,2736 +1724234700,__unknown,84532,882770 +1724234700,HTTPS,62925,57926 +1724234700,SSL client,37839,47764 +1724234700,Telegram,37839,47764 +1724234700,__unknown,129896,124650 +1724234700,Google,4977,10183 +1724234700,Reddit,2806,5136 +1724234700,SSL,70857,12751 +1724234700,HTTPS,964192,1372723 +1724234700,APNS,70857,12751 +1724234700,SSL client,78640,28070 +1724234700,ICMP,328,0 +1724234700,__unknown,3325037,32255918 +1724234700,BitTorrent,310,434 +1724234700,Google APIs,27883,173250 +1724234700,Google Drive,8786,11021 +1724234700,Google,104540,350935 +1724234700,Android browser,467,333 +1724234700,DNS,67159,0 +1724234700,HTTP,10674,36423 +1724234700,Launchpad,640,430 +1724234700,Microsoft Update,2427,18542 +1724234700,NetBIOS-dgm,250,0 +1724234700,NTP,630,630 +1724234700,Skype,981,6722 +1724234700,STUN,952,444 +1724234700,VKontakte,3493,5416 +1724234700,Advanced Packaging Tool,2561,2153 +1724234700,HTTPS,520278,7080771 +1724234700,Pinterest,1897,1556 +1724234700,WhatsApp,9529,178641 +1724234700,SSL client,252768,5413711 +1724234700,Box,1404,5023 +1724234700,Ubuntu Update Manager,1334,1193 +1724234700,Microsoft,693,7965 +1724234700,Yandex,36175,4770781 +1724234700,Ubuntu,587,530 +1724234700,Atlassian,44197,13474 +1724234700,Nvidia,3302,7445 +1724234700,Microsoft CryptoAPI,5436,23425 +1724234700,Microsoft WNS,693,7965 +1724234700,Google Play,2524,9287 +1724234700,CloudFlare,6012,31392 +1724234700,smpnameres,10847,39789 +1724234700,ICMP,147742,0 +1724234700,Telegram,5709,15870 +1724234700,DNS over HTTPS,23831,74514 +1724234700,DeepL Translator,6270,9755 +1724234700,__unknown,3765500,26653678 +1724234700,Apple Update,1919,3934 +1724234700,BitTorrent,153,537 +1724234700,DHCPv6,1141,0 +1724234700,Google APIs,24722,108871 +1724234700,Google Drive,9217,10519 +1724234700,Google,63828,180013 +1724234700,QQ,678,343 +1724234700,BitTorrent tracker,153,537 +1724234700,Chrome,1064,968 +1724234700,DNS,104741,74911 +1724234700,Gmail,25285,165350 +1724234700,HTTP,119595,1155130 +1724234700,Internet Explorer,678,343 +1724234700,iTunes,4015,5273 +1724234700,Launchpad,2782,1984 +1724234700,Microsoft Update,25276,1040420 +1724234700,NetBIOS-dgm,243,0 +1724234700,NTP,810,810 +1724234700,SSL,2352,362 +1724234700,STUN,35328,2898 +1724234700,YouTube,41918,749326 +1724234700,Advanced Packaging Tool,36332,32337 +1724234700,HTTPS,851898,5031230 +1724234700,Apple sites,6165,30842 +1724234700,iCloud,30631,78809 +1724234700,Mozilla,2885,1761 +1724234700,Avast,764,782 +1724234700,SSL client,316417,1702387 +1724234700,Box,1404,5023 +1724234700,Ubuntu Update Manager,26427,25307 +1724234700,Microsoft,3678,16862 +1724234700,Mail.Ru,881,1485 +1724234700,Yandex,64814,271213 +1724234700,Ubuntu,7899,5960 +1724234700,Nvidia,9368,28519 +1724234700,Microsoft CryptoAPI,9768,25613 +1724234700,Microsoft NCSI,931,1040 +1724234700,Microsoft WNS,699,8031 +1724234700,Apple Maps,1868,5703 +1724234700,Google Play,21400,26738 +1724234700,Rambler,692,6213 +1724234700,ICMP,9941,6910 +1724234700,ICMP for IPv6,70,0 +1724234700,Telegram,31121,287446 +1724234700,Zoom,2743,6859 +1724234700,Thin Manager TFTP,556,778 +1724234700,Edge Chromium,8145,24324 +1724234700,DNS over TLS,7751,33386 +1724234700,DNS over HTTPS,25150,91383 +1724234700,Notion,1376,5006 +1724234700,IPv6 No Next Header,196,0 +1724235000,HTTPS,31176,37756 +1724235000,Google,243957,343331 +1724235000,HTTPS,380021,431389 +1724235000,SSL client,243957,343331 +1724235000,Gmail,51761,76309 +1724235000,IMAPS,51761,76309 +1724235000,SSL client,51761,76309 +1724235000,__unknown,97163,137495 +1724235000,HTTPS,521378,28795 +1724235000,SSL client,521378,28795 +1724235000,Yandex,521378,28795 +1724235000,__unknown,45447,24468 +1724235000,HTTPS,745958,170074 +1724235000,SSL client,741243,165701 +1724235000,Yandex,741243,165701 +1724235000,__unknown,8425,10246 +1724235000,HTTPS,30003,14946 +1724235000,SSL client,4812,8914 +1724235000,Yandex,4812,8914 +1724235000,Google APIs,4554,36109 +1724235000,SSL,66217,18254 +1724235000,HTTPS,795332,53123764 +1724235000,APNS,66217,18254 +1724235000,SSL client,123130,893190 +1724235000,Yandex,52359,838827 +1724235000,AnyDesk,6205,7896 +1724235000,__unknown,181710,175794 +1724235000,BITS,122731,6070456 +1724235000,Google APIs,26063,57459 +1724235000,Google,14109,30669 +1724235000,MSN,1433,7424 +1724235000,Adobe Software,4156,38121 +1724235000,HTTP,127510,6264892 +1724235000,iTunes,2437,28684 +1724235000,Microsoft Update,124301,6073684 +1724235000,SSL,25283,21290 +1724235000,TeamViewer,30177,52253 +1724235000,Advanced Packaging Tool,3209,191208 +1724235000,Windows Update,1570,3228 +1724235000,HTTPS,1668285,2909727 +1724235000,Mozilla,13492,42818 +1724235000,Avast,1122,9073 +1724235000,SSL client,1244157,888643 +1724235000,Microsoft,72877,114066 +1724235000,Mail.Ru,37448,76129 +1724235000,Yandex,136679,128718 +1724235000,Nvidia,857170,110132 +1724235000,Rambler,3174,6263 +1724235000,Office 365,6435,10002 +1724235000,Sharepoint Online,3118,94285 +1724235000,Weborama,1965,4836 +1724235000,Telegram,6206,78118 +1724235000,Google Inbox,35299,110424 +1724235000,Stripe,27180,19540 +1724235000,__unknown,7855522,2402994 +1724235000,Apple Update,1853,5689 +1724235000,Bing,9462,25130 +1724235000,Dropbox,5879,13652 +1724235000,Eset,4015,14275 +1724235000,Google APIs,14544,35561 +1724235000,Google,967052,720407 +1724235000,MSN,3105,8497 +1724235000,Yahoo!,2700,5667 +1724235000,Adobe Software,5357,17307 +1724235000,Chrome,892,570 +1724235000,Gmail,21008,29902 +1724235000,HTTP,8885,23529 +1724235000,iTunes,22236,379148 +1724235000,schuelerVZ,3419,4223 +1724235000,Skype,3016,7045 +1724235000,SSL,30921,26221 +1724235000,VKontakte,5583,9999 +1724235000,IMAPS,29449,58965 +1724235000,HTTPS,6093003,86251045 +1724235000,Spotify,1856,15974 +1724235000,APNS,21673,8676 +1724235000,Apple sites,30112,73211 +1724235000,iCloud,90294,263843 +1724235000,Mozilla,9668,25880 +1724235000,Avast,15602,68373 +1724235000,SSL client,3990915,7730817 +1724235000,Ad Nexus,3862,5242 +1724235000,Amazon Web Services,3205,21542 +1724235000,Microsoft,136564,273050 +1724235000,Mail.Ru,886158,1255741 +1724235000,Siri,3273,6476 +1724235000,Yandex,1336713,2174259 +1724235000,Nvidia,153243,810069 +1724235000,Microsoft CryptoAPI,2457,12847 +1724235000,Apple Maps,2024,30764 +1724235000,Google Play,20403,1812 +1724235000,AdGear,2249,8036 +1724235000,Rambler,45200,604811 +1724235000,Apple Music,3969,9416 +1724235000,Office 365,33426,79310 +1724235000,AdRoll,8760,21238 +1724235000,Microsoft Windows Live Services Authentication,41721,57865 +1724235000,Google Hangouts,1546,1392 +1724235000,smpnameres,7452,7012 +1724235000,Weborama,2078,4884 +1724235000,Office Mobile,47384,35098 +1724235000,Mail.ru Attachment,11566,580575 +1724235000,Telegram,875981,41247798 +1724235000,Google Inbox,5870,25321 +1724235000,Stripe,4940,5432 +1724235000,DNS over HTTPS,17476,65555 +1724235000,DeepL Translator,1998,19913 +1724235000,Google,73440,81187 +1724235000,HTTPS,73440,81187 +1724235000,SSL client,73440,81187 +1724235000,Google APIs,14331,42155 +1724235000,HTTPS,14331,42155 +1724235000,SSL client,14331,42155 +1724235000,__unknown,81105,149228 +1724235000,HTTPS,282314,64268 +1724235000,__unknown,41887,33564 +1724235000,Skype,2397,8681 +1724235000,SSL,15195,16380 +1724235000,HTTPS,25832,318984 +1724235000,APNS,12520,6411 +1724235000,SSL client,14917,15092 +1724235000,__unknown,36459,459553 +1724235000,Google,5027,10183 +1724235000,iTunes,10024,10587 +1724235000,SSL,915,2448 +1724235000,HTTPS,158272,2683836 +1724235000,Apple sites,35690,71622 +1724235000,SSL client,50741,92392 +1724235000,ICMP,17457,0 +1724235000,DNS over HTTPS,9627,21912 +1724235000,__unknown,4516962,93433145 +1724235000,BITS,2440,6006 +1724235000,BitTorrent,310,496 +1724235000,Google APIs,35128,118634 +1724235000,Google,100774,190606 +1724235000,Android browser,401,333 +1724235000,DNS,37517,344 +1724235000,Gmail,10895,10455 +1724235000,HTTP,9244,16615 +1724235000,Launchpad,640,496 +1724235000,Microsoft Update,1317,1133 +1724235000,NTP,360,360 +1724235000,STUN,34262,1512 +1724235000,YouTube,33543,33121 +1724235000,VKontakte,16346,253582 +1724235000,Advanced Packaging Tool,1998,1848 +1724235000,HTTPS,577858,3127191 +1724235000,Apple sites,9637,26100 +1724235000,Mozilla,772,1542 +1724235000,SSL client,294152,811757 +1724235000,Box,1404,5023 +1724235000,Samsung,3526,12064 +1724235000,Ubuntu Update Manager,1358,1352 +1724235000,Microsoft,1758,15381 +1724235000,Yandex,2936,45059 +1724235000,Nvidia,52117,59622 +1724235000,Microsoft CryptoAPI,1317,1133 +1724235000,Google Play,5026,19608 +1724235000,ICMP,9093,1442 +1724235000,Telegram,8250,22647 +1724235000,Google Sign in,20358,21455 +1724235000,Thin Manager TFTP,1736,1960 +1724235000,DNS over HTTPS,20991,69114 +1724235000,IPv6 No Next Header,98,0 +1724235000,__unknown,12550111,82742175 +1724235000,Apple Update,3266,10459 +1724235000,BitTorrent,153,0 +1724235000,DHCPv6,978,0 +1724235000,Google APIs,19589,50511 +1724235000,Google,100341,956515 +1724235000,QQ,678,343 +1724235000,BitTorrent tracker,153,0 +1724235000,Chrome,2338,2002 +1724235000,DNS,112873,81503 +1724235000,Google Analytics,1133,5242 +1724235000,HTTP,158302,2921560 +1724235000,Internet Explorer,7122,2359 +1724235000,iTunes,3891,6951 +1724235000,Launchpad,2560,1984 +1724235000,Microsoft Update,646,644 +1724235000,NTP,13290,3540 +1724235000,Skype,2223,6303 +1724235000,SSL,855,7033 +1724235000,YouTube,31125,29979 +1724235000,VKontakte,34152,130695 +1724235000,Odnoklassniki,5825,14287 +1724235000,Advanced Packaging Tool,30082,27884 +1724235000,HTTPS,1068081,9077631 +1724235000,Apple sites,12771,32091 +1724235000,iCloud,35111,63192 +1724235000,Mozilla,3441,39857 +1724235000,Avast,382,391 +1724235000,SSL client,406824,2185402 +1724235000,CloudFront,2351,8322 +1724235000,Ubuntu Update Manager,23808,22576 +1724235000,Microsoft,37522,2806489 +1724235000,VeriSign,566,2141 +1724235000,Mail.Ru,8713,21534 +1724235000,Yandex,77246,597381 +1724235000,Ubuntu,4989,4769 +1724235000,Nvidia,10639,33033 +1724235000,Microsoft CryptoAPI,15568,18987 +1724235000,Microsoft NCSI,991,1040 +1724235000,Microsoft WNS,693,7964 +1724235000,Apple Maps,6823,22896 +1724235000,Rambler,5072,12875 +1724235000,Office 365,883,7617 +1724235000,Google Hangouts,855,7033 +1724235000,ICMP,7540,392 +1724235000,Telegram,31743,49932 +1724235000,Thin Manager TFTP,756,690 +1724235000,Edge Chromium,6564,18939 +1724235000,DNS over TLS,22488,84497 +1724235000,DNS over HTTPS,45548,150472 +1724235000,_err_4655,8753,7368 +1724235000,DeepL Translator,21585,55943 +1724235000,Notion,1307,2731 +1724235300,Skype,10090,11303 +1724235300,HTTPS,19997,25420 +1724235300,SSL client,19997,25420 +1724235300,Sharepoint Online,9907,14117 +1724235300,Google,76824,84929 +1724235300,HTTPS,76824,84929 +1724235300,SSL client,76824,84929 +1724235300,__unknown,120177,38594 +1724235300,HTTPS,10199,14593 +1724235300,SSL client,10199,14593 +1724235300,Yandex,10199,14593 +1724235300,Gmail,44027,69157 +1724235300,IMAPS,44027,69157 +1724235300,SSL client,44027,69157 +1724235300,HTTPS,5960,9625 +1724235300,SSL client,5960,9625 +1724235300,Yandex,5960,9625 +1724235300,__unknown,34651,12146 +1724235300,HTTPS,22869,19875 +1724235300,SSL client,5186,9124 +1724235300,Yandex,5186,9124 +1724235300,HTTPS,5268,10390 +1724235300,SSL client,5268,10390 +1724235300,Yandex,5268,10390 +1724235300,Google APIs,6296,10725 +1724235300,SSL,186678,66706 +1724235300,HTTPS,97742,45894 +1724235300,SSL client,10948,18514 +1724235300,Yandex,4652,7789 +1724235300,smpnameres,163292,92325 +1724235300,__unknown,41331,26818 +1724235300,SSL,97018,20299 +1724235300,HTTPS,305441,7099416 +1724235300,SSL client,57165,147850 +1724235300,Yandex,6980,33432 +1724235300,Google Play,23121,24391 +1724235300,Lijit,27064,90027 +1724235300,__unknown,2058888,1900662 +1724235300,Bing,3608,6482 +1724235300,Dropbox,2361,2398 +1724235300,Google APIs,9220,170295 +1724235300,Google,9068,40549 +1724235300,MSN,1371,7515 +1724235300,HTTP,542,1658 +1724235300,iTunes,2191,11930 +1724235300,SSL,88962,38401 +1724235300,YouTube,4195,5796 +1724235300,VKontakte,1896,4866 +1724235300,HTTPS,6245994,64584461 +1724235300,iCloud,13363,12503 +1724235300,Mozilla,8302,22361 +1724235300,SSL client,5812333,55726466 +1724235300,Microsoft,6210,14657 +1724235300,Mail.Ru,24722,86583 +1724235300,Yandex,4344067,9953669 +1724235300,Nvidia,91783,591019 +1724235300,Microsoft CryptoAPI,542,1658 +1724235300,Apple Maps,2823,6595 +1724235300,Rambler,158481,2005000 +1724235300,Office 365,1030455,42621432 +1724235300,Telegram,188779,8337879 +1724235300,Xiaomi,95542,157609 +1724235300,DNS over HTTPS,44890,88036 +1724235300,DeepL Translator,5498,11802 +1724235300,__unknown,686266,2269680 +1724235300,Apple Update,1781,5082 +1724235300,Bing,23200,43289 +1724235300,Dropbox,2293,5858 +1724235300,Google APIs,19087,28460 +1724235300,Google,4146361,1683695 +1724235300,McAfee,5630,27917 +1724235300,MSN,12532,54110 +1724235300,Gmail,8497,19106 +1724235300,HTTP,3077,5764 +1724235300,iTunes,2147,11883 +1724235300,Microsoft Update,1522,3547 +1724235300,Skype,40254,30371 +1724235300,SSL,9133,4957 +1724235300,VKontakte,8014,18802 +1724235300,Steam,22633,40912 +1724235300,IMAPS,11203,28106 +1724235300,HTTPS,7761709,55460133 +1724235300,WhatsApp,12062,660481 +1724235300,Apple sites,26794,116984 +1724235300,iCloud,21354,27571 +1724235300,Avast,1376,6241 +1724235300,Opera,16686,14407 +1724235300,SSL client,6040520,5301822 +1724235300,Ad Nexus,7925,5069 +1724235300,CloudFront,5251,2215 +1724235300,Microsoft,372125,372076 +1724235300,Mail.Ru,472240,666958 +1724235300,Yandex,386263,1094865 +1724235300,GNOME,8333,223562 +1724235300,Asus,1787,8811 +1724235300,Nvidia,159852,262861 +1724235300,Microsoft CryptoAPI,733,4240 +1724235300,Apple Maps,4489,11803 +1724235300,Google Play,7821,17269 +1724235300,Rambler,27732,34576 +1724235300,Exchange Online,2630,12926 +1724235300,Office 365,66468,130348 +1724235300,Sharepoint Online,4761,100843 +1724235300,Microsoft Windows Live Services Authentication,34426,87456 +1724235300,smpnameres,2350,369 +1724235300,Weborama,13801,24310 +1724235300,OneDrive,3607,9341 +1724235300,Office Mobile,91760,33984 +1724235300,Telegram,842178,33346911 +1724235300,Google Inbox,10751,64711 +1724235300,Grammarly,12560,9736 +1724235300,DNS over HTTPS,92324,246056 +1724235300,_err_4655,2350,2665 +1724235300,DNS over HTTPS,74463,174847 +1724235300,__unknown,5916,3540 +1724235300,__unknown,26292,545100 +1724235300,HTTPS,110929,38373 +1724235300,ICMP,1148,0 +1724235300,__unknown,1097,923 +1724235300,HTTPS,57985,2413802 +1724235300,ICMP,1903,0 +1724235300,Telegram,1830,20216 +1724235300,DNS over HTTPS,0,1390 +1724235300,__unknown,248374,1344832 +1724235300,Google,31385,44862 +1724235300,HTTPS,93069,190018 +1724235300,SSL client,34269,53427 +1724235300,NIH,2884,8565 +1724235300,ICMP,8224,6360 +1724235300,__unknown,3713838,16501627 +1724235300,Bing,5949,7646 +1724235300,BitTorrent,310,496 +1724235300,DHCPv6,163,0 +1724235300,Google APIs,80957,65802 +1724235300,Google,92005,205035 +1724235300,MSN,1025,6184 +1724235300,Android browser,467,333 +1724235300,Chrome,1106,840 +1724235300,DNS,31682,0 +1724235300,Gmail,20413,19110 +1724235300,HTTP,4490,5070 +1724235300,Launchpad,640,496 +1724235300,NTP,25860,6360 +1724235300,SSL,1726,10677 +1724235300,STUN,984,888 +1724235300,VKontakte,5814,13004 +1724235300,Advanced Packaging Tool,640,496 +1724235300,HTTPS,509224,1967067 +1724235300,WhatsApp,19516,101572 +1724235300,iCloud,3338,9275 +1724235300,SSL client,285257,1175917 +1724235300,Box,1404,4963 +1724235300,Mail.Ru,1420,5134 +1724235300,Yandex,21123,794434 +1724235300,Atlassian,43971,12937 +1724235300,Microsoft CryptoAPI,1893,2632 +1724235300,Scorecard Research,2631,7306 +1724235300,Samsung Push Notification,2576,8446 +1724235300,Google Hangouts,1726,10677 +1724235300,ICMP,5840,60 +1724235300,Firebase Crashlytics,1249,6463 +1724235300,Telegram,6368,15866 +1724235300,Thin Manager TFTP,284,332 +1724235300,Grammarly,2232,7947 +1724235300,DNS over HTTPS,16965,48878 +1724235300,IPv6 No Next Header,98,0 +1724235300,__unknown,4162250,34133886 +1724235300,Apple Update,3860,11488 +1724235300,Bing,963,7958 +1724235300,BitTorrent,153,198 +1724235300,Eset,888,553 +1724235300,Google APIs,19086,29706 +1724235300,Google,58371,256124 +1724235300,QQ,738,343 +1724235300,BitTorrent tracker,153,198 +1724235300,Chrome,6846,5808 +1724235300,DNS,106394,87199 +1724235300,Firefox,2325,4892 +1724235300,HTTP,116272,1116321 +1724235300,Internet Explorer,738,343 +1724235300,iTunes,1856,18539 +1724235300,Launchpad,2560,1984 +1724235300,Microsoft Update,641,502 +1724235300,NetBIOS-dgm,250,0 +1724235300,NTP,3150,3150 +1724235300,SSL,8937,9240 +1724235300,VKontakte,1335,4292 +1724235300,Odnoklassniki,4652,14264 +1724235300,Steam,3029,43139 +1724235300,Advanced Packaging Tool,28215,25922 +1724235300,HTTPS,525015,2983650 +1724235300,Apple sites,4050,22294 +1724235300,iCloud,24868,160319 +1724235300,Mozilla,11589,7610 +1724235300,Avast,4213,30958 +1724235300,SSL client,229719,1230227 +1724235300,Box,2808,10046 +1724235300,GoDaddy,1158,3367 +1724235300,Amazon Web Services,2393,14392 +1724235300,Ubuntu Update Manager,20815,19590 +1724235300,Microsoft,21562,979253 +1724235300,Mail.Ru,6373,27796 +1724235300,Yandex,33351,442643 +1724235300,Ubuntu,6837,6328 +1724235300,Microsoft CryptoAPI,4998,4955 +1724235300,Microsoft WNS,573,7964 +1724235300,Apple Maps,2213,5279 +1724235300,Pocket,3480,3306 +1724235300,Google Play,3009,9644 +1724235300,CloudFlare,2006,10111 +1724235300,Rambler,6467,17715 +1724235300,Microsoft Windows Live Services Authentication,7282,27393 +1724235300,ICMP,74206,240 +1724235300,Sway,2436,7047 +1724235300,Synology DSM,2170,8026 +1724235300,Telegram,248876,10459056 +1724235300,Google Sign in,4469,7978 +1724235300,Thin Manager TFTP,1184,1328 +1724235300,Edge Chromium,3689,9553 +1724235300,Grammarly,1142,7405 +1724235300,Stripe,1573,7882 +1724235300,DNS over TLS,27903,74969 +1724235300,DNS over HTTPS,30801,122465 +1724235300,DeepL Translator,6479,9858 +1724235300,IPv6 No Next Header,98,0 +1724235600,HTTPS,46242,60352 +1724235600,__unknown,1296,1934 +1724235600,HTTPS,5212,43276 +1724235600,SSL client,5212,43276 +1724235600,Yandex,5212,43276 +1724235600,Windows Live,27046,9769 +1724235600,HTTPS,27046,9769 +1724235600,SSL client,27046,9769 +1724235600,HTTPS,17733,96766 +1724235600,SSL client,17733,96766 +1724235600,Yandex,17733,96766 +1724235600,Google APIs,1915,23497 +1724235600,HTTPS,32936,49109 +1724235600,SSL client,1915,23497 +1724235600,__unknown,2353,100842 +1724235600,Google APIs,1322,5762 +1724235600,Skype,4036,8741 +1724235600,HTTPS,184065,142084 +1724235600,SSL client,184065,142084 +1724235600,Microsoft,27247,119166 +1724235600,Dropbox Download,151460,8415 +1724235600,DNS over HTTPS,54724,128664 +1724235600,HTTP,1250,4539 +1724235600,SSL,114896,69734 +1724235600,HTTPS,46456,39766 +1724235600,APNS,66353,7933 +1724235600,Apple sites,48543,61801 +1724235600,SSL client,132536,89362 +1724235600,Microsoft CryptoAPI,1250,4539 +1724235600,Google Play,17640,19628 +1724235600,DNS over HTTPS,18470,32426 +1724235600,__unknown,116938,1984135 +1724235600,Google APIs,2506,7355 +1724235600,Google,3815,17174 +1724235600,MSN,6098,9140 +1724235600,Gmail,35967,55607 +1724235600,HTTP,3000,9871 +1724235600,Microsoft Update,2070,5988 +1724235600,Skype,2593,8336 +1724235600,SSL,96736,45030 +1724235600,HTTPS,3634449,91470644 +1724235600,WhatsApp,5160,4819 +1724235600,APNS,64184,21775 +1724235600,iCloud,2192,7257 +1724235600,SSL client,717797,1040384 +1724235600,Microsoft,11216,22148 +1724235600,Mail.Ru,64081,88126 +1724235600,Yandex,272302,658308 +1724235600,Nvidia,40161,15636 +1724235600,Microsoft CryptoAPI,494,2516 +1724235600,uTorrent,14187,20478 +1724235600,Google Play,28102,11419 +1724235600,Office 365,24828,65964 +1724235600,smpnameres,33334,13707 +1724235600,Telegram,1167398,77923919 +1724235600,Xiaomi,133675,11709 +1724235600,Google Inbox,5345,14644 +1724235600,Stripe,6981,6675 +1724235600,__unknown,650027,541390 +1724235600,Bing,20934,79078 +1724235600,Dropbox,11892,231400 +1724235600,Google APIs,40268,52468 +1724235600,Google,15302,126478 +1724235600,MSN,7291,17045 +1724235600,DNS,488,454 +1724235600,Gmail,8495,54061 +1724235600,HTTP,4948,5974 +1724235600,Reddit,65382,105608 +1724235600,schuelerVZ,4310,5273 +1724235600,Advanced Packaging Tool,1274,1226 +1724235600,SMTPS,45527,7213 +1724235600,IMAPS,6483,22930 +1724235600,HTTPS,6460808,210701787 +1724235600,Apple sites,20676,78196 +1724235600,iCloud,23142,55101 +1724235600,Mozilla,7736,11051 +1724235600,Avast,2493,4874 +1724235600,SSL client,5412330,171055277 +1724235600,Ad Nexus,7323,10985 +1724235600,Samsung,124717,36588 +1724235600,Ubuntu Update Manager,1274,1226 +1724235600,Microsoft,3337451,158327177 +1724235600,VeriSign,501,2077 +1724235600,Mail.Ru,628024,730191 +1724235600,Yandex,567992,10520820 +1724235600,GitHub,1323,6614 +1724235600,Asus,1415,10205 +1724235600,Nvidia,81743,85217 +1724235600,Microsoft CryptoAPI,1033,2994 +1724235600,uTorrent,1412,602 +1724235600,Google Play,7279,14307 +1724235600,Rambler,21140,26969 +1724235600,Exchange Online,6578,28252 +1724235600,Office 365,41375,116779 +1724235600,Microsoft Windows Live Services Authentication,43670,107914 +1724235600,smpnameres,6639,2167 +1724235600,JetBrains,1412,602 +1724235600,Office Mobile,63216,59076 +1724235600,Mail.ru Attachment,4409,41943 +1724235600,Telegram,485637,36561395 +1724235600,Xiaomi,217279,25392 +1724235600,Google Inbox,14215,59695 +1724235600,Grammarly,1966,6692 +1724235600,Stripe,10476,11209 +1724235600,DNS over TLS,1145,4637 +1724235600,DNS over HTTPS,22590,83307 +1724235600,__unknown,23349,12642 +1724235600,HTTPS,33646,45838 +1724235600,ICMP,3690,0 +1724235600,SSL,1344,7852 +1724235600,SSL client,1344,7852 +1724235600,Google Hangouts,1344,7852 +1724235600,__unknown,140207,6674514 +1724235600,DNS over HTTPS,1073,5392 +1724235600,__unknown,27397,13195 +1724235600,Google,6995,14949 +1724235600,SSL,1990,4578 +1724235600,HTTPS,266188,92250 +1724235600,SSL client,8985,19527 +1724235600,Google Hangouts,1990,4578 +1724235600,CoAP,2352,1728 +1724235600,__unknown,384305,22652620 +1724235600,Google,47029,48398 +1724235600,HTTP,84973,6656237 +1724235600,SSL,170207,22490 +1724235600,HTTPS,96947,212518 +1724235600,APNS,170207,22490 +1724235600,SSL client,217236,70888 +1724235600,ICMP,2124,1320 +1724235600,DNS over HTTPS,24515,65950 +1724235600,__unknown,53960347,92921378 +1724235600,BitTorrent,310,496 +1724235600,DHCPv6,978,0 +1724235600,Google APIs,107479,33737 +1724235600,Google Drive,6030,9907 +1724235600,Google,156333,308187 +1724235600,Google Translate,4339,8181 +1724235600,DNS,54230,0 +1724235600,Gmail,6625,8114 +1724235600,Google Analytics,1922,6699 +1724235600,HTTP,6467,14488 +1724235600,Launchpad,640,496 +1724235600,NetBIOS-dgm,243,0 +1724235600,NTP,25590,6090 +1724235600,SSL,6808,11741 +1724235600,STUN,984,888 +1724235600,YouTube,2017,10938 +1724235600,VKontakte,11061,60989 +1724235600,Odnoklassniki,2431,7157 +1724235600,Advanced Packaging Tool,3136,2785 +1724235600,HTTPS,573657,1682548 +1724235600,Mozilla,1996,4611 +1724235600,SSL client,367089,531289 +1724235600,Box,1404,5023 +1724235600,Ubuntu Update Manager,1274,1193 +1724235600,Microsoft,2425,9145 +1724235600,Yandex,2460,7833 +1724235600,Ubuntu,1222,1096 +1724235600,ICMP,20036,2364 +1724235600,ICMP for IPv6,70,0 +1724235600,Telegram,6340,15559 +1724235600,Kinopoisk,32425,25367 +1724235600,Google Sign in,26667,24488 +1724235600,Thin Manager TFTP,384,214 +1724235600,DNS over HTTPS,49545,135208 +1724235600,__unknown,12101407,25900233 +1724235600,BITS,829,939 +1724235600,BitTorrent,153,0 +1724235600,DHCPv6,163,0 +1724235600,Google APIs,41477,673242 +1724235600,Google,34993,188173 +1724235600,QQ,678,343 +1724235600,Windows Live,3603,19767 +1724235600,Android browser,390,526 +1724235600,BitTorrent tracker,153,0 +1724235600,Chrome,2260,2002 +1724235600,DNS,85454,71586 +1724235600,Firefox,1467,1856 +1724235600,HTTP,92178,112727 +1724235600,Internet Explorer,678,343 +1724235600,Launchpad,2560,1984 +1724235600,Microsoft Update,1628,1380 +1724235600,NTP,23770,5280 +1724235600,SSL,1722,11084 +1724235600,YouTube,4477,29920 +1724235600,VKontakte,34567,112789 +1724235600,Advanced Packaging Tool,25696,23033 +1724235600,HTTPS,1114551,24425232 +1724235600,WhatsApp,59455,5025383 +1724235600,APNS,925,3993 +1724235600,Apple sites,157304,7583797 +1724235600,iCloud,51378,17899 +1724235600,Mozilla,11989,21775 +1724235600,Avast,1146,1173 +1724235600,SSL client,621027,18192934 +1724235600,Box,1404,5023 +1724235600,CloudFront,4312,54374 +1724235600,Ubuntu Update Manager,19644,18223 +1724235600,Mail.Ru,8172,23321 +1724235600,Yandex,167048,8531441 +1724235600,Ubuntu,5332,4728 +1724235600,Microsoft CryptoAPI,10190,31441 +1724235600,Viber,1451,6951 +1724235600,Apple Maps,1149,5204 +1724235600,WeChat,7154,2739 +1724235600,Garmin,1319,3440 +1724235600,Office 365,1147,7331 +1724235600,Google Hangouts,797,7091 +1724235600,ICMP,3646,0 +1724235600,JetBrains,7799,20660 +1724235600,QUIC,15938,32440 +1724235600,Office Mobile,17083,10625 +1724235600,Telegram,11843,45844 +1724235600,Google Sign in,50772,813976 +1724235600,Google Inbox,1119,4753 +1724235600,Edge Chromium,4216,9738 +1724235600,Stripe,853,3722 +1724235600,DNS over TLS,15613,43391 +1724235600,DNS over HTTPS,18571,65522 +1724235600,DeepL Translator,6599,11867 +1724235600,IPv6 No Next Header,196,0 +1724235600,CoAP,196,144 +1724235900,HTTPS,48686,36426 +1724235900,HTTPS,37712,25365 +1724235900,SSL client,37712,25365 +1724235900,Yandex,37712,25365 +1724235900,__unknown,51947,28224 +1724235900,__unknown,706425,158748 +1724235900,HTTPS,143282,1309131 +1724235900,SSL client,12290,21059 +1724235900,Yandex,12290,21059 +1724235900,Telegram,130992,1288072 +1724235900,HTTPS,54731,204259 +1724235900,SSL client,46169,201824 +1724235900,Mail.Ru,46169,201824 +1724235900,HTTPS,107418,52553 +1724235900,SSL client,100260,43074 +1724235900,Yandex,20811,22454 +1724235900,Google Play,79449,20620 +1724235900,__unknown,204,2500 +1724235900,Google,32592,24800 +1724235900,HTTPS,53034,50602 +1724235900,SSL client,38937,37313 +1724235900,Yandex,6345,12513 +1724235900,DNS over HTTPS,4901,12079 +1724235900,__unknown,28615,15803 +1724235900,Bing,3302,15894 +1724235900,Dropbox,1787,5579 +1724235900,Google,1532541,673751 +1724235900,MSN,91445,103164 +1724235900,Gmail,6054,9764 +1724235900,HTTP,1064,1520 +1724235900,iTunes,17142,14222 +1724235900,SSL,109575,667528 +1724235900,TeamViewer,1233,7119 +1724235900,HTTPS,2120146,3384578 +1724235900,Apple sites,1758,6075 +1724235900,iCloud,4797,6201 +1724235900,Avast,1320,9851 +1724235900,SSL client,1916282,2480656 +1724235900,Samsung,45701,35407 +1724235900,Microsoft,22854,78035 +1724235900,Mail.Ru,15936,27504 +1724235900,Yandex,70932,63306 +1724235900,Nvidia,63695,18042 +1724235900,Microsoft CryptoAPI,1064,1520 +1724235900,uTorrent,10852,19542 +1724235900,Office 365,21088,1381011 +1724235900,Microsoft Windows Live Services Authentication,3845,6189 +1724235900,smpnameres,17202,6401 +1724235900,Telegram,8569,32805 +1724235900,DNS over HTTPS,2324,7762 +1724235900,__unknown,12723065,2041635 +1724235900,Bing,80367,227653 +1724235900,Google APIs,183695,48067 +1724235900,Google,2112635,1669862 +1724235900,MSN,5669,12875 +1724235900,Adobe Software,18803,130858 +1724235900,Apple Store,40078,104671 +1724235900,Chrome,615,418 +1724235900,Google Calendar,16068,49721 +1724235900,HTTP,21196,190180 +1724235900,iTunes,11836,10709 +1724235900,Launchpad,574,430 +1724235900,Microsoft Update,4721,33738 +1724235900,Reddit,48715,74328 +1724235900,Skype,2415,8276 +1724235900,SSL,19766,19726 +1724235900,TeamViewer,866,5289 +1724235900,Advanced Packaging Tool,1788,1623 +1724235900,IMAPS,8365,29074 +1724235900,HTTPS,14334627,149054067 +1724235900,Spotify,4295,182039 +1724235900,APNS,17526,11772 +1724235900,Apple sites,28250,144402 +1724235900,iCloud,119689,139985 +1724235900,Avast,1653,9067 +1724235900,SSL client,4432192,5652083 +1724235900,Amazon Web Services,3199,21430 +1724235900,Ubuntu Update Manager,1214,1193 +1724235900,Microsoft,627958,734404 +1724235900,Mail.Ru,542345,748067 +1724235900,Siri,1928,6366 +1724235900,Yandex,131999,451776 +1724235900,Intel,887,929 +1724235900,Nvidia,36050,44079 +1724235900,Microsoft CryptoAPI,8944,28275 +1724235900,Apple Maps,1925,30770 +1724235900,Google Play,3256,21306 +1724235900,CloudFlare,1960,147582 +1724235900,Exchange Online,11789,26467 +1724235900,Office 365,72094,346337 +1724235900,Microsoft Windows Live Services Authentication,53160,137905 +1724235900,Office Mobile,84957,68042 +1724235900,Telegram,2533997,105087802 +1724235900,Google Inbox,3462,8864 +1724235900,Grammarly,12570,9948 +1724235900,Stripe,34010,12543 +1724235900,DNS over TLS,989,4771 +1724235900,DNS over HTTPS,8238,30828 +1724235900,Lenovo,970,4255 +1724235900,__unknown,150283,138190 +1724235900,HTTPS,87740,134715 +1724235900,__unknown,20190,190447 +1724235900,HTTPS,43711,24645 +1724235900,Google,16747,27314 +1724235900,HTTPS,16747,27314 +1724235900,SSL client,16747,27314 +1724235900,__unknown,2476386,67266754 +1724235900,HTTPS,151102,83762 +1724235900,SSL client,89151,39933 +1724235900,Google Play,89151,39933 +1724235900,__unknown,4874057,17101439 +1724235900,Google,4905,10245 +1724235900,SSL,2173,6714 +1724235900,HTTPS,65116,767587 +1724235900,WhatsApp,26216,588859 +1724235900,Apple sites,1473,6033 +1724235900,SSL client,8551,22992 +1724235900,Google Hangouts,2173,6714 +1724235900,ICMP,34166,1560 +1724235900,DNS over HTTPS,4561,12177 +1724235900,__unknown,3520983,64158609 +1724235900,BitTorrent,496,496 +1724235900,Google APIs,77384,87742 +1724235900,Google Drive,12262,42484 +1724235900,Google,18490,53938 +1724235900,Kaspersky,608,607 +1724235900,DNS,38957,0 +1724235900,Gmail,21229,34204 +1724235900,HTTP,158577,7824890 +1724235900,Launchpad,640,496 +1724235900,Microsoft Update,1283,1015 +1724235900,NTP,1440,1440 +1724235900,SSL,29326,20547 +1724235900,STUN,984,888 +1724235900,YouTube,11351,155884 +1724235900,VKontakte,4775,10635 +1724235900,Advanced Packaging Tool,154327,7818644 +1724235900,HTTPS,550499,1240828 +1724235900,APNS,25265,12865 +1724235900,iCloud,3257,10022 +1724235900,Mozilla,55144,28203 +1724235900,SSL client,337348,678358 +1724235900,Box,1404,5023 +1724235900,Ubuntu Update Manager,153687,7818148 +1724235900,Microsoft,2678,7661 +1724235900,Yandex,87957,186946 +1724235900,Amazon Ads System,2305,8157 +1724235900,Microsoft CryptoAPI,2099,1754 +1724235900,Viber,2052,7925 +1724235900,Google Play,5536,10974 +1724235900,Garmin,3445,8499 +1724235900,Google Hangouts,1533,1392 +1724235900,ICMP,60710,960 +1724235900,Telegram,14012,35967 +1724235900,Google Sign in,1281,5804 +1724235900,Thin Manager TFTP,472,358 +1724235900,DNS over HTTPS,4710,15708 +1724235900,IPv6 No Next Header,196,0 +1724235900,__unknown,3049512,22352376 +1724235900,Apple Update,5380,15352 +1724235900,BitTorrent,153,537 +1724235900,DHCPv6,978,0 +1724235900,Eset,12078,17549 +1724235900,Google APIs,11003,29361 +1724235900,Google,125862,2147464 +1724235900,Kaspersky,1056,1585 +1724235900,QQ,678,343 +1724235900,Android browser,588,399 +1724235900,BitTorrent tracker,153,537 +1724235900,Chrome,565,484 +1724235900,DNS,90862,71964 +1724235900,Gmail,9573,11685 +1724235900,HTTP,251447,7789642 +1724235900,Internet Explorer,1500,1003 +1724235900,iTunes,1786,9599 +1724235900,Launchpad,2560,1984 +1724235900,Microsoft Update,1252,1036 +1724235900,NTP,1350,1260 +1724235900,SSL,6443,11752 +1724235900,STUN,246,222 +1724235900,Odnoklassniki,2609,7494 +1724235900,Advanced Packaging Tool,152421,7664689 +1724235900,IMAPS,2588,7501 +1724235900,HTTPS,960175,5610348 +1724235900,WhatsApp,8000,545557 +1724235900,Apple sites,11502,131042 +1724235900,iCloud,24247,62959 +1724235900,Avast,1528,1564 +1724235900,SSL client,373960,4196875 +1724235900,Box,1404,5023 +1724235900,Ubuntu Update Manager,145656,7658857 +1724235900,Microsoft,1266,15930 +1724235900,Mail.Ru,10895,17168 +1724235900,Siri,32232,1457575 +1724235900,Yandex,99490,182192 +1724235900,Ubuntu,5971,5692 +1724235900,Microsoft CryptoAPI,3666,7445 +1724235900,Microsoft WNS,1266,15930 +1724235900,Apple Maps,12634,65538 +1724235900,Google Play,8496,21522 +1724235900,Rambler,5072,12739 +1724235900,Google Hangouts,797,7092 +1724235900,smpnameres,3390,758 +1724235900,ICMP,1896,0 +1724235900,Telegram,11436,18062 +1724235900,Google Sign in,4536,7999 +1724235900,Edge Chromium,4216,10918 +1724235900,DNS over TLS,10485,46167 +1724235900,DNS over HTTPS,26632,111615 +1724235900,DeepL Translator,5713,10804 +1724235900,Notion,1103,4394 +1724236200,Thin Manager TFTP,672,280 +1724236200,HTTPS,10131,23143 +1724236200,SSL client,10131,23143 +1724236200,Yandex,10131,23143 +1724236200,Google,244936,267703 +1724236200,HTTPS,1547740,368687 +1724236200,SSL client,1547740,368687 +1724236200,Yandex,1302804,100984 +1724236200,DNS over HTTPS,536465,1379927 +1724236200,HTTPS,53623,70049 +1724236200,SSL client,53623,70049 +1724236200,Telegram,53623,70049 +1724236200,HTTPS,52450,108066 +1724236200,SSL client,52450,108066 +1724236200,Yandex,52450,108066 +1724236200,__unknown,5106,10276 +1724236200,__unknown,1544,0 +1724236200,HTTPS,6047,4286 +1724236200,SSL,352856,151844 +1724236200,HTTPS,9015,229567 +1724236200,__unknown,34026,20402 +1724236200,SSL,71893,30581 +1724236200,HTTPS,24324,49771 +1724236200,APNS,54145,21748 +1724236200,SSL client,54145,21748 +1724236200,smpnameres,91244,14473 +1724236200,Telegram,12814,34957 +1724236200,__unknown,177900,206376 +1724236200,Bing,8963,7553 +1724236200,Google APIs,1909,8420 +1724236200,Google,5776,13698 +1724236200,MSN,5286,16675 +1724236200,Microsoft Update,1555,5433 +1724236200,SSL,34954,18784 +1724236200,YouTube,58543,1188796 +1724236200,VKontakte,2036,6439 +1724236200,HTTPS,2318598,62309300 +1724236200,WhatsApp,1887,4571 +1724236200,Spotify,4253,76391 +1724236200,Mozilla,2217,4971 +1724236200,Avast,1254,9926 +1724236200,SSL client,413775,1643729 +1724236200,Box,1464,5083 +1724236200,Microsoft,34208,72276 +1724236200,Mail.Ru,29018,46237 +1724236200,Yandex,44795,67929 +1724236200,Aliexpress,5077,7423 +1724236200,Nvidia,19091,11447 +1724236200,Viber,2047,1349 +1724236200,Google Play,9258,1419 +1724236200,Office 365,39766,64332 +1724236200,smpnameres,23292,13116 +1724236200,Telegram,1205052,57539989 +1724236200,Google Sign in,17820,16817 +1724236200,Xiaomi,119439,11115 +1724236200,DNS over HTTPS,6324,18958 +1724236200,__unknown,1389185,3678873 +1724236200,Dropbox,4805,6631 +1724236200,Google APIs,5905,14840 +1724236200,Google,72054,151514 +1724236200,MSN,14431,73438 +1724236200,Adobe Software,569,126 +1724236200,Dell,1051,4366 +1724236200,Gmail,10468,15272 +1724236200,Google Calendar,17752,57302 +1724236200,HTTP,8280,7711 +1724236200,Internet Explorer,569,126 +1724236200,Launchpad,574,364 +1724236200,Microsoft Update,120546,316896 +1724236200,Skype,2402,8337 +1724236200,SSL,46914,238239 +1724236200,VKontakte,1581,4879 +1724236200,Odnoklassniki,3181,7935 +1724236200,Steam,3142,6549 +1724236200,Advanced Packaging Tool,574,364 +1724236200,IMAPS,13540,26448 +1724236200,HTTPS,4766308,97569469 +1724236200,Spotify,2747,70974 +1724236200,Apple sites,15486,78118 +1724236200,iCloud,44610,89329 +1724236200,Avast,1653,9391 +1724236200,SSL client,1860579,11990809 +1724236200,Microsoft,95993,145579 +1724236200,Mail.Ru,514605,645555 +1724236200,King.com,996,4641 +1724236200,Yandex,193631,8210112 +1724236200,Asus,1710,7208 +1724236200,Nvidia,279553,918181 +1724236200,Google Update,2749,2098 +1724236200,Microsoft CryptoAPI,1130,2481 +1724236200,uTorrent,7467,12947 +1724236200,Apple Maps,4854,11976 +1724236200,Google Play,23051,30966 +1724236200,Rambler,14122,19229 +1724236200,Office 365,35645,85155 +1724236200,Microsoft Windows Live Services Authentication,42952,109905 +1724236200,Google Hangouts,1704,1392 +1724236200,smpnameres,9859,4926 +1724236200,OneDrive,3607,9223 +1724236200,Yandex Market,28830,84516 +1724236200,Sway,3574,7570 +1724236200,Office Mobile,27893,19867 +1724236200,Telegram,1354617,56144819 +1724236200,Sberbank of Russia,74411,740219 +1724236200,Xiaomi,186601,21253 +1724236200,Google Inbox,4833,3385 +1724236200,DNS over HTTPS,11136,50248 +1724236200,_err_4655,2350,2666 +1724236200,__unknown,159434,100448 +1724236200,__unknown,5335994,156696919 +1724236200,Google,48952,38332 +1724236200,HTTPS,53727,49211 +1724236200,SSL client,48952,38332 +1724236200,__unknown,850952,22315140 +1724236200,HTTPS,22249,83258 +1724236200,ICMP,1066,0 +1724236200,__unknown,1945361,63147390 +1724236200,Gmail,18385,12456 +1724236200,SSL,11830,5270 +1724236200,HTTPS,169072,323939 +1724236200,WhatsApp,1908,7934 +1724236200,APNS,11830,5270 +1724236200,SSL client,30215,17726 +1724236200,ICMP,4500,0 +1724236200,DNS over HTTPS,0,1390 +1724236200,__unknown,3054671,20713592 +1724236200,BitTorrent,1240,496 +1724236200,DHCPv6,163,0 +1724236200,Google APIs,70422,93482 +1724236200,Google Drive,12175,134356 +1724236200,Google,69899,552057 +1724236200,Google Translate,3664,7386 +1724236200,DNS,31545,0 +1724236200,Gmail,19491,46833 +1724236200,HTTP,4496,11185 +1724236200,Launchpad,640,496 +1724236200,NetBIOS-dgm,250,0 +1724236200,NTP,990,990 +1724236200,STUN,2296,2072 +1724236200,VKontakte,2435,5428 +1724236200,Odnoklassniki,2102,6712 +1724236200,Advanced Packaging Tool,1227,1026 +1724236200,HTTPS,411283,1856272 +1724236200,Mozilla,6169,4445 +1724236200,SSL client,235324,970359 +1724236200,Box,1404,5023 +1724236200,Microsoft,1287,14800 +1724236200,Ubuntu,587,530 +1724236200,Atlassian,3344,10072 +1724236200,Microsoft CryptoAPI,1908,1564 +1724236200,Microsoft WNS,759,8031 +1724236200,Google Play,17573,54124 +1724236200,ICMP,44418,2040 +1724236200,ICMP for IPv6,70,0 +1724236200,Telegram,5677,9388 +1724236200,Google Sign in,16728,19601 +1724236200,Thin Manager TFTP,276,106 +1724236200,Grammarly,2251,7820 +1724236200,DNS over HTTPS,18185,55469 +1724236200,Google Meet,4891,11303 +1724236200,IPv6 No Next Header,196,0 +1724236200,__unknown,2755418,6904470 +1724236200,Apple Update,1715,5533 +1724236200,BitTorrent,3634,3049 +1724236200,DHCPv6,978,0 +1724236200,Eset,1395,1106 +1724236200,Google APIs,168659,7961744 +1724236200,Google Drive,7465,10277 +1724236200,Google,54163,201522 +1724236200,MSN,578,502 +1724236200,QQ,738,343 +1724236200,Wikipedia,20854,523294 +1724236200,Adobe Software,649,813 +1724236200,Android browser,1180,798 +1724236200,BitTorrent tracker,153,0 +1724236200,Chrome,3093,2347 +1724236200,DNS,72159,66379 +1724236200,Firefox,26182,31525 +1724236200,HTTP,217395,1191248 +1724236200,Internet Explorer,738,343 +1724236200,iTunes,5929,31157 +1724236200,Launchpad,2560,1984 +1724236200,Microsoft Update,1925,1529 +1724236200,NetBIOS-dgm,243,0 +1724236200,NTP,22430,6795 +1724236200,SSL,8432,15394 +1724236200,YouTube,37409,408462 +1724236200,VKontakte,16792,44215 +1724236200,Advanced Packaging Tool,45986,908831 +1724236200,HTTPS,885200,12556693 +1724236200,WhatsApp,2633,9354 +1724236200,Apple sites,16011,46407 +1724236200,iCloud,50242,106531 +1724236200,Mozilla,58555,27243 +1724236200,Avast,764,782 +1724236200,SSL client,533135,11372327 +1724236200,Box,1404,5023 +1724236200,Ubuntu Update Manager,39173,903029 +1724236200,Microsoft,1287,14737 +1724236200,NIH,8371,34136 +1724236200,Mail.Ru,7977,20157 +1724236200,Yandex,48102,1843071 +1724236200,Ubuntu,7229,7107 +1724236200,Microsoft CryptoAPI,10118,13578 +1724236200,Microsoft NCSI,2354,2659 +1724236200,Microsoft WNS,1271,8467 +1724236200,uTorrent,2701,1910 +1724236200,Apple Maps,1541,4031 +1724236200,Google Play,7061,17019 +1724236200,Dropbox Download,963,3980 +1724236200,Microsoft Windows Live Services Authentication,891,4291 +1724236200,Google Hangouts,1652,14126 +1724236200,ICMP,3509,0 +1724236200,Telegram,32567,258911 +1724236200,Edge Chromium,4216,10916 +1724236200,DNS over TLS,13756,54625 +1724236200,DNS over HTTPS,51095,172544 +1724236200,_err_4655,2517,1667 +1724236200,DeepL Translator,2929,2220 +1724236500,HTTPS,15862,19979 +1724236500,HTTPS,50896,253530 +1724236500,HTTPS,14340,36862 +1724236500,SSL client,14340,36862 +1724236500,Yandex,14340,36862 +1724236500,HTTPS,2806644,4017134 +1724236500,SSL client,2684203,3880636 +1724236500,Google Meet,2684203,3880636 +1724236500,__unknown,1222,1874 +1724236500,HTTPS,646643,756309 +1724236500,SSL client,646643,756309 +1724236500,Mail.Ru,646643,756309 +1724236500,HTTPS,115861,315334 +1724236500,SSL client,115861,315334 +1724236500,Yandex,115861,315334 +1724236500,__unknown,963,0 +1724236500,HTTPS,11198,20477 +1724236500,SSL client,11198,20477 +1724236500,Yandex,11198,20477 +1724236500,HTTPS,37627,15186 +1724236500,__unknown,36843,17186 +1724236500,HTTPS,89275,28869 +1724236500,SSL client,5116,7358 +1724236500,Yandex,5116,7358 +1724236500,Reddit,54146,42590 +1724236500,HTTPS,182604,58791 +1724236500,SSL client,179636,57063 +1724236500,Yandex,7430,7409 +1724236500,Dropbox Download,118060,7064 +1724236500,__unknown,51068,53394 +1724236500,Skype,7026,10086 +1724236500,HTTPS,73200,525005 +1724236500,SSL client,33353,62573 +1724236500,Box,929,5975 +1724236500,Yandex,25398,46512 +1724236500,__unknown,341826,403773 +1724236500,BITS,36663,1981156 +1724236500,Google,10104,184218 +1724236500,HTTP,123330,5574719 +1724236500,iTunes,3431,18288 +1724236500,Microsoft Update,123330,5574719 +1724236500,Skype,7568,9321 +1724236500,SSL,30722,13432 +1724236500,YouTube,33945,1053733 +1724236500,VKontakte,22071,68764 +1724236500,Odnoklassniki,4832,14076 +1724236500,Windows Update,85243,3592553 +1724236500,HTTPS,1059244,33270776 +1724236500,Mozilla,1456,4764 +1724236500,Avast,2376,16554 +1724236500,SSL client,434425,2410938 +1724236500,Microsoft,40200,167422 +1724236500,Mail.Ru,37710,25086 +1724236500,Yandex,79146,474118 +1724236500,Nvidia,170314,350051 +1724236500,Microsoft CryptoAPI,1424,1010 +1724236500,Apple Maps,6882,14435 +1724236500,Google Play,14135,10100 +1724236500,smpnameres,20468,15936 +1724236500,Telegram,2367,7966 +1724236500,Google Sign in,4192,8440 +1724236500,DNS over HTTPS,9881,31712 +1724236500,DeepL Translator,2945,6003 +1724236500,__unknown,486098,635071 +1724236500,Apple Update,1775,5148 +1724236500,Bing,17291,73875 +1724236500,Dropbox,1130850,277537 +1724236500,Google APIs,7818,27192 +1724236500,Google,28683,1285119 +1724236500,MSN,8773,16938 +1724236500,DNS,201,132 +1724236500,Gmail,13239,22847 +1724236500,Google Calendar,13097,43418 +1724236500,HTTP,4344,13150 +1724236500,iTunes,2711,20082 +1724236500,Launchpad,574,496 +1724236500,SSL,14574,33948 +1724236500,TeamViewer,1174,7119 +1724236500,VKontakte,7088,10924 +1724236500,Advanced Packaging Tool,574,496 +1724236500,IMAPS,19427,45600 +1724236500,HTTPS,9368736,215451245 +1724236500,Spotify,5560,71933 +1724236500,APNS,10789,5530 +1724236500,Apple sites,24269,1107723 +1724236500,iCloud,59694,171147 +1724236500,Avast,4092,12551 +1724236500,SSL client,7893695,207195562 +1724236500,Amazon Web Services,5495,25438 +1724236500,Microsoft,458669,494301 +1724236500,Mail.Ru,890811,2514071 +1724236500,Yandex,574159,10373055 +1724236500,Aliexpress,14526,14471 +1724236500,Intel,2327,12994 +1724236500,Nvidia,1398599,1792416 +1724236500,Microsoft CryptoAPI,1662,3926 +1724236500,Microsoft WNS,573,7965 +1724236500,Apple Maps,9815,44356 +1724236500,Google Play,10888,28308 +1724236500,AdGear,2189,7976 +1724236500,Rambler,19059,25970 +1724236500,Office 365,40828,125540 +1724236500,Sharepoint Online,2805,5078 +1724236500,Dropbox Download,2622925,187744230 +1724236500,Microsoft Windows Live Services Authentication,66177,161047 +1724236500,Google Hangouts,6240,40548 +1724236500,smpnameres,18579,51003 +1724236500,Weborama,9775,21314 +1724236500,OneDrive,11244,27912 +1724236500,Office Mobile,42234,64570 +1724236500,Mail.ru Attachment,4076,34500 +1724236500,Telegram,35212,242934 +1724236500,Xiaomi,308175,17478 +1724236500,Google Inbox,48659,341399 +1724236500,Azure cloud portal,5347,10447 +1724236500,Stripe,8443,147380 +1724236500,DNS over TLS,989,4770 +1724236500,DNS over HTTPS,10264,37325 +1724236500,__unknown,205054,148327 +1724236500,HTTPS,52080,66025 +1724236500,SSL client,52080,66025 +1724236500,Telegram,52080,66025 +1724236500,__unknown,60,0 +1724236500,HTTPS,70093,90847 +1724236500,SSL client,52249,67238 +1724236500,Telegram,52249,67238 +1724236500,Google,30335,37091 +1724236500,HTTPS,30335,37091 +1724236500,SSL client,30335,37091 +1724236500,__unknown,173800,508761 +1724236500,SSL,15927,11264 +1724236500,APNS,15927,11264 +1724236500,SSL client,15927,11264 +1724236500,ICMP,9094,0 +1724236500,__unknown,25816,51626 +1724236500,Google APIs,10648,30082 +1724236500,SSL,4370,16679 +1724236500,HTTPS,80510,46393 +1724236500,SSL client,15018,46761 +1724236500,Google Hangouts,4370,16679 +1724236500,CoAP,2842,2088 +1724236500,__unknown,80275,437842 +1724236500,Google,27318,27543 +1724236500,SSL,15566,6847 +1724236500,HTTPS,90705,451019 +1724236500,APNS,14064,5455 +1724236500,SSL client,42884,34390 +1724236500,Google Hangouts,1502,1392 +1724236500,ICMP,984,0 +1724236500,__unknown,5239098,63811937 +1724236500,BitTorrent,2004,1689 +1724236500,DHCPv6,163,0 +1724236500,Google APIs,17369,49860 +1724236500,Google,201107,369608 +1724236500,DNS,29560,0 +1724236500,Firefox,5124,12619 +1724236500,Gmail,9074,10694 +1724236500,HTTP,8560,18037 +1724236500,iTunes,3219,98142 +1724236500,Launchpad,640,496 +1724236500,Microsoft Update,646,506 +1724236500,NTP,17510,4668 +1724236500,SSL,1481,1392 +1724236500,STUN,984,888 +1724236500,VKontakte,21966,333042 +1724236500,Odnoklassniki,2497,7725 +1724236500,Steam,2220,5806 +1724236500,Advanced Packaging Tool,640,496 +1724236500,HTTPS,459352,1523853 +1724236500,Mozilla,7405,7911 +1724236500,SSL client,277160,931108 +1724236500,Box,1464,5023 +1724236500,CloudFront,1729,7656 +1724236500,VeriSign,566,2141 +1724236500,Yandex,2329,17498 +1724236500,Microsoft CryptoAPI,2028,3384 +1724236500,Google Hangouts,1481,1392 +1724236500,ICMP,9274,0 +1724236500,Telegram,9157,37151 +1724236500,Google Sign in,1247,5738 +1724236500,Thin Manager TFTP,196,252 +1724236500,DNS over HTTPS,10771,33230 +1724236500,IPv6 No Next Header,98,0 +1724236500,__unknown,5958684,31163195 +1724236500,Apple Update,3506,9851 +1724236500,Bing,10124,18017 +1724236500,BitTorrent,1541,1749 +1724236500,Google APIs,70056,237574 +1724236500,Google,59743,127136 +1724236500,Google Translate,3664,7387 +1724236500,QQ,678,343 +1724236500,BitTorrent tracker,153,198 +1724236500,Chrome,3076,3957 +1724236500,DNS,70626,60931 +1724236500,Gmail,13626,17699 +1724236500,HTTP,140049,1034781 +1724236500,Internet Explorer,678,343 +1724236500,Launchpad,2494,1984 +1724236500,Microsoft Update,1371,1585 +1724236500,NTP,1710,1710 +1724236500,SSL,3197,628 +1724236500,STUN,246,222 +1724236500,YouTube,35103,64744 +1724236500,TeamViewer,789,5790 +1724236500,VKontakte,27791,682767 +1724236500,Odnoklassniki,1851,1189 +1724236500,Advanced Packaging Tool,54303,948454 +1724236500,HTTPS,2217170,107426315 +1724236500,Apple sites,1756,8807 +1724236500,iCloud,10880,47471 +1724236500,Avast,764,782 +1724236500,SSL client,313873,2577357 +1724236500,Box,1404,5023 +1724236500,Ubuntu Update Manager,47652,942724 +1724236500,Microsoft,837,10993 +1724236500,VeriSign,566,2141 +1724236500,Mail.Ru,10652,21397 +1724236500,Yandex,42972,1267410 +1724236500,Ubuntu,5857,5578 +1724236500,Microsoft CryptoAPI,5232,6572 +1724236500,Microsoft NCSI,351,487 +1724236500,Microsoft WNS,837,10993 +1724236500,Apple Maps,3569,15924 +1724236500,Rambler,937,5366 +1724236500,ICMP,27450,0 +1724236500,Telegram,48490,734846 +1724236500,Thin Manager TFTP,276,106 +1724236500,Edge Chromium,2108,5458 +1724236500,Grammarly,1883,7404 +1724236500,DNS over TLS,2290,9538 +1724236500,DNS over HTTPS,39901,134685 +1724236500,DeepL Translator,3452,7549 +1724236500,IPv6 No Next Header,98,0 +1724236799,Thin Manager TFTP,108,108 +1724236799,HTTPS,30992,72066 +1724236799,SSL client,30992,72066 +1724236799,Yandex,30992,72066 +1724236799,HTTPS,30982,34285 +1724236799,SSL client,30982,34285 +1724236799,Sharepoint Online,30982,34285 +1724236799,HTTPS,13230,33793 +1724236799,SSL client,13230,33793 +1724236799,Yandex,13230,33793 +1724236799,HTTPS,138811,322879 +1724236799,SSL client,138811,322879 +1724236799,Yandex,138811,322879 +1724236799,DNS over HTTPS,27359,69687 +1724236799,Google,98953,85195 +1724236799,HTTPS,98953,85195 +1724236799,SSL client,98953,85195 +1724236799,DNS over HTTPS,89450,202494 +1724236799,HTTPS,204014,73191 +1724236799,HTTPS,62490,914925 +1724236799,SSL client,28965,899584 +1724236799,Yandex,28965,899584 +1724236799,HTTPS,15522,45765 +1724236799,SSL client,11696,41457 +1724236799,Mail.Ru,11696,41457 +1724236799,AnyDesk,3826,4308 +1724236799,__unknown,322283,451661 +1724236799,HTTPS,209886,126917 +1724236799,SSL client,56309,58449 +1724236799,Microsoft,23357,16481 +1724236799,Yandex,7381,10248 +1724236799,Xiaomi,25571,31720 +1724236799,__unknown,137933,149657 +1724236799,HTTPS,584994,94605 +1724236799,SSL client,37423,12574 +1724236799,Google Play,37423,12574 +1724236799,__unknown,9319,56782 +1724236799,HTTPS,305577,270003 +1724236799,SSL client,305577,270003 +1724236799,Mail.Ru,235492,258764 +1724236799,Yandex,70085,11239 +1724236799,DNS over HTTPS,5504,13516 +1724236799,__unknown,102671,63488 +1724236799,Dropbox,5755,222495 +1724236799,Google APIs,11513,166605 +1724236799,Google,3153,9119 +1724236799,MSN,1363,10519 +1724236799,Android browser,2332,418 +1724236799,Gmail,9906,5902 +1724236799,HTTP,33637,164472 +1724236799,Microsoft Update,1232,998 +1724236799,Skype,2846,7960 +1724236799,SSL,65367,30876 +1724236799,YouTube,1273,6142 +1724236799,VKontakte,8076,34244 +1724236799,HTTPS,2138727,26940755 +1724236799,Apple sites,4031,15216 +1724236799,iCloud,3792,9391 +1724236799,Mozilla,2217,5191 +1724236799,Avast,1254,9462 +1724236799,SSL client,1336312,14204502 +1724236799,Microsoft,47768,64937 +1724236799,Mail.Ru,280453,1541643 +1724236799,Yandex,150713,3410985 +1724236799,Nvidia,282396,3089874 +1724236799,Microsoft CryptoAPI,3875,7008 +1724236799,Google Play,3062,9758 +1724236799,Office 365,128768,170615 +1724236799,smpnameres,10628,6478 +1724236799,Telegram,23446,765432 +1724236799,ResearchGate,373026,4802361 +1724236799,DNS over HTTPS,1608,0 +1724236799,DeepL Translator,1434,6035 +1724236799,__unknown,771554,962905 +1724236799,Apple Update,117390,5426974 +1724236799,Bing,5886,20217 +1724236799,Dropbox,3215,2281 +1724236799,Google APIs,11595,238815 +1724236799,Google,117685,363166 +1724236799,MSN,21823,77227 +1724236799,Gmail,372826,1630619 +1724236799,HTTP,3453,3581 +1724236799,iTunes,21927,524126 +1724236799,Reddit,20637,105302 +1724236799,Skype,22068,181662 +1724236799,SSL,32029,14990 +1724236799,Web Of Trust,4095,7469 +1724236799,VKontakte,2239,4987 +1724236799,Advanced Packaging Tool,1349,1286 +1724236799,IMAPS,18692,52372 +1724236799,HTTPS,33778403,29178313 +1724236799,Pinterest,10784,49014 +1724236799,Spotify,4483,134877 +1724236799,APNS,32029,14990 +1724236799,Apple sites,10261,39954 +1724236799,iCloud,111616,1422271 +1724236799,Mozilla,2590,6213 +1724236799,Avast,1254,9382 +1724236799,SSL client,33242099,25089408 +1724236799,Ubuntu Update Manager,1349,1286 +1724236799,Microsoft,192459,314564 +1724236799,VeriSign,1071,976 +1724236799,Mail.Ru,610067,785072 +1724236799,King.com,976,4643 +1724236799,Siri,3208,6691 +1724236799,Yandex,368389,10202190 +1724236799,Asus,1379,8287 +1724236799,Nvidia,932513,2712044 +1724236799,Microsoft CryptoAPI,2104,2295 +1724236799,Apple Maps,15658,412643 +1724236799,Rambler,11499,13464 +1724236799,Apple Music,7190,11616 +1724236799,Exchange Online,4347,21047 +1724236799,Office 365,34924,326371 +1724236799,Microsoft Windows Live Services Authentication,41172,109078 +1724236799,Office Mobile,57031,39793 +1724236799,Telegram,30058840,371903 +1724236799,Google Inbox,5070,18193 +1724236799,Grammarly,12591,10032 +1724236799,Stripe,35336,39970 +1724236799,Microsoft Teams,2975,7213 +1724236799,DNS over HTTPS,16987,62990 +1724236799,__unknown,10123,11454 +1724236799,__unknown,477434,739378 +1724236799,HTTPS,53591,69893 +1724236799,SSL client,53591,69893 +1724236799,Telegram,53591,69893 +1724236799,__unknown,1367933,254515 +1724236799,HTTP,20939,15372 +1724236799,HTTPS,56810,48382 +1724236799,__unknown,22811,287510 +1724236799,HTTPS,38241,32550 +1724236799,SSL client,8605,14585 +1724236799,Google Play,8605,14585 +1724236799,__unknown,3921523,785817 +1724236799,Google,12654,14925 +1724236799,HTTPS,130902,106090 +1724236799,SSL client,117748,77131 +1724236799,Google Play,97559,42358 +1724236799,ICMP,12240,12300 +1724236799,DNS over HTTPS,7535,19848 +1724236799,__unknown,2101620,7665774 +1724236799,BitTorrent,496,0 +1724236799,Google APIs,39334,94895 +1724236799,Google Drive,31130,11384 +1724236799,Google,139604,988406 +1724236799,DNS,28661,0 +1724236799,Firefox,1651,1854 +1724236799,Gmail,27050,66431 +1724236799,HTTP,5955,5348 +1724236799,Launchpad,574,206 +1724236799,NetBIOS-dgm,250,0 +1724236799,NTP,21725,9035 +1724236799,STUN,2652,1840 +1724236799,VKontakte,4686,11096 +1724236799,Odnoklassniki,6539,17169 +1724236799,Advanced Packaging Tool,574,206 +1724236799,HTTPS,1178588,16151143 +1724236799,Mozilla,5144,10818 +1724236799,SSL client,321336,1476952 +1724236799,Box,1404,5023 +1724236799,Mail.Ru,9995,11959 +1724236799,Yandex,44066,247563 +1724236799,Microsoft CryptoAPI,3730,3288 +1724236799,ICMP,24337,0 +1724236799,Google Sign in,12384,12208 +1724236799,DNS over HTTPS,45921,130421 +1724236799,IPv6 No Next Header,98,0 +1724236799,__unknown,4808058,105308846 +1724236799,Apple Update,75919,2522267 +1724236799,Bing,2212,6124 +1724236799,BITS,7331,183080 +1724236799,BitTorrent,1894,1281 +1724236799,DHCPv6,1141,0 +1724236799,Google APIs,40503,454371 +1724236799,Google,22741,76807 +1724236799,QQ,678,343 +1724236799,Android browser,593,484 +1724236799,Chrome,2595,5341 +1724236799,DNS,99895,83319 +1724236799,Firefox,822,1129 +1724236799,Gmail,9972,25512 +1724236799,HTTP,205002,8613329 +1724236799,Internet Explorer,1320,1003 +1724236799,Launchpad,2560,1984 +1724236799,NTP,13560,3810 +1724236799,SSL,19716,17684 +1724236799,STUN,372,0 +1724236799,VKontakte,2293,4144 +1724236799,Odnoklassniki,1788,1188 +1724236799,Advanced Packaging Tool,35243,263130 +1724236799,IMAPS,9972,25512 +1724236799,HTTPS,6468342,471168272 +1724236799,WhatsApp,1930,7999 +1724236799,APNS,16977,8569 +1724236799,Apple sites,3444,10363 +1724236799,iCloud,22771,63374 +1724236799,Avast,1146,1173 +1724236799,SSL client,410964,3722223 +1724236799,Box,1404,5023 +1724236799,GoDaddy,799,2929 +1724236799,Ubuntu Update Manager,29718,258850 +1724236799,Microsoft,9821,194482 +1724236799,Mail.Ru,18684,26928 +1724236799,Yandex,157511,440891 +1724236799,Ubuntu,4240,3675 +1724236799,Nvidia,4446,8060 +1724236799,Microsoft CryptoAPI,71412,8023322 +1724236799,Microsoft NCSI,2135,2361 +1724236799,Microsoft WNS,633,7965 +1724236799,Apple Maps,1739,4246 +1724236799,Scorecard Research,3030,7880 +1724236799,Google Play,9058,18054 +1724236799,Rambler,4948,12903 +1724236799,ICMP,4445,0 +1724236799,Telegram,36052,201777 +1724236799,Thin Manager TFTP,276,106 +1724236799,Edge Chromium,5390,14866 +1724236799,DNS over TLS,2356,9539 +1724236799,DNS over HTTPS,19230,63448 +1724236799,DeepL Translator,6489,9795 +1724236799,Notion,1342,4392 +1724237100,HTTPS,138551,196988 +1724237100,SSL client,138551,196988 +1724237100,Telegram,138551,196988 +1724237100,HTTPS,31393,28979 +1724237100,SSL client,31393,28979 +1724237100,Yandex,31393,28979 +1724237100,__unknown,21828,18318 +1724237100,HTTPS,4197,6502 +1724237100,SSL client,4197,6502 +1724237100,Sharepoint Online,4197,6502 +1724237100,HTTPS,122449,164310 +1724237100,HTTPS,9704,10470 +1724237100,SSL client,5744,8782 +1724237100,Yandex,5744,8782 +1724237100,__unknown,145636,156764 +1724237100,HTTPS,72192,81896 +1724237100,smpnameres,349079,146803 +1724237100,DNS over HTTPS,72650,179643 +1724237100,SSL,16046,8800 +1724237100,HTTPS,1702868,1562580 +1724237100,SSL client,768656,1189136 +1724237100,Yandex,607114,1114232 +1724237100,Google Play,161542,74904 +1724237100,__unknown,74702,170471 +1724237100,Apple Update,129631,2935000 +1724237100,Bing,3991,37764 +1724237100,Google APIs,7604,60927 +1724237100,Google,19790,31402 +1724237100,HTTP,527,530 +1724237100,iTunes,4695,37919 +1724237100,SSL,56876,28685 +1724237100,TeamViewer,1514,8838 +1724237100,VKontakte,5709,26772 +1724237100,Advanced Packaging Tool,527,530 +1724237100,HTTPS,4276402,17184829 +1724237100,Pinterest,89438,9522742 +1724237100,APNS,45425,20666 +1724237100,Apple sites,3520,14897 +1724237100,iCloud,7927,12771 +1724237100,Mozilla,2649,6856 +1724237100,Avast,2606,17399 +1724237100,SSL client,1140945,14755554 +1724237100,Box,1344,5023 +1724237100,Microsoft,15732,52252 +1724237100,Mail.Ru,178529,1094237 +1724237100,Yandex,420109,294815 +1724237100,GitHub,2784,5808 +1724237100,Ubuntu,527,530 +1724237100,Nvidia,154992,509495 +1724237100,Apple Maps,2605,6447 +1724237100,Rambler,4880,6724 +1724237100,Office 365,25628,34597 +1724237100,smpnameres,11374,5959 +1724237100,Telegram,6306,9853 +1724237100,AnyDesk,2848,2867 +1724237100,Stripe,7971,6704 +1724237100,Google Meet,4477,11946 +1724237100,__unknown,977538,2168166 +1724237100,Bing,28325,489329 +1724237100,Google APIs,24556,299027 +1724237100,Google Drive,41741,623082 +1724237100,Google,138181,160120 +1724237100,MSN,24520,61806 +1724237100,Android browser,590,333 +1724237100,Gmail,57796,147247 +1724237100,HTTP,469467,22711324 +1724237100,iTunes,2567,23544 +1724237100,Launchpad,640,430 +1724237100,Microsoft Update,3101,7230 +1724237100,Safari,21073,137951 +1724237100,Skype,9010,29668 +1724237100,SSL,12207,10024 +1724237100,VKontakte,3656,13353 +1724237100,Advanced Packaging Tool,2441,2093 +1724237100,IMAPS,12421,34803 +1724237100,HTTPS,6621432,187810285 +1724237100,WhatsApp,3861,12490 +1724237100,APNS,1239,5619 +1724237100,Apple sites,4305,20096 +1724237100,iCloud,29363,125244 +1724237100,Mozilla,35224,18202 +1724237100,Opera,20132,6132 +1724237100,SSL client,2521644,10086240 +1724237100,Ad Nexus,9854,5287 +1724237100,Amazon Web Services,3139,21430 +1724237100,Ubuntu Update Manager,1274,1193 +1724237100,Microsoft,710755,24425764 +1724237100,Mail.Ru,519648,676805 +1724237100,Yandex,217549,1181675 +1724237100,GitHub,8845,8239 +1724237100,Ubuntu,527,470 +1724237100,Intel,6387,38024 +1724237100,Nvidia,741070,2134774 +1724237100,Microsoft CryptoAPI,1594,4829 +1724237100,Viber,2047,1349 +1724237100,Apple Maps,6754,18090 +1724237100,Pocket,3480,3372 +1724237100,Rambler,19059,25744 +1724237100,Exchange Online,72037,66306 +1724237100,Office 365,27754,89430 +1724237100,Sharepoint Online,5495,110789 +1724237100,Microsoft Windows Live Services Authentication,114146,274401 +1724237100,Google Hangouts,1476,1392 +1724237100,smpnameres,9303,7421 +1724237100,Weborama,1876,5482 +1724237100,Gmail attachment,8385,75554 +1724237100,Office Mobile,8706,7936 +1724237100,Telegram,34248,272006 +1724237100,Google Inbox,18320,64843 +1724237100,MKRU,25139,1367986 +1724237100,Grammarly,15083,16388 +1724237100,Stripe,17534,22293 +1724237100,DNS over HTTPS,52619,141819 +1724237100,_err_4655,3645,4130 +1724237100,Lenovo,3695,4733 +1724237100,HTTPS,60070,29356 +1724237100,__unknown,324,198 +1724237100,__unknown,21100,22019 +1724237100,ICMP,2624,0 +1724237100,__unknown,47647,692800 +1724237100,__unknown,35170,1933717 +1724237100,Gmail,60322,92832 +1724237100,HTTPS,63634,98128 +1724237100,SSL client,60322,92832 +1724237100,__unknown,374631,17038284 +1724237100,HTTP,721,474 +1724237100,SSL,20992,9409 +1724237100,VKontakte,38863,23179 +1724237100,HTTPS,89522,124143 +1724237100,APNS,54641,18875 +1724237100,SSL client,93504,42054 +1724237100,ICMP,1784,0 +1724237100,CoAP,1960,1584 +1724237100,__unknown,4896281,8955851 +1724237100,BitTorrent,310,496 +1724237100,Google APIs,39011,65787 +1724237100,Google,225500,146743 +1724237100,DNS,39918,0 +1724237100,Gmail,6085,6411 +1724237100,HTTP,17037,1002479 +1724237100,Launchpad,640,496 +1724237100,NetBIOS-dgm,243,0 +1724237100,NTP,13560,3720 +1724237100,SSL,1709,8028 +1724237100,STUN,37398,7962 +1724237100,VKontakte,12388,18243 +1724237100,Odnoklassniki,8229,23498 +1724237100,Advanced Packaging Tool,6294,125752 +1724237100,HTTPS,1131563,50615828 +1724237100,Mozilla,2369,4844 +1724237100,SSL client,331135,390986 +1724237100,Box,1404,5023 +1724237100,Ubuntu Update Manager,5654,125256 +1724237100,Microsoft,7536,873568 +1724237100,Mail.Ru,2617,5840 +1724237100,Yandex,18545,31177 +1724237100,Microsoft CryptoAPI,2762,2495 +1724237100,Google Play,3748,8187 +1724237100,Google Hangouts,1709,8028 +1724237100,ICMP,9102,1500 +1724237100,Firebase Crashlytics,2050,6775 +1724237100,Telegram,8368,58706 +1724237100,Thin Manager TFTP,196,252 +1724237100,DNS over HTTPS,23415,69417 +1724237100,IPv6 No Next Header,98,0 +1724237100,__unknown,2170811,12541506 +1724237100,Bing,2273,6321 +1724237100,BitTorrent,153,0 +1724237100,DHCPv6,978,0 +1724237100,Eset,3403,4056 +1724237100,Google APIs,8696,27814 +1724237100,Google,38182,99748 +1724237100,QQ,678,343 +1724237100,Android browser,593,484 +1724237100,BitTorrent tracker,153,0 +1724237100,Chrome,6253,4790 +1724237100,DNS,88994,76067 +1724237100,Firefox,5672,12911 +1724237100,HTTP,138398,2329335 +1724237100,Internet Explorer,678,343 +1724237100,iTunes,1510,9375 +1724237100,Launchpad,1206,992 +1724237100,Microsoft Update,981,887 +1724237100,NTP,1350,1350 +1724237100,STUN,1230,1110 +1724237100,YouTube,12571,2252 +1724237100,VKontakte,2843,24589 +1724237100,Steam,638,2642 +1724237100,Advanced Packaging Tool,40920,519243 +1724237100,HTTPS,6755426,513500936 +1724237100,Apple sites,1689,17287 +1724237100,iCloud,21452,52859 +1724237100,Mozilla,4431,3396 +1724237100,Avast,1146,1173 +1724237100,SSL client,346093,2587437 +1724237100,GoDaddy,2868,9519 +1724237100,Amazon Web Services,2677,14153 +1724237100,Ubuntu Update Manager,35461,514433 +1724237100,Microsoft,6749,24101 +1724237100,Siri,29108,8739 +1724237100,Yandex,138013,2166027 +1724237100,Ubuntu,5528,5189 +1724237100,Microsoft CryptoAPI,8416,22906 +1724237100,Microsoft NCSI,397,479 +1724237100,Microsoft WNS,573,7965 +1724237100,Apple Maps,25109,82697 +1724237100,Pocket,3480,3306 +1724237100,Google Play,59199,88443 +1724237100,Office 365,568,24350 +1724237100,ICMP,3606,0 +1724237100,Weborama,3165,7712 +1724237100,Blizzard,16721,1652899 +1724237100,Office Mobile,398,7831 +1724237100,Telegram,145868,4957298 +1724237100,Edge Chromium,5163,16779 +1724237100,DNS over TLS,11252,47696 +1724237100,DNS over HTTPS,27184,101446 +1724237100,DeepL Translator,6609,9756 +1724237400,Thin Manager TFTP,672,280 +1724237400,HTTP,1485157,1119822 +1724237400,CoAP,247509,175638 +1724237400,HTTPS,15584,25610 +1724237400,SSL client,15584,25610 +1724237400,Yandex,15584,25610 +1724237400,HTTPS,440015,915110 +1724237400,SSL client,440015,915110 +1724237400,Mail.Ru,440015,915110 +1724237400,HTTPS,6080,14585 +1724237400,CoAP,22361,16572 +1724237400,HTTPS,11249,29951 +1724237400,SSL client,3505,12590 +1724237400,Yandex,3505,12590 +1724237400,HTTPS,3526,3918 +1724237400,__unknown,9369,5413 +1724237400,HTTPS,80583,19335 +1724237400,__unknown,152558,22101 +1724237400,HTTPS,1909274,502999 +1724237400,SSL client,472124,302193 +1724237400,Yandex,316080,292274 +1724237400,Dropbox Download,156044,9919 +1724237400,__unknown,2526,846 +1724237400,Google APIs,4547,13668 +1724237400,Google,42174,36223 +1724237400,HTTPS,246147,368734 +1724237400,SSL client,192807,175947 +1724237400,Mail.Ru,65658,23856 +1724237400,Yandex,55118,49624 +1724237400,Google Play,2755,12104 +1724237400,DNS over HTTPS,22555,40472 +1724237400,__unknown,202863,288113 +1724237400,Bing,3564,6482 +1724237400,Dropbox,3250,2538 +1724237400,Google APIs,18717,25666 +1724237400,Google,200086,4217298 +1724237400,Firefox,6225,7657 +1724237400,HTTP,7234,9058 +1724237400,Skype,5021,8410 +1724237400,SSL,52783,47207 +1724237400,VKontakte,61556,66599 +1724237400,HTTPS,2498239,16699707 +1724237400,iCloud,14807,14007 +1724237400,SSL client,2303555,15854362 +1724237400,Microsoft,26431,28641 +1724237400,VeriSign,1009,1401 +1724237400,Mail.Ru,58424,70583 +1724237400,Yandex,59715,39336 +1724237400,Nvidia,535231,11033307 +1724237400,Microsoft CryptoAPI,1009,1401 +1724237400,Google Play,1288050,197517 +1724237400,Exchange Online,10948,13455 +1724237400,Office 365,3924,14879 +1724237400,Sharepoint Online,3973,102050 +1724237400,smpnameres,23745,6035 +1724237400,Telegram,2247,1783 +1724237400,AnyDesk,2716,2933 +1724237400,Grammarly,4986,7972 +1724237400,Stripe,4872,5622 +1724237400,__unknown,342824,3354493 +1724237400,Apple Update,43011,901861 +1724237400,Bing,25248,120073 +1724237400,Dropbox,21338,43133 +1724237400,Google APIs,46105,26923 +1724237400,Google,39294,2089843 +1724237400,MSN,3443,9445 +1724237400,Adobe Software,16011,6018 +1724237400,Gmail,13851,28426 +1724237400,HTTP,106404,5190419 +1724237400,iTunes,4237,49066 +1724237400,Microsoft Update,121126,299445 +1724237400,SSL,2863,2652 +1724237400,VKontakte,4065,9471 +1724237400,Advanced Packaging Tool,2897,3054 +1724237400,IMAPS,11326,37169 +1724237400,HTTPS,4631472,57771655 +1724237400,Apple sites,20072,71582 +1724237400,Mozilla,6738,10133 +1724237400,Avast,1886,6016 +1724237400,SSL client,3579147,27249631 +1724237400,Amazon Web Services,3199,21490 +1724237400,Ubuntu Update Manager,1214,1428 +1724237400,Microsoft,599815,5554057 +1724237400,Mail.Ru,602296,683856 +1724237400,King.com,2028,9402 +1724237400,Yandex,338101,7297622 +1724237400,Ubuntu,1683,1626 +1724237400,Intel,453,7378 +1724237400,Asus,1787,8805 +1724237400,Nvidia,805820,3034660 +1724237400,Microsoft CryptoAPI,1608,3204 +1724237400,Apple Maps,4767,14591 +1724237400,Rambler,14185,19329 +1724237400,Exchange Online,11312,21792 +1724237400,Office 365,78414,159521 +1724237400,Sharepoint Online,1310,7408 +1724237400,Microsoft Windows Live Services Authentication,80657,215198 +1724237400,Google Hangouts,2863,2652 +1724237400,Yandex Music,500,4904 +1724237400,Office Mobile,45884,38921 +1724237400,Mail.ru Attachment,27825,1133991 +1724237400,Telegram,408406,14161517 +1724237400,GISMETEO,1879,2804 +1724237400,Xiaomi,192397,13782 +1724237400,Google Inbox,4783,5073 +1724237400,Edge Chromium,401,1238 +1724237400,Microsoft Teams,4286,69106 +1724237400,DNS over HTTPS,242442,544182 +1724237400,Firefox Update,299861,9754022 +1724237400,DNS over HTTPS,339384,770115 +1724237400,__unknown,858549,222143 +1724237400,HTTPS,8093,9846 +1724237400,SSL client,8093,9846 +1724237400,Yandex,8093,9846 +1724237400,__unknown,17460,18185 +1724237400,HTTPS,34427,50786 +1724237400,SSL client,586,4834 +1724237400,Exchange Online,586,4834 +1724237400,__unknown,167453,43705 +1724237400,__unknown,500458,1483650 +1724237400,HTTPS,74312,432587 +1724237400,SSL client,44461,9405 +1724237400,Dropbox Download,44461,9405 +1724237400,DNS over HTTPS,0,1251 +1724237400,__unknown,134488,5551285 +1724237400,Google,45723,52209 +1724237400,HTTPS,145633,750286 +1724237400,Apple sites,8297,190450 +1724237400,SSL client,54020,242659 +1724237400,ICMP,820,0 +1724237400,__unknown,2503319,23959714 +1724237400,BITS,3443,158561 +1724237400,BitTorrent,1088,1990 +1724237400,DHCPv6,163,0 +1724237400,Google APIs,74799,74302 +1724237400,Google,346436,2192123 +1724237400,Google Translate,4186,7965 +1724237400,MSN,2385,6242 +1724237400,Battle.net,2039,5739 +1724237400,DNS,36893,0 +1724237400,Gmail,18575,75774 +1724237400,Google Analytics,9062,27228 +1724237400,HTTP,46528,4363116 +1724237400,Launchpad,640,430 +1724237400,Microsoft Update,646,506 +1724237400,NTP,1980,1890 +1724237400,SSL,45470,12163 +1724237400,STUN,984,888 +1724237400,VKontakte,5465,11693 +1724237400,Odnoklassniki,4405,14469 +1724237400,Advanced Packaging Tool,640,430 +1724237400,HTTPS,930046,22076979 +1724237400,APNS,43195,7626 +1724237400,Apple sites,853,5871 +1724237400,SSL client,542938,2620761 +1724237400,Microsoft,3443,158561 +1724237400,Mail.Ru,1360,5013 +1724237400,Yandex,19701,160892 +1724237400,Microsoft CryptoAPI,3320,5614 +1724237400,Apple Maps,4447,40356 +1724237400,Google Play,4012,8444 +1724237400,Google Hangouts,2275,4537 +1724237400,ICMP,36553,0 +1724237400,Blizzard,41251,4204583 +1724237400,Firebase Crashlytics,2064,6771 +1724237400,Telegram,429,229 +1724237400,Thin Manager TFTP,276,106 +1724237400,DNS over HTTPS,18446,55654 +1724237400,IPv6 No Next Header,98,0 +1724237400,CoAP,588,432 +1724237400,__unknown,4565562,80038319 +1724237400,Apple Update,2083,5341 +1724237400,BitTorrent,1107,967 +1724237400,Eset,888,12730 +1724237400,Google APIs,15191,53310 +1724237400,Google,116623,864466 +1724237400,Google Translate,1857,10712 +1724237400,QQ,738,343 +1724237400,Adobe Software,3205,5471 +1724237400,Android browser,759,1248 +1724237400,BitTorrent tracker,1107,967 +1724237400,Chrome,1064,968 +1724237400,DNS,75614,68315 +1724237400,Firefox,3006,3578 +1724237400,Gmail,6589,9889 +1724237400,HTTP,615081,26995480 +1724237400,Internet Explorer,738,343 +1724237400,iTunes,4612,38744 +1724237400,Launchpad,1920,1488 +1724237400,Microsoft Update,61949,1067000 +1724237400,NetBIOS-dgm,250,0 +1724237400,NTP,13470,3720 +1724237400,SSL,21203,40014 +1724237400,STUN,186,222 +1724237400,YouTube,9512,3976 +1724237400,VKontakte,17809,29415 +1724237400,Advanced Packaging Tool,41706,422909 +1724237400,Windows Update,57756,1041616 +1724237400,HTTPS,6120863,386284141 +1724237400,WhatsApp,2250,8947 +1724237400,APNS,15746,7933 +1724237400,Apple sites,8047,43063 +1724237400,iCloud,17917,34996 +1724237400,Mozilla,4498,2599 +1724237400,Avast,382,391 +1724237400,SSL client,1021563,18038754 +1724237400,Samsung,759,1248 +1724237400,Amazon Web Services,829,6138 +1724237400,Ubuntu Update Manager,35581,417639 +1724237400,Microsoft,252685,19614 +1724237400,Mail.Ru,67857,46990 +1724237400,Yandex,102943,1247548 +1724237400,Ubuntu,5905,5622 +1724237400,Game Center,2364,18488 +1724237400,Nvidia,13220,28510 +1724237400,Microsoft CryptoAPI,10522,56401 +1724237400,Apple Maps,6126,20368 +1724237400,Google Play,2170,8868 +1724237400,CloudFlare,3577,11811 +1724237400,Google Hangouts,3935,24126 +1724237400,ICMP,7664,0 +1724237400,Blizzard,443918,25406687 +1724237400,Mail.ru Attachment,334515,15475636 +1724237400,Telegram,35322,399070 +1724237400,Edge Chromium,2935,10043 +1724237400,Stripe,2425,8677 +1724237400,DNS over TLS,7817,33388 +1724237400,DNS over HTTPS,20312,74687 +1724237400,DeepL Translator,2945,1991 +1724237700,HTTPS,2515050,34378650 +1724237700,SSL client,2515050,34378650 +1724237700,Yandex,2515050,34378650 +1724237700,TwitchTV,1211436,61275 +1724237700,HTTPS,1211436,61275 +1724237700,SSL client,1211436,61275 +1724237700,HTTPS,13087,19023 +1724237700,SSL client,13087,19023 +1724237700,DNS over HTTPS,13087,19023 +1724237700,HTTPS,52086,54114 +1724237700,Windows Live,58182,11973 +1724237700,HTTPS,61914,15418 +1724237700,SSL client,58182,11973 +1724237700,Google,104944,123791 +1724237700,HTTPS,106963,131173 +1724237700,SSL client,104944,123791 +1724237700,HTTPS,20401,27204 +1724237700,SSL client,3921,7055 +1724237700,Yandex,3921,7055 +1724237700,__unknown,38915,20972 +1724237700,Skype,4036,8567 +1724237700,HTTPS,55807,177027 +1724237700,SSL client,46480,148956 +1724237700,Microsoft,8080,120428 +1724237700,Mail.Ru,15862,10280 +1724237700,Google Play,15670,2555 +1724237700,Microsoft Teams,2832,7126 +1724237700,__unknown,1092,0 +1724237700,Google,226101,127798 +1724237700,Gmail,170556,184368 +1724237700,Skype,5019,15348 +1724237700,HTTPS,1816452,5553963 +1724237700,SSL client,1197725,5446626 +1724237700,Google Play,9271,6262 +1724237700,Exchange Online,786778,5112850 +1724237700,smpnameres,53588,13283 +1724237700,DNS over HTTPS,77158,160310 +1724237700,__unknown,62197,42713 +1724237700,Google,9687,59157 +1724237700,MSN,4151,8498 +1724237700,Adobe Software,13752,106905 +1724237700,iTunes,5401,10484 +1724237700,Skype,13123,19247 +1724237700,SSL,18233,34987 +1724237700,VKontakte,11871,16713 +1724237700,HTTPS,1311575,8317857 +1724237700,WhatsApp,18674,10496 +1724237700,Avast,1122,8531 +1724237700,SSL client,716072,3996626 +1724237700,Microsoft,211486,259920 +1724237700,Mail.Ru,163368,188732 +1724237700,Yandex,194905,2977407 +1724237700,Asus,25607,242923 +1724237700,Nvidia,6035,14811 +1724237700,uTorrent,10912,19518 +1724237700,Google Play,3459,2094 +1724237700,Exchange Online,19367,22740 +1724237700,Office 365,4475,15070 +1724237700,smpnameres,13291,6167 +1724237700,Microsoft Visual Studio,3308,7752 +1724237700,Telegram,7250,50936 +1724237700,Stripe,14043,16124 +1724237700,DNS over HTTPS,5330,17228 +1724237700,__unknown,1065852,59813341 +1724237700,Apple Update,673576,21297062 +1724237700,Bing,6845,20526 +1724237700,Eset,393,404 +1724237700,Google APIs,2824,5559 +1724237700,Google,10913,31048 +1724237700,MSN,19465,78840 +1724237700,Adobe Software,1578,5096 +1724237700,Chrome,5809,2073 +1724237700,Gmail,18561,24279 +1724237700,HTTP,43606,224360 +1724237700,Internet Explorer,762,438 +1724237700,iTunes,2017,18413 +1724237700,Microsoft Update,541,377 +1724237700,Skype,9115,32040 +1724237700,SSL,33382,28916 +1724237700,VKontakte,206897,381172 +1724237700,Advanced Packaging Tool,2976,3080 +1724237700,SMTPS,7928,5283 +1724237700,IMAPS,18561,24279 +1724237700,HTTPS,3712327,105948119 +1724237700,Pinterest,1400,1282 +1724237700,WhatsApp,1595,4516 +1724237700,Spotify,2112,33155 +1724237700,APNS,12276,10966 +1724237700,Apple sites,60676,283049 +1724237700,iCloud,14581,41120 +1724237700,Avast,1544,6139 +1724237700,SSL client,2622049,44689926 +1724237700,Box,1344,3961 +1724237700,Amazon Web Services,2050,7829 +1724237700,Ubuntu Update Manager,1395,1550 +1724237700,Microsoft,494186,506995 +1724237700,Mail.Ru,466680,617740 +1724237700,Yandex,392801,11756005 +1724237700,Ubuntu,2084,1981 +1724237700,Asus,91415,9266561 +1724237700,Nvidia,6058,14840 +1724237700,Microsoft CryptoAPI,4250,103270 +1724237700,uTorrent,10848,19434 +1724237700,Apple Maps,2151,4704 +1724237700,Rambler,16379,20680 +1724237700,iBooks,646,790 +1724237700,Office 365,24726,106092 +1724237700,Microsoft Windows Live Services Authentication,50153,112698 +1724237700,ICMP,7826,0 +1724237700,Yandex Market,7724,10901 +1724237700,Office Mobile,17946,16516 +1724237700,Telegram,51193,1133535 +1724237700,Edge Chromium,587,2005 +1724237700,Amp,2813,26449 +1724237700,Stripe,11912,30975 +1724237700,DNS over TLS,1369,4917 +1724237700,DNS over HTTPS,22904,94323 +1724237700,Adobe Update,1361,4857 +1724237700,_err_4655,1420,1651 +1724237700,__unknown,187,228 +1724237700,Google,5704,13590 +1724237700,Apple Mail,2539,9181 +1724237700,IMAPS,2539,9181 +1724237700,HTTPS,5704,13590 +1724237700,SSL client,8243,22771 +1724237700,ICMP,6720,6780 +1724237700,__unknown,444,810 +1724237700,__unknown,692372,1310335 +1724237700,HTTPS,481682,233635 +1724237700,Telegram,852,890 +1724237700,DNS over HTTPS,5727,14332 +1724237700,__unknown,18177,285275 +1724237700,Google,38826,350537 +1724237700,SSL,15675,7598 +1724237700,HTTPS,94367,406555 +1724237700,WhatsApp,1738,4820 +1724237700,APNS,15675,7598 +1724237700,SSL client,60361,361796 +1724237700,Yandex,5860,3661 +1724237700,ICMP,4482,0 +1724237700,__unknown,3029426,20327485 +1724237700,BitTorrent,310,496 +1724237700,DHCPv6,815,0 +1724237700,Google APIs,24734,53838 +1724237700,Google,87755,178829 +1724237700,Google Translate,118005,398137 +1724237700,IKE,1134,990 +1724237700,Android browser,590,399 +1724237700,Chrome,1335,869 +1724237700,DNS,37354,0 +1724237700,Google Analytics,1552,8754 +1724237700,HTTP,6250,15302 +1724237700,Launchpad,640,430 +1724237700,NetBIOS-dgm,243,0 +1724237700,NTP,13200,3360 +1724237700,SSL,23219,10381 +1724237700,STUN,976,814 +1724237700,YouTube,2478,8816 +1724237700,VKontakte,6417,10253 +1724237700,Advanced Packaging Tool,1914,1623 +1724237700,HTTPS,4831614,376995528 +1724237700,WhatsApp,8672,116153 +1724237700,Mozilla,5831,3202 +1724237700,SSL client,360723,833593 +1724237700,Box,1464,5023 +1724239799,__unknown,213520,1646582 +1724239799,Google,5563,14012 +1724239799,Chrome,30429,939639 +1724239799,DNS,9124,12178 +1724239799,HTTP,48239,958858 +1724239799,Advanced Packaging Tool,3482,3246 +1724239799,HTTPS,224780,516821 +1724239799,SSL client,153858,398462 +1724239799,Ubuntu Update Manager,2895,2716 +1724239799,Yandex,1133,670 +1724239799,Ubuntu,587,530 +1724239799,Nvidia,147162,383780 +1724239799,Telegram,1074,447 +1724239799,Edge Chromium,1054,2728 +1724239799,DNS over HTTPS,1315,5040 +1724240100,__unknown,1032,0 +1724240100,__unknown,1981662,3377617 +1724240100,BitTorrent,248,0 +1724240100,Google,35297,125876 +1724240100,Chrome,30906,132740 +1724240100,DNS,8308,0 +1724240100,Firefox,4576,5366 +1724240100,HTTP,39289,142253 +1724240100,Launchpad,640,496 +1724240100,Microsoft Update,1041,827 +1724240100,NTP,9351,21276 +1724240100,STUN,492,444 +1724240100,YouTube,9313,29603 +1724240100,Advanced Packaging Tool,1998,1782 +1724240100,HTTPS,514682,2812503 +1724240100,WhatsApp,16778,820754 +1724240100,Apple sites,4169,15454 +1724240100,Mozilla,5712,10809 +1724240100,SSL client,115505,572739 +1724240100,Ubuntu Update Manager,1358,1286 +1724240100,Yandex,27942,304293 +1724240100,Nvidia,13616,28460 +1724240100,Microsoft CryptoAPI,1041,827 +1724240100,Apple Maps,4087,9975 +1724240100,Google Play,3447,10180 +1724240100,Rambler,8434,18935 +1724240100,ICMP,7720,2610 +1724240100,Telegram,5651,9876 +1724240100,Sberbank of Russia,1920,9323 +1724240100,Grammarly,3467,14858 +1724240100,DNS over HTTPS,9082,19779 +1724240100,CoAP,618,438 +1724240100,__unknown,3741117,44130668 +1724240100,Apple Update,3615,11819 +1724240100,Bing,3645,16250 +1724240100,BitTorrent,153,0 +1724240100,DHCPv6,978,0 +1724240100,Google APIs,49904,97593 +1724240100,Google Drive,8953,10986 +1724240100,Google,52476,133552 +1724240100,MSN,3926,12334 +1724240100,QQ,678,343 +1724240100,Android browser,1730,844 +1724240100,BitTorrent tracker,153,0 +1724240100,Chrome,8876,111911 +1724240100,DNS,85833,76768 +1724240100,Google Calendar,13686,22359 +1724240100,HTTP,213926,2404981 +1724240100,Internet Explorer,678,343 +1724240100,iTunes,853,3385 +1724240100,Launchpad,1920,1488 +1724240100,Microsoft Update,2569,2050 +1724240100,NTP,2520,2520 +1724240100,SSL,18774,19803 +1724240100,STUN,902,814 +1724240100,YouTube,13896,12384 +1724240100,4shared,4382,29455 +1724240100,Odnoklassniki,3759,2392 +1724240100,Advanced Packaging Tool,24576,22637 +1724240100,HTTPS,1710063,9307829 +1724240100,Pinterest,1490,1282 +1724240100,Apple sites,16865,107955 +1724240100,iCloud,44659,275516 +1724240100,Avast,1212,1173 +1724240100,SSL client,498586,2209857 +1724240100,GoDaddy,745,2976 +1724240100,Ubuntu Update Manager,19721,18499 +1724240100,Microsoft,46695,2127066 +1724240100,Yandex,209809,1196482 +1724240100,Ubuntu,4276,4029 +1724240100,Game Center,1617,9618 +1724240100,Microsoft CryptoAPI,12566,35310 +1724240100,Microsoft NCSI,4028,4357 +1724240100,Apple Maps,14715,56885 +1724240100,Google Play,2896,2281 +1724240100,Rambler,13977,140372 +1724240100,WeChat,7979,2451 +1724240100,smpnameres,7193,3297 +1724240100,ICMP,11824,4338 +1724240100,ICMP for IPv6,70,0 +1724240100,Weborama,2141,5618 +1724240100,Telegram,19433,82053 +1724240100,Google Sign in,13025,23256 +1724240100,Edge Chromium,6103,18217 +1724240100,DNS over TLS,14907,60984 +1724240100,DNS over HTTPS,49630,178303 +1724240100,_err_4655,7663,6855 +1724240100,DeepL Translator,6429,9917 +1724240400,__unknown,1032,0 +1724240400,__unknown,1304814,1405423 +1724240400,HTTPS,83820,505829 +1724240400,ICMP,9426,1850 +1724240400,DNS over HTTPS,12967,27954 +1724240400,__unknown,2446131,11968536 +1724240400,BitTorrent,682,496 +1724240400,DHCPv6,163,0 +1724240400,Google APIs,98244,205399 +1724240400,Google Drive,40394,22730 +1724240400,Google,122681,633605 +1724240400,Android browser,926,666 +1724240400,DNS,27578,90 +1724240400,Gmail,16089,48481 +1724240400,Google Analytics,2858,30641 +1724240400,HTTP,9069,9623 +1724240400,Launchpad,640,496 +1724240400,Microsoft Update,2501,2016 +1724240400,NetBIOS-dgm,250,0 +1724240400,NTP,1260,1260 +1724240400,SSL,50244,34912 +1724240400,STUN,1148,1036 +1724240400,YouTube,65936,1204084 +1724240400,VKontakte,34352,998003 +1724240400,Odnoklassniki,4727,15373 +1724240400,Advanced Packaging Tool,1862,1592 +1724240400,HTTPS,2193742,5791755 +1724240400,APNS,34009,17189 +1724240400,Apple sites,1407,5963 +1724240400,Mozilla,2625,8186 +1724240400,SSL client,2036696,3984898 +1724240400,Microsoft,982,7532 +1724240400,Yandex,1583899,737363 +1724240400,Ubuntu,1222,1096 +1724240400,Microsoft CryptoAPI,3919,4960 +1724240400,Apple Maps,1721,9964 +1724240400,Google Play,16375,26452 +1724240400,Apple Music,5099,11583 +1724240400,Microsoft Windows Live Services Authentication,2566,4543 +1724240400,ICMP,51336,12136 +1724240400,ICMP for IPv6,70,0 +1724240400,Telegram,5557,9091 +1724240400,Google Sign in,4912,8104 +1724240400,DNS over HTTPS,52133,148254 +1724240400,__unknown,3308191,18878956 +1724240400,Apple Update,1782,5124 +1724240400,Bing,4266,7556 +1724240400,BITS,795,16455 +1724240400,BitTorrent,459,515 +1724240400,Eset,504,553 +1724240400,Google APIs,66189,91222 +1724240400,Google,346173,42904384 +1724240400,BitTorrent tracker,459,515 +1724240400,Chrome,64361,3336576 +1724240400,DNS,70854,67652 +1724240400,HTTP,323460,14130783 +1724240400,iTunes,949,5994 +1724240400,Launchpad,2560,1984 +1724240400,LiveJournal,122467,536449 +1724240400,Microsoft Update,5211,4554 +1724240400,NTP,450,450 +1724240400,SSL,3179,18150 +1724240400,STUN,902,814 +1724240400,VKontakte,2834,8716 +1724240400,Odnoklassniki,3790,7530 +1724240400,Advanced Packaging Tool,122815,7523052 +1724240400,HTTPS,2346302,103331898 +1724240400,Apple sites,14921,80656 +1724240400,iCloud,35881,90471 +1724240400,Mozilla,5990,6972 +1724240400,Opera,1993,4409 +1724240400,SSL client,691484,44048713 +1724240400,Samsung,4923,16249 +1724240400,Ubuntu Update Manager,116050,7517286 +1724240400,Microsoft,3517,23447 +1724240400,Mail.Ru,3832,9966 +1724240400,Yandex,41544,163308 +1724240400,Ubuntu,5546,5161 +1724240400,Microsoft CryptoAPI,9975,8601 +1724240400,Google Play,11028,34952 +1724240400,Rambler,7051,22267 +1724240400,Google Hangouts,2273,15004 +1724240400,ICMP,7603,3478 +1724240400,Gmail attachment,388,284 +1724240400,Telegram,48102,91560 +1724240400,Edge Chromium,7151,20998 +1724240400,Grammarly,3098,14309 +1724240400,DNS over TLS,6220,23883 +1724240400,DNS over HTTPS,26395,89980 +1724240400,_err_4655,4071,3109 +1724240700,__unknown,1032,0 +1724240700,__unknown,2743388,98966503 +1724240700,HTTPS,5857,13991 +1724240700,ICMP,33877,518 +1724240700,Telegram,108510,289012 +1724240700,__unknown,608121,2264397 +1724240700,Google APIs,14814,117279 +1724240700,Google,104538,456631 +1724240700,Gmail,33825,22088 +1724240700,HTTP,4842,233360 +1724240700,SSL,1646,1767 +1724240700,HTTPS,195378,935918 +1724240700,APNS,10747,9887 +1724240700,SSL client,163924,605885 +1724240700,smpnameres,6285,5469 +1724240700,ICMP,5384,2516 +1724240700,__unknown,4246120,46235361 +1724240700,Bing,1197,5635 +1724240700,BitTorrent,310,496 +1724240700,DHCPv6,978,0 +1724240700,Google APIs,138864,160369 +1724240700,Google Drive,9298,11222 +1724240700,Google,282754,426355 +1724240700,Google Translate,9600,12777 +1724240700,Android browser,1546,1052 +1724240700,Chrome,72607,3889 +1724240700,DNS,28333,193 +1724240700,Firefox,6266,6060 +1724240700,Gmail,16033,33668 +1724240700,Google Analytics,1784,2007 +1724240700,HTTP,93659,101558 +1724240700,iTunes,3912,18781 +1724240700,Launchpad,640,496 +1724240700,LiveJournal,395588,1775726 +1724240700,Microsoft Update,1934,1501 +1724240700,NetBIOS-dgm,243,0 +1724240700,NTP,1440,1440 +1724240700,SSL,1765,3546 +1724240700,VKontakte,14574,576995 +1724240700,Odnoklassniki,2609,7424 +1724240700,Steam,2871,75182 +1724240700,Advanced Packaging Tool,3859,3505 +1724240700,IMAPS,9452,25751 +1724240700,HTTPS,1482998,18379553 +1724240700,WhatsApp,5440,23792 +1724240700,Mozilla,5413,18289 +1724240700,SSL client,1117316,13993647 +1724240700,Samsung,53038,27700 +1724240700,Ubuntu Update Manager,2632,2479 +1724240700,Yandex,187869,10817288 +1724240700,Ubuntu,587,530 +1724240700,Microsoft CryptoAPI,6124,10878 +1724240700,Google Play,6471,17423 +1724240700,Rambler,57525,74632 +1724240700,ICMP,120934,23804 +1724240700,Gmail attachment,284,0 +1724240700,Telegram,107364,93791 +1724240700,Grammarly,2270,7812 +1724240700,DNS over HTTPS,28648,88870 +1724240700,__unknown,2363070,12018503 +1724240700,Apple Update,166890,5181686 +1724240700,Bing,1197,5573 +1724240700,BITS,1590,14513 +1724240700,BitTorrent,153,537 +1724240700,DHCPv6,163,0 +1724240700,Google APIs,224598,229929 +1724240700,Google Drive,1115,7774 +1724240700,Google,38704,122525 +1724240700,QQ,678,343 +1724240700,BitTorrent tracker,153,537 +1724240700,Chrome,5006,4415 +1724240700,DNS,61557,60447 +1724240700,Firefox,6397,13350 +1724240700,Gmail,24396,80272 +1724240700,Google Analytics,2543,6417 +1724240700,HTTP,266006,7292269 +1724240700,Internet Explorer,678,343 +1724240700,iTunes,2148,17638 +1724240700,Launchpad,2560,1984 +1724240700,LiveJournal,109794,2268724 +1724240700,Microsoft Update,2664,2210 +1724240700,NTP,2160,2160 +1724240700,SSL,12360,10145 +1724240700,STUN,984,888 +1724240700,YouTube,15555,30643 +1724240700,VKontakte,12782,32382 +1724240700,Advanced Packaging Tool,141659,7137437 +1724240700,IMAPS,11705,60145 +1724240700,HTTPS,2484725,12750607 +1724240700,APNS,9606,5971 +1724240700,Apple sites,16433,52259 +1724240700,iCloud,755395,520137 +1724240700,SSL client,1473053,9117202 +1724240700,Ad Nexus,1084,3348 +1724240700,GoDaddy,1277,3367 +1724240700,Amazon Web Services,2581,14309 +1724240700,Taobao,5147,2875 +1724240700,Ubuntu Update Manager,27029,153057 +1724240700,Mail.Ru,4015,5716 +1724240700,Yandex,23185,377868 +1724240700,Ubuntu,114273,6984693 +1724240700,Microsoft CryptoAPI,13334,37110 +1724240700,Microsoft NCSI,974,1024 +1724240700,Apple Maps,7668,19793 +1724240700,Google Play,16503,8328 +1724240700,CloudFlare,2206,25094 +1724240700,Rambler,8504,22048 +1724240700,Office 365,2424,15953 +1724240700,HTTP/2,5147,2875 +1724240700,smpnameres,198,229 +1724240700,ICMP,7165,2960 +1724240700,ICMP for IPv6,70,0 +1724240700,Telegram,50534,100111 +1724240700,Google Sign in,6232,4591 +1724240700,Edge Chromium,3162,8188 +1724240700,Grammarly,2257,8240 +1724240700,Stripe,2725,4235 +1724240700,DNS over TLS,17870,76421 +1724240700,DNS over HTTPS,31017,117736 +1724240700,_err_4655,2707,2431 +1724241000,__unknown,1032,0 +1724241000,__unknown,1109621,834176 +1724241000,ICMP,3854,0 +1724241000,Telegram,142209,369391 +1724241000,DNS over HTTPS,42000,84514 +1724241000,CoAP,3136,2304 +1724241000,__unknown,296281,12779015 +1724241000,Google,36963,30667 +1724241000,HTTP,4272,135444 +1724241000,HTTPS,134275,91235 +1724241000,SSL client,104287,65314 +1724241000,Nvidia,16222,24708 +1724241000,Dropbox Download,51102,9939 +1724241000,ICMP,8170,1036 +1724241000,Telegram,2015,1976 +1724241000,__unknown,63591,753707 +1724241000,Firefox,1402,1822 +1724241000,HTTP,2481,2998 +1724241000,SSL,1614,8029 +1724241000,VKontakte,105823,614007 +1724241000,HTTPS,363149,9626129 +1724241000,SSL client,112518,640987 +1724241000,CloudFlare,2747,12555 +1724241000,Google Hangouts,1614,8029 +1724241000,ICMP,8674,2220 +1724241000,DNS over HTTPS,2334,6396 +1724241000,__unknown,5566813,71945411 +1724241000,Bing,1063,5630 +1724241000,BitTorrent,310,434 +1724241000,Google APIs,1280863,313580 +1724241000,Google Drive,7999,18108 +1724241000,Google,86022,585584 +1724241000,Android browser,2801,1911 +1724241000,DNS,27784,0 +1724241000,Gmail,24344,40409 +1724241000,HTTP,8975,8048 +1724241000,Launchpad,640,496 +1724241000,Microsoft Update,981,501 +1724241000,NTP,1800,1710 +1724241000,STUN,1558,1332 +1724241000,YouTube,48035,1254129 +1724241000,VKontakte,25089,413037 +1724241000,Odnoklassniki,2102,6832 +1724241000,Advanced Packaging Tool,3272,2975 +1724241000,HTTPS,1921610,11104726 +1724241000,WhatsApp,1860,5835 +1724241000,iCloud,6447,17578 +1724241000,SSL client,1688199,9945614 +1724241000,Weather.com,1577,5752 +1724241000,Ubuntu Update Manager,2632,2479 +1724241000,Yandex,133975,7155835 +1724241000,Microsoft CryptoAPI,2141,2153 +1724241000,Google Play,44699,78090 +1724241000,CloudFlare,2377,11222 +1724241000,Rambler,1144,3051 +1724241000,Exchange Online,2640,5252 +1724241000,ICMP,40279,14660 +1724241000,Telegram,51907,148498 +1724241000,Google Sign in,20270,24648 +1724241000,DNS over HTTPS,27634,84147 +1724241000,__unknown,2774985,22615780 +1724241000,Apple Update,3754,12775 +1724241000,BitTorrent,612,317 +1724241000,DHCPv6,978,0 +1724241000,Google APIs,79939,117182 +1724241000,Google Drive,20389,122718 +1724241000,Google,143056,965255 +1724241000,Google Translate,4003,9777 +1724241000,QQ,678,343 +1724241000,BitTorrent tracker,612,317 +1724241000,Chrome,42268,20164 +1724241000,DNS,54319,57994 +1724241000,Firefox,807,1130 +1724241000,HTTP,302490,5098472 +1724241000,Internet Explorer,678,343 +1724241000,Launchpad,2560,1918 +1724241000,LiveJournal,61360,113156 +1724241000,Microsoft Update,84536,1462455 +1724241000,Mobile Safari,4784,16153 +1724241000,NetBIOS-dgm,250,0 +1724241000,NTP,2430,2430 +1724241000,SSL,12045,32463 +1724241000,STUN,2132,1924 +1724241000,Twitter,995,2987 +1724241000,YouTube,3233,24972 +1724241000,VKontakte,15455,21241 +1724241000,Advanced Packaging Tool,28724,143148 +1724241000,Windows Update,81018,1459184 +1724241000,HTTPS,2161438,27520327 +1724241000,WhatsApp,2181,13027 +1724241000,Apple sites,32014,82412 +1724241000,iCloud,65184,65398 +1724241000,Opera,3866,9128 +1724241000,SSL client,683968,2528641 +1724241000,Amazon Web Services,1794,8956 +1724241000,Taobao,1650,5867 +1724241000,Ubuntu Update Manager,22594,137996 +1724241000,Microsoft,52147,3461426 +1724241000,Mail.Ru,13291,26916 +1724241000,Yandex,172246,791981 +1724241000,Ubuntu,4911,4609 +1724241000,Microsoft CryptoAPI,11156,9321 +1724241000,Microsoft NCSI,328,487 +1724241000,Pocket,1997,4522 +1724241000,Google Play,36914,21332 +1724241000,Rambler,4642,13043 +1724241000,Office 365,636,664 +1724241000,Google Hangouts,855,7031 +1724241000,ICMP,7718,3996 +1724241000,Firebase Crashlytics,2196,6594 +1724241000,Telegram,150979,2825871 +1724241000,Edge Chromium,2815,8753 +1724241000,DNS over TLS,1443,9541 +1724241000,DNS over HTTPS,43329,126205 +1724241000,_err_4655,8182,6781 +1724241300,__unknown,1108212,612520 +1724241300,ICMP,11672,6000 +1724241300,DNS over HTTPS,12067,25866 +1724241300,HTTPS,88008,30442 +1724241300,APNS,65710,21418 +1724241300,SSL client,65710,21418 +1724241300,ICMP,10980,11040 +1724241300,__unknown,2212172,600825 +1724241300,Google,8042,14627 +1724241300,HTTP,595,408 +1724241300,HTTPS,11408,20103 +1724241300,SSL client,8042,14627 +1724241300,ICMP,1290,0 +1724241300,Telegram,595,408 +1724241300,__unknown,74538,1725806 +1724241300,Google APIs,4152,7504 +1724241300,HTTP,1862,850 +1724241300,SSL,12189,9209 +1724241300,HTTPS,38848,187630 +1724241300,APNS,10202,5566 +1724241300,SSL client,16341,16713 +1724241300,Google Hangouts,1987,3643 +1724241300,ICMP,3764,1332 +1724241300,Telegram,13784,26326 +1724241300,__unknown,3542549,28013371 +1724241300,Bing,1257,5632 +1724241300,BITS,8459,195028 +1724241300,BitTorrent,310,496 +1724241300,DHCPv6,163,0 +1724241300,Google APIs,115908,108396 +1724241300,Google,113475,429943 +1724241300,Chrome,2174,1525 +1724241300,DNS,21401,0 +1724241300,Gmail,35047,77135 +1724241300,Google Analytics,7107,9426 +1724241300,HTTP,15119,202004 +1724241300,Launchpad,640,496 +1724241300,LiveJournal,777173,26541383 +1724241300,NetBIOS-dgm,243,0 +1724241300,NTP,1980,1980 +1724241300,SSL,7386,14412 +1724241300,STUN,14202,6646 +1724241300,VKontakte,70859,427780 +1724241300,Advanced Packaging Tool,3272,2977 +1724241300,HTTPS,38596959,118182210 +1724241300,iCloud,35707134,488268 +1724241300,Mozilla,1996,4556 +1724241300,Opera,2202,4982 +1724241300,SSL client,36956941,28453272 +1724241300,Amazon Web Services,1862,8316 +1724241300,Ubuntu Update Manager,2632,2481 +1724241300,Microsoft,7787,193928 +1724241300,Mail.Ru,1429,5101 +1724241300,Disqus,9118,69290 +1724241300,Yandex,71911,231278 +1724241300,Nvidia,7813,18995 +1724241300,Microsoft CryptoAPI,1214,2474 +1724241300,Google Play,25731,9721 +1724241300,Rambler,1144,3052 +1724241300,Google Hangouts,4527,5164 +1724241300,ICMP,72013,11930 +1724241300,ICMP for IPv6,206,302 +1724241300,Firebase Crashlytics,1934,5988 +1724241300,Telegram,884784,87518690 +1724241300,DNS over HTTPS,28370,75193 +1724241300,__unknown,2577170,22479342 +1724241300,Apple Update,1847,4994 +1724241300,Bing,3609,12017 +1724241300,BitTorrent,153,0 +1724241300,Google APIs,15767,75524 +1724241300,Google,55332,128627 +1724241300,QQ,678,343 +1724241300,BitTorrent tracker,153,0 +1724241300,Chrome,1206,972 +1724241300,DNS,68543,68506 +1724241300,Firefox,744,1395 +1724241300,Gmail,10164,26429 +1724241300,Google Analytics,2866,6946 +1724241300,Google Calendar,3317,15728 +1724241300,HTTP,124191,154178 +1724241300,Internet Explorer,1500,1003 +1724241300,iTunes,853,5875 +1724241300,Launchpad,2560,1984 +1724241300,LiveJournal,41967,654847 +1724241300,Microsoft Update,2609,2281 +1724241300,NTP,810,810 +1724241300,SSL,1930,5493 +1724241300,STUN,3030,4300 +1724241300,YouTube,21913,5051 +1724241300,VKontakte,35763,89545 +1724241300,Steam,878,12752 +1724241300,Advanced Packaging Tool,22138,20298 +1724241300,IMAPS,10164,26429 +1724241300,HTTPS,2628934,31172523 +1724241300,Apple sites,31897,19776 +1724241300,iCloud,65907,122106 +1724241300,Avast,437,1201 +1724241300,SSL client,509695,1941303 +1724241300,Ubuntu Update Manager,17182,16146 +1724241300,Microsoft,2356,2568 +1724241300,VeriSign,506,2141 +1724241300,Mail.Ru,23046,92961 +1724241300,Yandex,110101,494449 +1724241300,Ubuntu,3246,3086 +1724241300,Microsoft CryptoAPI,6828,14687 +1724241300,Microsoft NCSI,394,479 +1724241300,Rubicon Project,4215,7374 +1724241300,Google Play,40312,49902 +1724241300,Rambler,12189,33512 +1724241300,ICMP,5444,3288 +1724241300,Gmail attachment,672,284 +1724241300,Mail.ru Attachment,1873,11188 +1724241300,Telegram,629005,24639641 +1724241300,Edge Chromium,9379,26515 +1724241300,Grammarly,2233,7886 +1724241300,Amp,5921,28203 +1724241300,DNS over TLS,10458,43023 +1724241300,DNS over HTTPS,28923,103071 +1724241300,DeepL Translator,2059,7100 +1724241300,Notion,6410,6687 +1724241600,__unknown,1855076,1511580 +1724241600,__unknown,366,223 +1724241600,Google,41652,41667 +1724241600,HTTPS,41652,41667 +1724241600,SSL client,41652,41667 +1724241600,ICMP,1476,0 +1724241600,__unknown,2458,2517 +1724241600,Google,5479207,2135034 +1724241600,LiveJournal,59040,46960 +1724241600,HTTPS,5586087,2237274 +1724241600,SSL client,5538247,2181994 +1724241600,__unknown,17378,179162 +1724241600,HTTP,547,408 +1724241600,HTTPS,53877,67790 +1724241600,SSL client,53877,67790 +1724241600,ICMP,592,592 +1724241600,Telegram,54855,68380 +1724241600,DNS over HTTPS,7904,21542 +1724241600,__unknown,476489,2635749 +1724241600,Google,135297,88192 +1724241600,Gmail,37718,24406 +1724241600,STUN,682453,799902 +1724241600,VKontakte,20314,40848 +1724241600,Odnoklassniki,3825,8797 +1724241600,HTTPS,284144,513758 +1724241600,SSL client,226693,204103 +1724241600,Box,1344,4963 +1724241600,Yandex,8787,13853 +1724241600,Google Play,19408,23044 +1724241600,ICMP,27510,1998 +1724241600,ICMP for IPv6,1692,0 +1724241600,Telegram,3213,3434 +1724241600,DNS over HTTPS,41704,108799 +1724241600,CoAP,1862,1440 +1724241600,__unknown,5649453,51574126 +1724241600,BitTorrent,310,496 +1724241600,DHCPv6,978,0 +1724241600,Google APIs,123758,123878 +1724241600,Google,57818,127759 +1724241600,DNS,31412,0 +1724241600,Firefox,3600,4089 +1724241600,Gmail,65381,151489 +1724241600,HTTP,14202,24479 +1724241600,LiveJournal,13768,13581 +1724241600,Microsoft Update,981,887 +1724241600,NTP,630,630 +1724241600,Photobucket,5042,181741 +1724241600,SSL,46714,42269 +1724241600,STUN,634,444 +1724241600,YouTube,38418,628738 +1724241600,VKontakte,110551,1188823 +1724241600,Odnoklassniki,7004,46605 +1724241600,HTTPS,862581,4928294 +1724241600,APNS,41683,24382 +1724241600,SSL client,580644,2757814 +1724241600,GoDaddy,640,2992 +1724241600,Microsoft,633,7965 +1724241600,Mail.Ru,2675,5437 +1724241600,Yandex,14160,133108 +1724241600,Microsoft CryptoAPI,3355,5348 +1724241600,Microsoft WNS,633,7965 +1724241600,Apple Maps,4389,14810 +1724241600,Google Play,69612,63292 +1724241600,Rambler,1144,3053 +1724241600,Google Hangouts,1926,8375 +1724241600,ICMP,78378,13588 +1724241600,Telegram,7291,10251 +1724241600,Google Sign in,10577,21783 +1724241600,Thin Manager TFTP,276,106 +1724241600,DNS over HTTPS,25023,75936 +1724241600,_err_4655,6642,5744 +1724241600,Notion,4964,17164 +1724241600,__unknown,2667923,20913423 +1724241600,Apple Update,1799,5070 +1724241600,BitTorrent,612,515 +1724241600,DHCPv6,163,0 +1724241600,Google APIs,19017,43557 +1724241600,Google,37830,94356 +1724241600,MSN,577,501 +1724241600,QQ,678,343 +1724241600,Android browser,684,600 +1724241600,BitTorrent tracker,612,515 +1724241600,Chrome,565,484 +1724241600,DNS,63605,61447 +1724241600,Firefox,2090,2446 +1724241600,HTTP,122216,133885 +1724241600,Internet Explorer,678,343 +1724241600,iTunes,5550,46591 +1724241600,Launchpad,3200,2414 +1724241600,LiveJournal,32451,84468 +1724241600,NTP,990,990 +1724241600,SSL,12732,49342 +1724241600,STUN,246,222 +1724241600,YouTube,10414,50982 +1724241600,VKontakte,2382,5526 +1724241600,Advanced Packaging Tool,29185,26243 +1724241600,HTTPS,2268729,10581330 +1724241600,Apple sites,7992,49172 +1724241600,iCloud,28306,39137 +1724241600,Avast,382,391 +1724241600,SSL client,317775,957316 +1724241600,Ubuntu Update Manager,21732,19990 +1724241600,Microsoft,15084,9361 +1724241600,VeriSign,566,2141 +1724241600,Mail.Ru,1337,5101 +1724241600,Siri,14730,13386 +1724241600,Yandex,24687,220049 +1724241600,GitHub,45238,109255 +1724241600,Ubuntu,5594,5214 +1724241600,Nvidia,4067,6226 +1724241600,Microsoft CryptoAPI,3631,7337 +1724241600,Microsoft NCSI,925,966 +1724241600,Microsoft WNS,577,501 +1724241600,uTorrent,2639,6242 +1724241600,Apple Maps,4113,14935 +1724241600,Google Play,35136,61089 +1724241600,Rambler,9774,25918 +1724241600,Google Hangouts,797,7092 +1724241600,ICMP,9751,3996 +1724241600,ICMP for IPv6,140,0 +1724241600,Alipay,816,1579 +1724241600,Telegram,43689,170613 +1724241600,Edge Chromium,7271,21047 +1724241600,Grammarly,2231,7887 +1724241600,DNS over TLS,13531,57067 +1724241600,DNS over HTTPS,44711,134803 +1724241600,Notion,3821,15192 +1724241900,__unknown,5461158,4669426 +1724241900,__unknown,94820,17842 +1724241900,Google,120434,119166 +1724241900,HTTPS,168020,143301 +1724241900,SSL client,120434,119166 +1724241900,CoAP,5871,4088 +1724241900,__unknown,144,80 +1724241900,SSL,1414,7964 +1724241900,HTTPS,7593,16333 +1724241900,SSL client,9007,24297 +1724241900,Yandex,7593,16333 +1724241900,Google Hangouts,1414,7964 +1724241900,__unknown,6851,10971 +1724241900,Google,63835,29172 +1724241900,HTTPS,111117,57225 +1724241900,SSL client,63835,29172 +1724241900,ICMP,52511,0 +1724241900,__unknown,33536,20414 +1724241900,HTTPS,9093,20839 +1724241900,iCloud,3304,9346 +1724241900,SSL client,3304,9346 +1724241900,ICMP,4278,0 +1724241900,Telegram,2303,1292 +1724241900,DNS over HTTPS,43720,92288 +1724241900,__unknown,155462,246337 +1724241900,Google,4977,10239 +1724241900,HTTP,965,1400 +1724241900,HTTPS,109627,802580 +1724241900,WhatsApp,1834,7934 +1724241900,SSL client,69813,38508 +1724241900,Samsung,386,992 +1724241900,Google Play,64836,28269 +1724241900,ICMP,22847,2368 +1724241900,DNS over HTTPS,7700,19032 +1724241900,__unknown,3500047,20952618 +1724241900,BITS,68816,7142805 +1724241900,BitTorrent,310,496 +1724241900,Google APIs,28121,79785 +1724241900,Google Drive,8923,10733 +1724241900,Google,136483,66144 +1724241900,DNS,27447,544 +1724241900,Firefox,2282,3871 +1724241900,Gmail,6373,8733 +1724241900,HTTP,72705,7158288 +1724241900,NetBIOS-dgm,250,0 +1724241900,NTP,12752,3810 +1724241900,SSL,9304,38507 +1724241900,STUN,738,666 +1724241900,VKontakte,7378,19680 +1724241900,Odnoklassniki,1914,7439 +1724241900,HTTPS,1037923,3549204 +1724241900,SSL client,752741,1959381 +1724241900,Taobao,6615,607275 +1724241900,Microsoft,633,7965 +1724241900,Yandex,477020,1045149 +1724241900,GitHub,5622,7831 +1724241900,Nvidia,5452,11270 +1724241900,Microsoft WNS,633,7965 +1724241900,Apple Maps,1541,5041 +1724241900,Google Play,52243,56742 +1724241900,Rambler,3815,9046 +1724241900,Google Hangouts,1650,8178 +1724241900,ICMP,105037,13754 +1724241900,Telegram,4712,15043 +1724241900,Google Sign in,4856,7766 +1724241900,Google Inbox,4088,8541 +1724241900,Thin Manager TFTP,196,252 +1724241900,DNS over HTTPS,107468,295604 +1724241900,CoAP,980,720 +1724241900,__unknown,2712705,87513875 +1724241900,Apple Update,2653,5211 +1724241900,BITS,7671,195519 +1724241900,BitTorrent,459,1239 +1724241900,DHCPv6,978,0 +1724241900,Google APIs,40250,121710 +1724241900,Google,36220,108339 +1724241900,Google Translate,4782,10628 +1724241900,MSN,577,501 +1724241900,QQ,1092,1924 +1724241900,Adobe Software,2062,2154 +1724241900,Android browser,1368,1266 +1724241900,BitTorrent tracker,459,1239 +1724241900,Chrome,548,626 +1724241900,cURL,964,1274 +1724241900,DNS,74155,70225 +1724241900,Facebook,5318,85556 +1724241900,Firefox,1540,3066 +1724241900,HTTP,269582,1914235 +1724241900,Internet Explorer,2740,2497 +1724241900,iTunes,853,3385 +1724241900,Launchpad,2856,1628 +1724241900,Microsoft Update,90027,1561473 +1724241900,NetBIOS-dgm,243,0 +1724241900,NTP,13200,3450 +1724241900,SSL,4369,16130 +1724241900,STUN,186,222 +1724241900,YouTube,17566,193797 +1724241900,VKontakte,8169,16505 +1724241900,Steam,5332,4437 +1724241900,Advanced Packaging Tool,30204,26305 +1724241900,Windows Update,83544,1531001 +1724241900,HTTPS,1868320,18663182 +1724241900,WhatsApp,5102,155946 +1724241900,Apple sites,9234,161814 +1724241900,iCloud,87496,73930 +1724241900,Mozilla,8072,12603 +1724241900,Avast,382,391 +1724241900,SSL client,525061,4075121 +1724241900,Amazon Web Services,1193,6396 +1724241900,Ubuntu Update Manager,23558,22015 +1724241900,Microsoft,65000,235488 +1724241900,Mail.Ru,5521,20315 +1724241900,Yandex,91467,2714094 +1724241900,GitHub,5951,6796 +1724241900,Ubuntu,5066,4041 +1724241900,Nvidia,83273,73390 +1724241900,Microsoft CryptoAPI,12715,42635 +1724241900,Microsoft NCSI,8280,9333 +1724241900,Microsoft WNS,1270,8466 +1724241900,uTorrent,548,626 +1724241900,Apple Maps,5195,12535 +1724241900,Google Play,27257,20130 +1724241900,CloudFlare,1838,6494 +1724241900,Rambler,5132,12874 +1724241900,Garmin,9018,22351 +1724241900,Exchange Online,1227,8492 +1724241900,ICMP,11250,3390 +1724241900,ICMP for IPv6,282,0 +1724241900,Gmail attachment,388,284 +1724241900,JetBrains,15351,175326 +1724241900,Telegram,58931,1541591 +1724241900,Google Sign in,5876,4255 +1724241900,Google Inbox,21949,138391 +1724241900,Thin Manager TFTP,276,106 +1724241900,Edge Chromium,9379,27695 +1724241900,Grammarly,1922,7405 +1724241900,DNS over TLS,11863,48154 +1724241900,DNS over HTTPS,35172,132569 +1724241900,_err_4655,5588,5041 +1724242200,Thin Manager TFTP,672,280 +1724242200,__unknown,3378425,2265219 +1724242200,__unknown,217016,44713 +1724242200,STUN,5412,4958 +1724242200,HTTPS,46634,24202 +1724242200,Google,65675,38553 +1724242200,HTTPS,65675,38553 +1724242200,SSL client,65675,38553 +1724242200,__unknown,378138,7964159 +1724242200,HTTPS,6221,10616 +1724242200,__unknown,28184,743214 +1724242200,__unknown,182168,4607826 +1724242200,Google,13736,27529 +1724242200,Firefox,1938,3209 +1724242200,Google Calendar,12848,15938 +1724242200,HTTP,38215,1440519 +1724242200,HTTPS,251459,9077412 +1724242200,WhatsApp,1846,7933 +1724242200,iCloud,28636,25169 +1724242200,SSL client,55220,68636 +1724242200,ICMP,12340,11136 +1724242200,Telegram,10777,18008 +1724242200,__unknown,3219873,82276074 +1724242200,BitTorrent,463,496 +1724242200,DHCPv6,163,0 +1724242200,Google APIs,672546,203246 +1724242200,Google Drive,9455,10981 +1724242200,Google,143832,730008 +1724242200,Google Translate,3664,7388 +1724242200,BitTorrent tracker,153,0 +1724242200,DNS,33880,90 +1724242200,Gmail,50213,123669 +1724242200,HTTP,20544,1094624 +1724242200,Microsoft Update,18977,1092818 +1724242200,NTP,900,900 +1724242200,SSL,13604,5270 +1724242200,STUN,2782,3782 +1724242200,YouTube,18601,41061 +1724242200,VKontakte,13925,31620 +1724242200,Odnoklassniki,11633,30193 +1724242200,HTTPS,1645990,16124664 +1724242200,Apple sites,1995,8002 +1724242200,iCloud,12877,32681 +1724242200,SSL client,1229655,14298004 +1724242200,Microsoft,2206,6473 +1724242200,Mail.Ru,5873,16111 +1724242200,Yandex,189378,11801667 +1724242200,Nvidia,55544,1158712 +1724242200,Microsoft CryptoAPI,1108,1006 +1724242200,Apple Maps,5409,19753 +1724242200,Google Play,12434,21232 +1724242200,Garmin,1646,4907 +1724242200,ICMP,90492,12444 +1724242200,ICMP for IPv6,87,0 +1724242200,Gmail attachment,284,0 +1724242200,Telegram,3983,9508 +1724242200,Google Sign in,7626,10998 +1724242200,Google Inbox,6345,20871 +1724242200,Grammarly,5285,31223 +1724242200,DNS over HTTPS,111256,301042 +1724242200,_err_4655,2329,1949 +1724242200,IPv6 No Next Header,98,0 +1724242200,CoAP,980,720 +1724242200,__unknown,1686258,10931713 +1724242200,Apple Update,2844,9045 +1724242200,BITS,8061,192976 +1724242200,BitTorrent,459,317 +1724242200,DHCPv6,815,0 +1724242200,Google APIs,18878,42974 +1724242200,Google Drive,3192,15996 +1724242200,Google,75531,155130 +1724242200,Google Translate,4780,10572 +1724242200,QQ,678,343 +1724242200,BitTorrent tracker,459,317 +1724242200,Chrome,3371,43242 +1724242200,DNS,55545,53065 +1724242200,Gmail,4701,15286 +1724242200,Google Analytics,1384,6398 +1724242200,Google Calendar,3398,12401 +1724242200,HTTP,208359,1208511 +1724242200,Internet Explorer,7071,2503 +1724242200,iTunes,6365,25659 +1724242200,Launchpad,3200,2480 +1724242200,Microsoft Update,39186,753103 +1724242200,NTP,12660,2910 +1724242200,SSL,1652,14125 +1724242200,STUN,328,222 +1724242200,VKontakte,2434,5369 +1724242200,Odnoklassniki,2182,6853 +1724242200,Steam,3736,58440 +1724242200,Advanced Packaging Tool,30523,27951 +1724242200,Windows Update,32638,706966 +1724242200,HTTPS,2089308,12974625 +1724242200,WhatsApp,23232,785770 +1724242200,Apple sites,6950,14598 +1724242200,iCloud,513186,137692 +1724242200,Mozilla,3174,2713 +1724242200,SSL client,920173,4121924 +1724242200,Taobao,5118,62295 +1724242200,Ubuntu Update Manager,22497,21071 +1724242200,Microsoft,8694,200941 +1724242200,Mail.Ru,23191,71933 +1724242200,Yandex,100680,3222666 +1724242200,Ubuntu,6245,5775 +1724242200,Nvidia,56432,150906 +1724242200,Microsoft CryptoAPI,10472,54957 +1724242200,Microsoft NCSI,10329,11735 +1724242200,Microsoft WNS,633,7965 +1724242200,uTorrent,1319,958 +1724242200,Apple Maps,1849,6112 +1724242200,Google Play,62731,30106 +1724242200,Microsoft Windows Live Services Authentication,976,11569 +1724242200,Google Hangouts,855,7032 +1724242200,ICMP,17971,4522 +1724242200,JetBrains,1793,6761 +1724242200,Telegram,9017,25692 +1724242200,Sberbank of Russia,4373,59557 +1724242200,Thin Manager TFTP,276,106 +1724242200,Edge Chromium,6744,20859 +1724242200,Grammarly,1766,7531 +1724242200,DNS over TLS,17192,71974 +1724242200,DNS over HTTPS,75280,204574 +1724242200,Notion,1278,4393 +1724242500,__unknown,4183456,2892947 +1724242500,__unknown,155826,196644 +1724242500,DNS over HTTPS,561,66 +1724242500,Google,17747,18078 +1724242500,HTTP,547,408 +1724242500,HTTPS,17747,18078 +1724242500,SSL client,17747,18078 +1724242500,__unknown,312,228 +1724242500,ICMP,6660,6780 +1724242500,__unknown,73125,29088 +1724242500,HTTPS,35716,60846 +1724242500,Thin Manager TFTP,19796,18000 +1724242500,__unknown,49416,618436 +1724242500,HTTP,9695,21226 +1724242500,SSL,15487,14234 +1724242500,Telegram,10824,22052 +1724242500,__unknown,2236753,115685051 +1724242500,Google APIs,10674,87177 +1724242500,Google,6248,9809 +1724242500,HTTP,176619,10286166 +1724242500,STUN,1148,1036 +1724242500,YouTube,3024,2912 +1724242500,HTTPS,55662,192189 +1724242500,SSL client,19946,99898 +1724242500,ICMP,7048,4666 +1724242500,Telegram,10557,48280 +1724242500,DNS over HTTPS,12937,32989 +1724242500,__unknown,2566965,30852186 +1724242500,BitTorrent,310,496 +1724242500,DHCPv6,163,0 +1724242500,Google APIs,69927,108031 +1724242500,Google Drive,2017,8220 +1724242500,Google,100673,247133 +1724242500,Google Translate,3598,7325 +1724242500,DNS,26222,0 +1724242500,Gmail,35591,92575 +1724242500,HTTP,12600,534880 +1724242500,LiveJournal,167971,314569 +1724242500,NTP,540,540 +1724242500,STUN,3664,4854 +1724242500,YouTube,2105,8856 +1724242500,VKontakte,35265,54891 +1724242500,HTTPS,1177140,13806579 +1724242500,WhatsApp,1842,7934 +1724242500,Mozilla,4097,2529 +1724242500,SSL client,687782,10355143 +1724242500,Yandex,196932,9429368 +1724242500,GitHub,3445,6508 +1724242500,AMD,1137,933 +1724242500,Nvidia,5375,10481 +1724242500,Microsoft CryptoAPI,1916,1568 +1724242500,Google Play,43101,32101 +1724242500,ICMP,17878,11936 +1724242500,Gmail attachment,3450,16206 +1724242500,Google Sign in,8287,10099 +1724242500,Google Inbox,5948,6251 +1724242500,Thin Manager TFTP,196,252 +1724242500,DNS over HTTPS,27572,81526 +1724242500,CoAP,980,648 +1724242500,__unknown,3183813,37026779 +1724242500,Apple Update,3454,11868 +1724242500,BitTorrent,1575,396 +1724242500,Google APIs,8609,25769 +1724242500,Google,43090,169818 +1724242500,Kaspersky,574,607 +1724242500,QQ,678,343 +1724242500,Android browser,1368,1200 +1724242500,BitTorrent tracker,459,396 +1724242500,Chrome,4730,4144 +1724242500,DNS,63828,63226 +1724242500,Gmail,4584,9805 +1724242500,HTTP,412357,25247075 +1724242500,Internet Explorer,678,343 +1724242500,iTunes,853,5875 +1724242500,Launchpad,3200,2480 +1724242500,Microsoft Update,4907,4433 +1724242500,NetBIOS-dgm,250,0 +1724242500,NTP,18340,4725 +1724242500,STUN,3382,1554 +1724242500,VKontakte,6262,10946 +1724242500,Odnoklassniki,4108,13466 +1724242500,Advanced Packaging Tool,27770,25376 +1724242500,HTTPS,1579854,60875272 +1724242500,Apple sites,5210,35163 +1724242500,iCloud,125567,274817 +1724242500,Mozilla,6046,10870 +1724242500,SSL client,379184,3771953 +1724242500,Ad Nexus,1754,5783 +1724242500,Taobao,5876,44780 +1724242500,Ubuntu Update Manager,19730,18532 +1724242500,Microsoft,278268,25121863 +1724242500,Mail.Ru,6685,18684 +1724242500,Yandex,59907,2887405 +1724242500,GitHub,56220,130049 +1724242500,Ubuntu,6474,6208 +1724242500,Nvidia,6485,15357 +1724242500,Microsoft CryptoAPI,7776,6948 +1724242500,Microsoft NCSI,2347,2435 +1724242500,Microsoft WNS,461,755 +1724242500,uTorrent,617,476 +1724242500,Apple Maps,11071,30742 +1724242500,Rambler,5312,12890 +1724242500,ICMP,6067,3316 +1724242500,Firebase Crashlytics,2265,6637 +1724242500,Office Mobile,461,755 +1724242500,Telegram,49351,102121 +1724242500,Google Sign in,6234,4212 +1724242500,Edge Chromium,6684,20290 +1724242500,DNS over TLS,15724,66796 +1724242500,DNS over HTTPS,137753,357196 +1724242800,Thin Manager TFTP,108,108 +1724242800,__unknown,8164896,4498589 +1724242800,ICMP,4756,0 +1724242800,DNS over HTTPS,93409,203293 +1724242800,HTTPS,216287,38853 +1724242800,HTTPS,1835214,388432 +1724242800,SSL client,53557,68141 +1724242800,Telegram,53557,68141 +1724242800,HTTPS,25864,32922 +1724242800,__unknown,258,1204 +1724242800,HTTPS,2345,1392 +1724242800,__unknown,1556,11018 +1724242800,HTTP,3508,22231 +1724242800,HTTPS,41753,71371 +1724242800,iCloud,2435,16532 +1724242800,SSL client,10523,43220 +1724242800,GitHub,8088,26688 +1724242800,Telegram,3508,22231 +1724242800,__unknown,73273,332231 +1724242800,Google,6334,18017 +1724242800,Windows Live,5101,9494 +1724242800,VKontakte,69914,165388 +1724242800,HTTPS,133791,225311 +1724242800,SSL client,81349,192899 +1724242800,ICMP,2072,2072 +1724242800,DNS over HTTPS,0,1251 +1724242800,__unknown,81399,116880 +1724242800,Google,216110,1637821 +1724242800,Google Calendar,13050,16234 +1724242800,HTTP,1578,1164 +1724242800,HTTPS,277607,1792456 +1724242800,SSL client,232261,1664124 +1724242800,Google Play,3101,10069 +1724242800,ICMP,4808,4144 +1724242800,DNS over HTTPS,1403,5578 +1724242800,__unknown,1805520,8189708 +1724242800,BITS,6386,33873 +1724242800,BitTorrent,310,496 +1724242800,Google APIs,400559,244134 +1724242800,Google Drive,7999,18235 +1724242800,Google,355554,16140945 +1724242800,DNS,31815,156 +1724242800,Gmail,2716688,11769299 +1724242800,HTTP,60835,5354465 +1724242800,Microsoft Update,981,887 +1724242800,NetBIOS-dgm,243,0 +1724242800,NTP,1800,1800 +1724242800,SSL,1534,1392 +1724242800,STUN,33692,1480 +1724242800,YouTube,7332,13305 +1724242800,VKontakte,3967,24847 +1724242800,Odnoklassniki,2610,7560 +1724242800,HTTPS,4071441,35712618 +1724242800,WhatsApp,9307,198485 +1724242800,Apple sites,4459,36077 +1724242800,iCloud,52230,12864 +1724242800,Mozilla,4097,2686 +1724242800,SSL client,3699997,31960441 +1724242800,Microsoft,49969,5313043 +1724242800,Yandex,81497,3025681 +1724242800,GitHub,8829,26679 +1724242800,Nvidia,3938,8674 +1724242800,Microsoft CryptoAPI,3278,5898 +1724242800,Google Play,29791,41394 +1724242800,Google Hangouts,1534,1392 +1724242800,ICMP,95829,10618 +1724242800,ICMP for IPv6,282,0 +1724242800,Gmail attachment,7600,364441 +1724242800,Telegram,4835,16037 +1724242800,Google Sign in,4975,8004 +1724242800,Thin Manager TFTP,276,106 +1724242800,Amp,6338,214224 +1724242800,DNS over HTTPS,41336,114524 +1724242800,CoAP,1568,1152 +1724242800,__unknown,2051701,14338317 +1724242800,Bing,3334,22824 +1724242800,BITS,1530,14469 +1724242800,BitTorrent,798,515 +1724242800,DHCPv6,1141,0 +1724242800,Google APIs,726177,14575684 +1724242800,Google Drive,2017,8219 +1724242800,Google,338012,1684616 +1724242800,Kaspersky,509,537 +1724242800,MSN,578,502 +1724242800,QQ,738,343 +1724242800,Skype Auth,779,432 +1724242800,Yahoo!,163195,689906 +1724242800,BitTorrent tracker,612,515 +1724242800,Chrome,51557,23449 +1724242800,DNS,64131,59098 +1724242800,Firefox,822,1130 +1724242800,Gmail,12548,12720 +1724242800,HTTP,864475,114051900 +1724242800,Internet Explorer,738,343 +1724242800,iTunes,853,5875 +1724242800,Launchpad,3126,2190 +1724242800,Microsoft Update,5150,47075 +1724242800,NTP,540,540 +1724242800,Skype,1710,5401 +1724242800,SSL,1708,3824 +1724242800,STUN,700,740 +1724242800,YouTube,2483,14576 +1724242800,Yahoo! Mail,58041,2773420 +1724242800,VKontakte,9032,21149 +1724242800,Odnoklassniki,3951,7453 +1724242800,Advanced Packaging Tool,368469,16255757 +1724242800,HTTPS,3259658,39641211 +1724242800,Spotify,2832,9327 +1724242800,Apple sites,18851,89117 +1724242800,iCloud,265955,306903 +1724242800,Mozilla,14902,26565 +1724242800,Avast,2839,24309 +1724242800,SSL client,2198113,32281146 +1724242800,Pubmatic,7895,7161 +1724242800,Ubuntu Update Manager,362947,16251404 +1724242800,Microsoft,1689,21511 +1724242800,Mail.Ru,108103,298853 +1724242800,Yandex,274773,10387788 +1724242800,Akamai,30884,984121 +1724242800,GitHub,64569,116053 +1724242800,TRUSTe,3716,20867 +1724242800,Ubuntu,5372,5370 +1724242800,Brightcove,13881,10273 +1724242800,Nvidia,7703,16605 +1724242800,Microsoft CryptoAPI,28660,42869 +1724242800,Microsoft NCSI,1063,1106 +1724242800,Microsoft WNS,1211,8469 +1724242800,Apple Maps,5010,20216 +1724242800,Rubicon Project,8734,18274 +1724242800,33Across,2321,8037 +1724242800,Google Play,38677,55360 +1724242800,Office 365,327567,97603414 +1724242800,ICMP,10867,3082 +1724242800,Gmail attachment,388,284 +1724242800,Demandbase,2130,10387 +1724242800,Telegram,48395,270209 +1724242800,Zoom,6106,14466 +1724242800,Thin Manager TFTP,796,788 +1724242800,Edge Chromium,7678,23529 +1724242800,DNS over TLS,11187,47453 +1724242800,DNS over HTTPS,263742,653255 +1724242800,Notion,3626,8198 +1724243099,__unknown,1880422,1220399 +1724243099,__unknown,327,198 +1724243099,HTTPS,9857,14886 +1724243099,ICMP,3936,0 +1724243099,HTTPS,912909,228795 +1724243099,SSL client,912909,228795 +1724243099,Google Play,866952,219123 +1724243099,Dropbox Download,45957,9672 +1724243099,__unknown,2610,8166 +1724243099,Google,34780,30757 +1724243099,HTTP,6433,4031 +1724243099,HTTPS,57663,348718 +1724243099,SSL client,34780,30757 +1724243099,ICMP,6104,444 +1724243099,Telegram,5376,3209 +1724243099,__unknown,98746,353270 +1724243099,Google,50114,44986 +1724243099,SSL,13661,7921 +1724243099,HTTPS,202595,691834 +1724243099,APNS,10581,5063 +1724243099,Avast,7535,2901 +1724243099,SSL client,103271,110753 +1724243099,GitHub,13563,44291 +1724243099,Google Play,18398,10654 +1724243099,Google Hangouts,3080,2858 +1724243099,ICMP,3514,2516 +1724243099,Telegram,1356,628 +1724243099,DNS over HTTPS,3279,10017 +1724243099,__unknown,1997590,17473728 +1724243099,BITS,8055,174594 +1724243099,BitTorrent,1736,434 +1724243099,Google APIs,20817,99413 +1724243099,Google Drive,8918,18455 +1724243099,Google,111880,375525 +1724243099,Android browser,750,666 +1724243099,DNS,27977,0 +1724243099,Facebook,5784,88228 +1724243099,Gmail,43839,53551 +1724243099,Google Analytics,1485,1633 +1724243099,HTTP,12929,181829 +1724243099,Microsoft Update,641,507 +1724243099,NTP,24040,5550 +1724243099,STUN,1990,1850 +1724243099,VKontakte,7413,28073 +1724243099,HTTPS,859607,2460035 +1724243099,WhatsApp,5456,23789 +1724243099,iCloud,4228,9887 +1724243099,Mozilla,7667,5012 +1724243099,SSL client,239825,797922 +1724243099,Microsoft,8055,174594 +1724243099,VeriSign,566,2141 +1724243099,NPR,382,522 +1724243099,Yandex,6483,56799 +1724243099,GitHub,6421,21703 +1724243099,Nvidia,3634,7474 +1724243099,Microsoft CryptoAPI,3742,6047 +1724243099,Office 365,1403,14041 +1724243099,ICMP,36834,13254 +1724243099,Gmail attachment,284,0 +1724243099,Telegram,21714,50013 +1724243099,Thin Manager TFTP,472,358 +1724243099,DNS over HTTPS,38588,100435 +1724243099,__unknown,20795156,10475807 +1724243099,Apple Update,2285,5340 +1724243099,Bing,5987,19959 +1724243099,BITS,555,1124 +1724243099,BitTorrent,463,847 +1724243099,DHCPv6,978,0 +1724243099,Eset,1500,474 +1724243099,Google APIs,56194,128736 +1724243099,Google,85576,204850 +1724243099,QQ,678,343 +1724243099,Windows Live,3663,19767 +1724243099,Yahoo!,14873,48678 +1724243099,Android browser,589,399 +1724243099,BitTorrent tracker,153,537 +1724243099,Chrome,3392,3022 +1724243099,DNS,93087,98283 +1724243099,Firefox,1120,2460 +1724243099,Gmail,58573,22047 +1724243099,Google Analytics,8233,4752 +1724243099,HTTP,138027,141879 +1724243099,Internet Explorer,678,343 +1724243099,Launchpad,2560,1984 +1724243099,Microsoft Update,4253,3366 +1724243099,NTP,13830,4080 +1724243099,STUN,328,296 +1724243099,VKontakte,7025,15424 +1724243099,Advanced Packaging Tool,23592,21772 +1724243099,HTTPS,1651840,10469542 +1724243099,WhatsApp,9436,137278 +1724243099,Apple sites,7764,27346 +1724243099,iCloud,280556,158907 +1724243099,Mozilla,2553,4865 +1724243099,SSL client,1094799,5257447 +1724243099,Ubuntu Update Manager,18049,17102 +1724243099,Microsoft,1320,15934 +1724243099,VeriSign,566,2141 +1724243099,Mail.Ru,1300,4965 +1724243099,Yandex,200826,4283318 +1724243099,GitHub,39199,73460 +1724243099,Ubuntu,3833,3604 +1724243099,Nvidia,10982,23559 +1724243099,Microsoft CryptoAPI,8207,9403 +1724243099,Microsoft NCSI,537,553 +1724243099,Microsoft WNS,1320,15934 +1724243099,Apple Maps,1542,5050 +1724243099,Rubicon Project,43470,59769 +1724243099,33Across,2261,7977 +1724243099,Google Play,230102,29886 +1724243099,Rambler,7334,23983 +1724243099,Office 365,2082,21426 +1724243099,ICMP,5696,2812 +1724243099,Mail.ru Attachment,3362,14437 +1724243099,Telegram,52375,284106 +1724243099,Google Sign in,5813,4230 +1724243099,Edge Chromium,5037,16144 +1724243099,DNS over TLS,10260,42952 +1724243099,DNS over HTTPS,74104,267242 +1724243099,DeepL Translator,2183,7073 +1724243099,Notion,2454,5636 +1724243399,Thin Manager TFTP,672,280 +1724243399,__unknown,18783311,17741253 +1724243399,Google,44795,288559 +1724243399,Gmail,15700,25932 +1724243399,HTTP,1274,1193 +1724243399,SSL,2464,18464 +1724243399,Advanced Packaging Tool,1274,1193 +1724243399,IMAPS,24103,55012 +1724243399,HTTPS,537844,1279891 +1724243399,SSL client,541049,1297323 +1724243399,Ad Nexus,71983,14163 +1724243399,Samsung,3901,15970 +1724243399,Ubuntu Update Manager,1274,1193 +1724243399,Microsoft,24151,21667 +1724243399,NIH,6034,7348 +1724243399,Mail.Ru,18551,56478 +1724243399,Yandex,10624,17507 +1724243399,Nvidia,337389,815986 +1724243399,Rambler,2048,9914 +1724243399,Office 365,1654,7167 +1724243399,ICMP,29848,0 +1724243399,OneDrive,2802,10662 +1724243399,Google Sign in,1417,5970 +1724243399,DNS over HTTPS,2124,5099 +1724243399,CoAP,10878,7957 +1724243399,HTTPS,1535748,234351 +1724243399,SSL,5364,12161 +1724243399,HTTP,685,186 +1724243399,HTTPS,1375324,262710 +1724243399,SSL client,1375324,262710 +1724243399,Google Play,1375324,262710 +1724243399,__unknown,8364,7052 +1724243399,HTTPS,4779,3029 +1724243399,SSL client,4779,3029 +1724243399,Yandex,4779,3029 +1724243399,__unknown,366,223 +1724243399,__unknown,261,180 +1724243399,Google,75641,51489 +1724243399,HTTPS,75641,51489 +1724243399,SSL client,75641,51489 +1724243399,__unknown,2210,1344 +1724243399,HTTP,3143,2388 +1724243399,HTTPS,30392,12006 +1724243399,HTTP,1751,924 +1724243399,HTTPS,26957,779280 +1724243399,ICMP,2398,518 +1724243399,Telegram,1751,924 +1724243399,__unknown,442921,3339231 +1724243399,Google,29004,120722 +1724243399,SSL,9580,8612 +1724243399,HTTPS,173066,4905980 +1724243399,Spotify,2119,5421 +1724243399,SSL client,139630,4465665 +1724243399,Microsoft,3466,2028 +1724243399,Yandex,105041,4337494 +1724243399,ICMP,12732,10116 +1724243399,DNS over HTTPS,6266,15265 +1724243399,CoAP,2156,1512 +1724243399,__unknown,2206317,25584474 +1724243399,BitTorrent,1116,0 +1724243399,DHCPv6,163,0 +1724243399,Google APIs,104835,56089 +1724243399,Google Drive,51267,19296 +1724243399,Google,150922,438573 +1724243399,Yahoo!,7817,13363 +1724243399,Android browser,457,333 +1724243399,DNS,53863,308 +1724243399,Gmail,6204,38064 +1724243399,HTTP,3026,2491 +1724243399,Microsoft Update,2569,2158 +1724243399,NetBIOS-dgm,250,0 +1724243399,NTP,630,630 +1724243399,SSL,55239,6975 +1724243399,STUN,1804,1628 +1724243399,VKontakte,11917,20410 +1724243399,HTTPS,2281913,208618428 +1724243399,WhatsApp,6007,97897 +1724243399,APNS,55239,6975 +1724243399,SSL client,2023403,207015080 +1724243399,Microsoft,4146,2568 +1724243399,Yandex,1618989,206384854 +1724243399,Microsoft CryptoAPI,2569,2158 +1724243399,Google Play,2949,2575 +1724243399,CloudFlare,1183,3361 +1724243399,ICMP,21627,10494 +1724243399,ICMP for IPv6,70,0 +1724243399,Telegram,1131,560 +1724243399,Google Inbox,6045,10714 +1724243399,Microsoft Teams,2347,18571 +1724243399,DNS over HTTPS,36904,120974 +1724243399,__unknown,2185915,23762058 +1724243399,BitTorrent,798,515 +1724243399,Google APIs,23993,114644 +1724243399,Google,87393,212857 +1724243399,Google Translate,7439,8329 +1724243399,MSN,1154,1002 +1724243399,Yahoo!,5020,14658 +1724243399,Android browser,1139,933 +1724243399,BitTorrent tracker,612,515 +1724243399,Chrome,2545,1741 +1724243399,DNS,110830,152263 +1724243399,Firefox,4737,5576 +1724243399,Gmail,6262,3929 +1724243399,Google Analytics,2269,6950 +1724243399,HTTP,146367,151303 +1724243399,Launchpad,3134,2414 +1724243399,Microsoft Update,642,508 +1724243399,NetBIOS-dgm,243,0 +1724243399,NTP,1440,1440 +1724243399,STUN,2108,3522 +1724243399,YouTube,31521,567806 +1724243399,VKontakte,16972,41255 +1724243399,Steam,1394,10210 +1724243399,Advanced Packaging Tool,28864,26064 +1724243399,HTTPS,1367716,14256087 +1724243399,WhatsApp,7550,232285 +1724243399,Apple sites,3872,13813 +1724243399,iCloud,55613,68450 +1724243399,Mozilla,5967,6912 +1724243399,Avast,382,391 +1724243399,SSL client,455527,6019416 +1724243399,GoDaddy,522,2992 +1724243399,Ubuntu Update Manager,21004,19764 +1724243399,Microsoft,3458,5174 +1724243399,Mail.Ru,8354,18707 +1724243399,Yandex,134555,4789330 +1724243399,Ubuntu,7408,6636 +1724243399,Nvidia,22097,56849 +1724243399,Microsoft CryptoAPI,8446,11412 +1724243399,Microsoft NCSI,2115,3061 +1724243399,Microsoft WNS,1154,1002 +1724243399,Apple Maps,1727,10121 +1724243399,Rubicon Project,32150,41428 +1724243399,Pocket,3390,3372 +1724243399,Rambler,8525,29541 +1724243399,ICMP,6194,2442 +1724243399,ICMP for IPv6,282,0 +1724243399,Gmail attachment,530,284 +1724243399,Telegram,5574,2929 +1724243399,Thin Manager TFTP,276,106 +1724243399,Edge Chromium,5558,18660 +1724243399,Grammarly,1943,7405 +1724243399,DNS over TLS,5461,23853 +1724243399,DNS over HTTPS,22123,77335 +1724243399,Notion,1427,6405 +1724243700,__unknown,518728,598853 +1724243700,Bing,22998,469891 +1724243700,Google,1061,4567 +1724243700,Yahoo!,7767,6497 +1724243700,HTTPS,1729151,28799173 +1724243700,Mozilla,3492,55571 +1724243700,Avast,1122,8330 +1724243700,SSL client,1583594,26624511 +1724243700,Microsoft,129206,46078 +1724243700,Mail.Ru,35411,34158 +1724243700,Yandex,299402,344185 +1724243700,Nvidia,14478,21301 +1724243700,Rambler,56052,48363 +1724243700,Office 365,998082,25558101 +1724243700,Sharepoint Online,11841,16807 +1724243700,OneDrive,2682,10662 +1724243700,Telegram,3860,34768 +1724243700,DNS over HTTPS,2437,8197 +1724243700,__unknown,1317698,1081364 +1724243700,Bing,18991,61591 +1724243700,Dropbox,182574,237399 +1724243700,Google APIs,34873,123307 +1724243700,Google,16067,55722 +1724243700,MSN,13608,43988 +1724243700,QQ,2297,6618 +1724243700,Adobe Software,872,4744 +1724243700,Gmail,36105,60936 +1724243700,HTTP,12739,10491 +1724243700,iTunes,6260,27272 +1724243700,Launchpad,640,496 +1724243700,Skype,17926,91024 +1724243700,SSL,28376,18793 +1724243700,VKontakte,35428,151547 +1724243700,Advanced Packaging Tool,640,496 +1724243700,IMAPS,43486,85056 +1724243700,HTTPS,5670412,35416991 +1724243700,WhatsApp,2041,8689 +1724243700,Apple sites,79561,1751698 +1724243700,iCloud,27116,57881 +1724243700,Mozilla,51368,22298 +1724243700,SSL client,3475437,31660540 +1724243700,Ad Nexus,144263,28713 +1724243700,Samsung,26406,7667 +1724243700,Microsoft,348238,822149 +1724243700,Mail.Ru,622065,1948363 +1724243700,Yandex,964733,25150814 +1724243700,Game Center,1964,18344 +1724243700,Intel,2226,9883 +1724243700,Nvidia,249105,560679 +1724243700,Microsoft CryptoAPI,1698,5758 +1724243700,Apple Maps,7695,48714 +1724243700,Google Play,3709,8484 +1724243700,Rambler,36125,64408 +1724243700,WeChat,6643,2429 +1724243700,Exchange Online,3750,8096 +1724243700,Office 365,126247,115601 +1724243700,Sharepoint Online,4420,5644 +1724243700,Microsoft Windows Live Services Authentication,26134,65838 +1724243700,smpnameres,492,785 +1724243700,OneDrive,7004,19794 +1724243700,Telegram,30034,198654 +1724243700,GISMETEO,2260,9617 +1724243700,Kinopoisk,17234,48634 +1724243700,Xiaomi,327313,18720 +1724243700,Grammarly,3255,7943 +1724243700,Stripe,29922,30648 +1724243700,Apple News,2494,7093 +1724243700,DNS over HTTPS,40434,134265 +1724243700,_err_4655,1175,1266 +1724243700,HTTPS,28790,379303 +1724243700,__unknown,0,5767 +1724243700,__unknown,0,342 +1724243700,ICMP,4386,0 +1724243700,DNS over HTTPS,2278,10785 +1724243700,SSL,2587,9056 +1724243700,HTTPS,9278,13237 +1724243700,SSL client,9278,13237 +1724243700,DNS over HTTPS,9278,13237 +1724243700,Google,25922,30494 +1724243700,HTTPS,25922,30494 +1724243700,SSL client,25922,30494 +1724243700,ICMP,4352,0 +1724243700,DNS over HTTPS,156,66 +1724243700,__unknown,52624,83844 +1724243700,Google,182964,103480 +1724243700,HTTPS,196420,252979 +1724243700,SSL client,182964,103480 +1724243700,ICMP,5738,3952 +1724243700,__unknown,214542,57851 +1724243700,Google APIs,16999,159620 +1724243700,HTTP,595,120 +1724243700,HTTPS,309892,657498 +1724243700,SSL client,16999,159620 +1724243700,ICMP,3572,0 +1724243700,Telegram,665,120 +1724243700,__unknown,185325,3297449 +1724243700,Google APIs,9780,12814 +1724243700,Google,10843,26199 +1724243700,Yahoo!,195385,110341 +1724243700,HTTP,637,348 +1724243700,Yahoo! Mail,2803208,1331459 +1724243700,Odnoklassniki,2464,7555 +1724243700,HTTPS,3113387,1606386 +1724243700,SSL client,3043596,1528678 +1724243700,CloudFront,1524,1887 +1724243700,Yandex,5641,11725 +1724243700,ICMP,4128,4068 +1724243700,Telegram,637,348 +1724243700,DNS over HTTPS,40565,104981 +1724243700,__unknown,3819333,9004716 +1724243700,BitTorrent,496,496 +1724243700,DHCPv6,978,0 +1724243700,Google APIs,174806,271405 +1724243700,Google Drive,7467,10337 +1724243700,Google,780377,3649494 +1724243700,MSN,578,502 +1724243700,Chrome,565,484 +1724243700,DNS,33814,0 +1724243700,Firefox,4840,6614 +1724243700,Gmail,14651,23722 +1724243700,HTTP,7236,16028 +1724243700,NTP,1080,1080 +1724243700,Skype,1467,8081 +1724243700,SSL,13646,6776 +1724243700,STUN,1066,962 +1724243700,YouTube,2412,12220 +1724243700,Odnoklassniki,2609,7500 +1724243700,HTTPS,1461099,11862845 +1724243700,APNS,13646,6776 +1724243700,iCloud,18065,16521 +1724243700,Mozilla,7111,4148 +1724243700,SSL client,1183410,10445069 +1724243700,Microsoft,693,7966 +1724243700,Yandex,152449,6416086 +1724243700,Microsoft CryptoAPI,560,462 +1724243700,Microsoft WNS,1271,8468 +1724243700,Google Play,1475,1618 +1724243700,CloudFlare,1256,1071 +1724243700,ICMP,37178,9430 +1724243700,Telegram,48011,29162 +1724243700,Google Inbox,5619,16090 +1724243700,Thin Manager TFTP,196,252 +1724243700,DNS over HTTPS,29957,85433 +1724243700,__unknown,3744346,45399449 +1724243700,BitTorrent,339,198 +1724243700,DHCPv6,163,0 +1724243700,Dropbox,3037,4971 +1724243700,Eset,903,530 +1724243700,Google APIs,45701,131567 +1724243700,Google Drive,25107,38919 +1724243700,Google,340074,1221458 +1724243700,QQ,678,343 +1724243700,Yahoo!,5380,6115 +1724243700,Adobe Software,728,4098 +1724243700,BitTorrent tracker,153,198 +1724243700,Chrome,1771,1456 +1724243700,DNS,57688,58341 +1724243700,Firefox,5346,7615 +1724243700,HTTP,137577,150961 +1724243700,Internet Explorer,678,343 +1724243700,Launchpad,3200,2480 +1724243700,Microsoft Update,1929,1504 +1724243700,NTP,13200,3450 +1724243700,SSL,16781,19643 +1724243700,YouTube,8580,110401 +1724243700,VKontakte,25898,65094 +1724243700,Advanced Packaging Tool,31982,30041 +1724243700,HTTPS,1545533,11591002 +1724243700,Apple sites,14824,73076 +1724243700,iCloud,15050,38283 +1724243700,Avast,1671,22990 +1724243700,SSL client,615873,3070071 +1724243700,Ubuntu Update Manager,23439,22099 +1724243700,Microsoft,699,7966 +1724243700,Mail.Ru,14221,28778 +1724243700,Yandex,62945,1259224 +1724243700,Ubuntu,6330,6145 +1724243700,Nvidia,27269,17131 +1724243700,Microsoft CryptoAPI,5413,4422 +1724243700,Microsoft NCSI,1025,1008 +1724243700,Microsoft WNS,699,7966 +1724243700,Rubicon Project,7010,9797 +1724243700,ContextWeb,1548,937 +1724243700,Rambler,2262,11080 +1724243700,ICMP,3480,2812 +1724243700,ICMP for IPv6,70,0 +1724243700,Telegram,124696,591537 +1724243700,Thin Manager TFTP,568,438 +1724243700,Edge Chromium,5630,17500 +1724243700,DNS over TLS,13790,53003 +1724243700,DNS over HTTPS,30169,113451 +1724243700,_err_4655,3783,3230 +1724244000,__unknown,318771,5955153 +1724244000,HTTPS,2084,1347 +1724244000,__unknown,200159,43050 +1724244000,Bing,2065,10597 +1724244000,Google APIs,768849,63681 +1724244000,Google Analytics,5520,7667 +1724244000,HTTP,460,2915 +1724244000,SSL,29005,13056 +1724244000,4shared,26949,448761 +1724244000,Advanced Packaging Tool,460,2915 +1724244000,HTTPS,2050522,47355860 +1724244000,Apple sites,2510,10896 +1724244000,Mozilla,4830,11120 +1724244000,Avast,2244,18988 +1724244000,SSL client,1116754,1721185 +1724244000,Ad Nexus,1775,6616 +1724244000,Ubuntu Update Manager,460,2915 +1724244000,Microsoft,20129,41271 +1724244000,Mail.Ru,43089,49216 +1724244000,Yandex,210241,912739 +1724244000,Nvidia,7552,14609 +1724244000,Apple Maps,2978,6558 +1724244000,Google Play,6708,3659 +1724244000,Sharepoint Online,9098,115473 +1724244000,Microsoft Windows Live Services Authentication,5195,5892 +1724244000,smpnameres,60973,20388 +1724244000,Telegram,5654,16414 +1724244000,DNS over HTTPS,19458,55764 +1724244000,__unknown,2056857,5615725 +1724244000,Apple Update,1829,5149 +1724244000,Bing,170250,109473 +1724244000,Google APIs,300950,165715 +1724244000,Google,130632,218261 +1724244000,MSN,1049,7286 +1724244000,QQ,678,343 +1724244000,Yahoo!,7904,6640 +1724244000,Android browser,500,2550 +1724244000,Chrome,4737,2030 +1724244000,Gmail,33699,1954532 +1724244000,HTTP,229651,1460704 +1724244000,Internet Explorer,1227,682 +1724244000,LiveJournal,9961,25094 +1724244000,Microsoft Update,3276,4913 +1724244000,Reddit,218537,330699 +1724244000,Skype,9938,101374 +1724244000,SSL,21468,10050 +1724244000,VKontakte,4951,9314 +1724244000,RuTube,18704,1418824 +1724244000,IMAPS,34166,1969047 +1724244000,HTTPS,4460165,33378679 +1724244000,WhatsApp,8280,85354 +1724244000,APNS,15301,9181 +1724244000,Apple sites,19723,108628 +1724244000,iCloud,118052,364855 +1724244000,SSL client,2443579,14542613 +1724244000,Ad Nexus,145519,33529 +1724244000,Samsung,72210,18919 +1724244000,Microsoft,152734,373680 +1724244000,Mail.Ru,320805,960053 +1724244000,Yandex,430561,7678075 +1724244000,Ubuntu,1203,4840 +1724244000,Nvidia,11366,27927 +1724244000,Microsoft CryptoAPI,5674,110130 +1724244000,Google Play,22271,10417 +1724244000,Rambler,32646,49048 +1724244000,Exchange Online,12614,11582 +1724244000,Office 365,17988,24577 +1724244000,Sharepoint Online,14510,231752 +1724244000,Microsoft Windows Live Services Authentication,89688,233676 +1724244000,Office Mobile,8766,8168 +1724244000,Telegram,29988,824723 +1724244000,Sberbank of Russia,11759,24617 +1724244000,GISMETEO,2694,11875 +1724244000,Google Sign in,2738,7877 +1724244000,Stripe,24559,14169 +1724244000,DNS over TLS,616,6586 +1724244000,Microsoft Teams,2558,7528 +1724244000,DNS over HTTPS,14101,37836 +1724244000,HTTPS,2366,7285 +1724244000,__unknown,122703,3525813 +1724244000,__unknown,37546,975654 +1724244000,HTTPS,15845,22060 +1724244000,SSL client,15845,22060 +1724244000,DNS over HTTPS,15845,22060 +1724244000,HTTP,59849,43716 +1724244000,SSL,86695,27336 +1724244000,APNS,86695,27336 +1724244000,SSL client,86695,27336 +1724244000,ICMP,6960,6780 +1724244000,Google Translate,26001,19411 +1724244000,HTTPS,81241,140918 +1724244000,SSL client,45118,103641 +1724244000,Yandex,19117,84230 +1724244000,DNS over HTTPS,21738,46113 +1724244000,__unknown,524658,882686 +1724244000,HTTPS,73371,62799 +1724244000,SSL client,45897,9433 +1724244000,Dropbox Download,45897,9433 +1724244000,ICMP,962,962 +1724244000,__unknown,1276019,88795072 +1724244000,Google,44826,45567 +1724244000,Gmail,1104207,849038 +1724244000,HTTPS,1439453,11423582 +1724244000,SSL client,1306688,7125671 +1724244000,Yandex,132198,5705314 +1724244000,Akamai,2657,6923 +1724244000,ICMP,5396,2960 +1724244000,9Gag,22800,518829 +1724244000,__unknown,2699276,9790979 +1724244000,Bing,4375,7725 +1724244000,BitTorrent,616,694 +1724244000,Google APIs,171326,150218 +1724244000,Google Drive,16816,6743 +1724244000,Google,133443,306468 +1724244000,Yahoo!,61181,39146 +1724244000,BitTorrent tracker,306,198 +1724244000,DNS,21081,0 +1724244000,Gmail,6242,8572 +1724244000,HTTP,6717,6750 +1724244000,Microsoft Update,2904,2450 +1724244000,NetBIOS-dgm,250,0 +1724244000,NTP,450,450 +1724244000,SSL,46516,17376 +1724244000,STUN,2342,1850 +1724244000,YouTube,1545,2630 +1724244000,VKontakte,6305,10784 +1724244000,Odnoklassniki,7281,21937 +1724244000,HTTPS,1157687,7836561 +1724244000,Mozilla,1876,4611 +1724244000,SSL client,519183,702097 +1724244000,CloudFront,1826,8061 +1724244000,Yandex,7921,21048 +1724244000,Microsoft CryptoAPI,5454,4659 +1724244000,Google Play,55546,12614 +1724244000,CloudFlare,8464,16727 +1724244000,Rambler,1263,5570 +1724244000,Garmin,7647,19139 +1724244000,ICMP,60742,11938 +1724244000,Telegram,2160,32963 +1724244000,9Gag,2283,2360 +1724244000,Google Sign in,10051,15702 +1724244000,Google Inbox,13792,42042 +1724244000,Thin Manager TFTP,108,108 +1724244000,DNS over HTTPS,24915,71244 +1724244000,__unknown,2826776,33456922 +1724244000,Apple Update,1672,5532 +1724244000,Bing,15473,34775 +1724244000,BitTorrent,459,515 +1724244000,DHCPv6,978,0 +1724244000,Google APIs,97553,100922 +1724244000,Google Drive,4683,22243 +1724244000,Google,130569,2567799 +1724244000,QQ,678,343 +1724244000,Android browser,1368,1200 +1724244000,BitTorrent tracker,459,515 +1724244000,Chrome,643,550 +1724244000,DNS,138586,111028 +1724244000,Firefox,5387,7512 +1724244000,Gmail,15422,95668 +1724244000,Google Analytics,4340,7592 +1724244000,Google Calendar,2249,8607 +1724244000,HTTP,224488,234138 +1724244000,Internet Explorer,1440,1003 +1724244000,Launchpad,3200,2480 +1724244000,Microsoft Update,1888,1510 +1724244000,NTP,2340,2430 +1724244000,SSL,30845,61980 +1724244000,STUN,30484,148 +1724244000,VKontakte,24897,36653 +1724244000,Advanced Packaging Tool,30932,28273 +1724244000,IMAPS,15422,95668 +1724244000,HTTPS,1866668,14765199 +1724244000,Apple sites,26220,102237 +1724244000,iCloud,226027,93751 +1724244000,Avast,382,391 +1724244000,SSL client,845445,11815148 +1724244000,Ad Nexus,2226,6607 +1724244000,Apple Stocks,2831,7648 +1724244000,Ubuntu Update Manager,22353,20951 +1724244000,Microsoft,633,7966 +1724244000,VeriSign,1132,4280 +1724244000,Yandex,215254,8591544 +1724244000,Ubuntu,7145,6678 +1724244000,Nvidia,29316,18576 +1724244000,Microsoft CryptoAPI,9216,12163 +1724244000,Microsoft NCSI,805,966 +1724244000,Microsoft WNS,633,7966 +1724244000,Viber,3739,17548 +1724244000,Rubicon Project,9167,11468 +1724244000,Google Play,12903,13078 +1724244000,Rambler,6203,18391 +1724244000,Office 365,940,1296 +1724244000,Google Hangouts,1528,14184 +1724244000,ICMP,5647,3700 +1724244000,Gmail attachment,672,284 +1724244000,Yandex Market,2685,8319 +1724244000,Telegram,35440,58389 +1724244000,Edge Chromium,6097,18218 +1724244000,Grammarly,2233,7887 +1724244000,DNS over TLS,6127,23925 +1724244000,DNS over HTTPS,19760,54847 +1724244000,_err_4655,5649,4740 +1724244000,Notion,1055,4394 +1724244300,__unknown,1396271,673994 +1724244300,Dropbox,12579,5548 +1724244300,HTTPS,15818,7193 +1724244300,SSL client,12579,5548 +1724244300,DNS over HTTPS,82066,184185 +1724244300,__unknown,711331,261550 +1724244300,Dropbox,7366,6748 +1724244300,SSL,118920,73586 +1724244300,4shared,11955,92809 +1724244300,HTTPS,4203535,107324901 +1724244300,APNS,104540,64631 +1724244300,SSL client,4254913,106949255 +1724244300,Yandex,4131052,106785067 +1724244300,__unknown,245399,2953309 +1724244300,Google APIs,6568,16986 +1724244300,Google Drive,116616,4651505 +1724244300,Google,35373,349226 +1724244300,HTTP,3612,3300 +1724244300,iTunes,8500,14673 +1724244300,Microsoft Update,1702,1328 +1724244300,HP Home & Home Office Store,3655,6906 +1724244300,SSL,31830,11294 +1724244300,TeamViewer,1508,8838 +1724244300,VKontakte,6226,11981 +1724244300,HTTPS,1241467,8431497 +1724244300,Apple sites,1587,7416 +1724244300,iCloud,23697,62407 +1724244300,Mozilla,13663,17318 +1724244300,SSL client,876521,6429696 +1724244300,Samsung,5221,15596 +1724244300,Microsoft,55039,137528 +1724244300,Mail.Ru,79473,59368 +1724244300,Yandex,91445,690478 +1724244300,Nvidia,6357,12629 +1724244300,Microsoft CryptoAPI,3153,2560 +1724244300,Google Play,291476,60448 +1724244300,Rambler,83785,45567 +1724244300,Sharepoint Online,22974,212246 +1724244300,Microsoft Windows Live Services Authentication,8518,22841 +1724244300,Battle.net site,2258,3973 +1724244300,Google Sign in,5014,3717 +1724244300,Xiaomi,2228,4901 +1724244300,Microsoft Teams,3866,7072 +1724244300,Apple News,1474,6076 +1724244300,DNS over HTTPS,925,6688 +1724244300,__unknown,1447912,5129244 +1724244300,Apple Update,1722,5081 +1724244300,Bing,3284,6482 +1724244300,Dropbox,2046,1495 +1724244300,Google APIs,30158,83235 +1724244300,Google,53044,2306554 +1724244300,MSN,13781,58071 +1724244300,OpenVPN,0,395 +1724244300,Adobe Software,2167,5996 +1724244300,Chrome,549,206 +1724244300,Gmail,12166,16046 +1724244300,Google Analytics,3511,29403 +1724244300,HTTP,100750,4606487 +1724244300,iTunes,13501,19611 +1724244300,LiveJournal,18066,334354 +1724244300,Microsoft Update,586,499 +1724244300,Reddit,11281,6273 +1724244300,Skype,9256,26658 +1724244300,SSL,44058,34842 +1724244300,YouTube,11539,9834 +1724244300,VKontakte,10724,23259 +1724244300,Advanced Packaging Tool,93189,4586242 +1724244300,IMAPS,20646,44872 +1724244300,HTTPS,3072175,69325201 +1724244300,WhatsApp,16236,115863 +1724244300,APNS,1153,4832 +1724244300,Apple sites,25352,2079459 +1724244300,iCloud,75181,145877 +1724244300,Avast,5999,13365 +1724244300,SSL client,2094472,20818463 +1724244300,Ad Nexus,218496,42954 +1724244300,Amazon Web Services,3259,21370 +1724244300,Ubuntu Update Manager,1214,1226 +1724244300,Microsoft,77208,129466 +1724244300,Mail.Ru,348844,436260 +1724244300,Yandex,573439,13427774 +1724244300,GitHub,12513,843323 +1724244300,Ubuntu,91975,4585016 +1724244300,Splunk,10931,8914 +1724244300,Nvidia,91111,57381 +1724244300,Microsoft CryptoAPI,4032,11086 +1724244300,Apple Maps,14042,54704 +1724244300,Rambler,5962,9566 +1724244300,Office 365,8169,94017 +1724244300,Sharepoint Online,16098,310592 +1724244300,Microsoft Windows Live Services Authentication,41813,99973 +1724244300,smpnameres,33438,20630 +1724244300,Alipay,5696,18166 +1724244300,Weborama,6047,14011 +1724244300,Office Mobile,17295,10730 +1724244300,Telegram,115554,2512972 +1724244300,Xiaomi,302229,17400 +1724244300,Grammarly,4568,13442 +1724244300,Stripe,40856,35039 +1724244300,DNS over HTTPS,24607,109216 +1724244300,_err_4655,977,1111 +1724244300,__unknown,0,138 +1724244300,__unknown,156,66 +1724244300,VKontakte,133762,237547 +1724244300,HTTPS,154832,301006 +1724244300,SSL client,154832,301006 +1724244300,GitHub,21070,63459 +1724244300,HTTPS,1014,3897 +1724244300,SSL client,1014,3897 +1724244300,GitHub,1014,3897 +1724244300,__unknown,67773,50095 +1724244300,VKontakte,177416,298655 +1724244300,HTTPS,196501,339290 +1724244300,SSL client,196501,339290 +1724244300,GitHub,19085,40635 +1724244300,__unknown,187,228 +1724244300,HTTPS,202403,152767 +1724244300,SSL client,202403,152767 +1724244300,GitHub,22851,77831 +1724244300,Google Play,179552,74936 +1724244300,__unknown,2033,8764 +1724244300,Google,40832,27871 +1724244300,SSL,3123,23555 +1724244300,VKontakte,20951,171717 +1724244300,HTTPS,84290,271486 +1724244300,SSL client,87413,295041 +1724244300,GitHub,22507,71898 +1724244300,Google Hangouts,3123,23555 +1724244300,__unknown,56044,47375 +1724244300,Google,48215,86199 +1724244300,Odnoklassniki,5087,9615 +1724244300,HTTPS,325849,290169 +1724244300,SSL client,165529,203710 +1724244300,GitHub,22005,70360 +1724244300,Casale,90222,37536 +1724244300,ICMP,6900,0 +1724244300,__unknown,118897,1344937 +1724244300,Google,76082,47049 +1724244300,HTTPS,246113,378123 +1724244300,SSL client,242900,372783 +1724244300,Box,1344,4963 +1724244300,ICMP,666,666 +1724244300,DNS over HTTPS,165474,320771 +1724244300,__unknown,106390,1004853 +1724244300,Google,35817,381406 +1724244300,Google Translate,58425,29790 +1724244300,Gmail,21600,20506 +1724244300,HTTP,1190,1297 +1724244300,HTTPS,213635,588751 +1724244300,Spotify,2185,7980 +1724244300,APNS,11832,6913 +1724244300,Apple sites,1407,5963 +1724244300,SSL client,146107,467835 +1724244300,Apple Maps,1660,4649 +1724244300,CloudFlare,3680,5979 +1724244300,ICMP,5159,4002 +1724244300,Telegram,2765,2713 +1724244300,9Gag,11161,9298 +1724244300,DNS over HTTPS,2495,6580 +1724244300,__unknown,3414616,33493387 +1724244300,BitTorrent,463,496 +1724244300,DHCPv6,163,0 +1724244300,Google APIs,43991,17591 +1724244300,Google Drive,9456,21574 +1724244300,Google,1547574,9968456 +1724244300,Google Translate,4650,8720 +1724244300,Android browser,1434,1672 +1724244300,BitTorrent tracker,153,0 +1724244300,DNS,48024,0 +1724244300,Gmail,29092,85512 +1724244300,HTTP,6629,10044 +1724244300,Microsoft Update,946,848 +1724244300,NetBIOS-dgm,243,0 +1724244300,NTP,13110,3360 +1724244300,STUN,2844,4078 +1724244300,VKontakte,2442,5588 +1724244300,Odnoklassniki,7486,22000 +1724244300,HTTPS,2109184,13208799 +1724244300,WhatsApp,1712,4834 +1724244300,Mozilla,9801,13002 +1724244300,SSL client,1728891,12006436 +1724244300,Yandex,35119,1346066 +1724244300,Microsoft CryptoAPI,3932,6286 +1724244300,Pocket,2704,6113 +1724244300,Google Play,27658,62647 +1724244300,Bazaarvoice,10563,450205 +1724244300,ICMP,22949,12194 +1724244300,Google Sign in,1841,5601 +1724244300,Thin Manager TFTP,472,358 +1724244300,DNS over HTTPS,31934,85075 +1724244300,__unknown,1909347,3916396 +1724244300,BitTorrent,306,537 +1724244300,DHCPv6,815,0 +1724244300,Google APIs,58018,193115 +1724244300,Google Drive,25987,98518 +1724244300,Google,324331,4084594 +1724244300,QQ,678,343 +1724244300,Android browser,588,399 +1724244300,BitTorrent tracker,306,537 +1724244300,Chrome,14642,346084 +1724244300,DNS,101665,89198 +1724244300,Firefox,13238,22442 +1724244300,Google Analytics,9453,37191 +1724244300,HTTP,150907,863559 +1724244300,Internet Explorer,678,343 +1724244300,iTunes,11844,58368 +1724244300,Launchpad,3200,2480 +1724244300,Microsoft Update,4223,3520 +1724244300,NTP,14730,4980 +1724244300,SSL,625,8072 +1724244300,YouTube,4713,24018 +1724244300,VKontakte,4680,10385 +1724244300,Odnoklassniki,1971,6437 +1724244300,Steam,2997,64426 +1724244300,Advanced Packaging Tool,30924,28465 +1724244300,HTTPS,1530694,18002549 +1724244300,Apple sites,8354,87860 +1724244300,iCloud,1288,7219 +1724244300,Mozilla,8454,12908 +1724244300,Avast,1551,22990 +1724244300,SSL client,752562,11182567 +1724244300,Ubuntu Update Manager,22377,21071 +1724244300,Microsoft,9745,308651 +1724244300,VeriSign,566,2140 +1724244300,Mail.Ru,1450,10069 +1724244300,Siri,5690,8338 +1724244300,Yandex,89532,4480019 +1724244300,GitHub,23326,62857 +1724244300,Ubuntu,7125,6750 +1724244300,Nvidia,75807,1805461 +1724244300,Microsoft CryptoAPI,21831,23548 +1724244300,Microsoft NCSI,1385,1511 +1724244300,uTorrent,1440,848 +1724244300,Apple Maps,2942,9786 +1724244300,Rubicon Project,5713,12033 +1724244300,Google Play,50625,51578 +1724244300,Criteo,2711,11330 +1724244300,ICMP,12351,3764 +1724244300,Weborama,2082,5678 +1724244300,Bootstrap CDN,1115,4114 +1724244300,Firebase Crashlytics,5023,15506 +1724244300,Telegram,28406,29044 +1724244300,Google Sign in,12105,8908 +1724244300,Amp,3651,26772 +1724244300,DNS over TLS,11384,47766 +1724244300,DNS over HTTPS,29444,110007 +1724244300,Notion,1071,4393 +1724244600,Thin Manager TFTP,672,280 +1724244600,__unknown,94764,67665 +1724244600,DNS over HTTPS,69905,154129 +1724244600,__unknown,2352,1959 +1724244600,HTTPS,133249,49864 +1724244600,SSL client,38175,18524 +1724244600,Mail.Ru,11296,9119 +1724244600,Google Play,26879,9405 +1724244600,Google Analytics,14179,8589 +1724244600,VKontakte,18242,36394 +1724244600,HTTPS,1267172,829160 +1724244600,SSL client,1182360,766650 +1724244600,Mail.Ru,344783,428895 +1724244600,Yandex,759867,178571 +1724244600,Google Play,40898,20979 +1724244600,GIPHY,4391,93222 +1724244600,DNS over HTTPS,32823,85789 +1724244600,__unknown,230442,58863 +1724244600,Bing,29263,32434 +1724244600,Dropbox,3342,2538 +1724244600,Google APIs,6781,16070 +1724244600,Google,15318,499148 +1724244600,MSN,3886,7601 +1724244600,Gmail,24805,35334 +1724244600,HTTP,1483,1953 +1724244600,iTunes,3714,36470 +1724244600,SSL,6380,14358 +1724244600,VKontakte,2489,5311 +1724244600,Odnoklassniki,2669,7501 +1724244600,HTTPS,791906,20887772 +1724244600,Apple sites,13309,44198 +1724244600,iCloud,11371,49227 +1724244600,SSL client,624651,19118414 +1724244600,Samsung,2641,6706 +1724244600,Microsoft,13879,27234 +1724244600,VeriSign,943,976 +1724244600,Mail.Ru,77904,158351 +1724244600,Siri,7693,6376 +1724244600,Yandex,239482,12663561 +1724244600,GitHub,65418,5259911 +1724244600,Nvidia,25708,12283 +1724244600,Microsoft CryptoAPI,1483,1953 +1724244600,Office 365,26533,116671 +1724244600,Sharepoint Online,3238,94231 +1724244600,Battle.net site,3113,4161 +1724244600,Telegram,7037,41046 +1724244600,Stripe,34275,23565 +1724244600,Microsoft Teams,7820,9532 +1724244600,DNS over HTTPS,1449,6981 +1724244600,__unknown,1269718,816398 +1724244600,Apple Update,1532527,67540664 +1724244600,Bing,20094,95163 +1724244600,Dropbox,4215,2767 +1724244600,Google APIs,583431,133432 +1724244600,Google,112418,1091948 +1724244600,MSN,817,7059 +1724244600,Chrome,606,277 +1724244600,Facebook,10018,37811 +1724244600,Gmail,16234,26488 +1724244600,Google Analytics,3712,7138 +1724244600,HTTP,21545,1089731 +1724244600,iTunes,19849,44618 +1724244600,LiveJournal,33399,159595 +1724244600,Microsoft Update,12016,1079744 +1724244600,SSL,214297,125242 +1724244600,VKontakte,59032,69025 +1724244600,Advanced Packaging Tool,1358,1222 +1724244600,IMAPS,20678,43532 +1724244600,HTTPS,8521755,119093166 +1724244600,Apple sites,59329,515497 +1724244600,iCloud,178161,905464 +1724244600,Mozilla,25505,29589 +1724244600,SSL client,5488331,96888034 +1724244600,Ad Nexus,72110,14345 +1724244600,Amazon Web Services,1856,8086 +1724244600,Taobao,16196,82023 +1724244600,Ubuntu Update Manager,1358,1222 +1724244600,Microsoft,396783,2063515 +1724244600,NIH,14815,24223 +1724244600,Mail.Ru,916350,1727018 +1724244600,Yandex,954702,20920545 +1724244600,GitHub,1913,5945 +1724244600,Ubuntu,2205,6691 +1724244600,Game Center,2244,18823 +1724244600,Microsoft Azure,64318,18204 +1724244600,Intel,1140,4768 +1724244600,Nvidia,110955,83902 +1724244600,Microsoft CryptoAPI,1627,3172 +1724244600,Rambler,14177,19312 +1724244600,Office 365,49961,797747 +1724244600,Microsoft Windows Live Services Authentication,145592,294166 +1724244600,Google Hangouts,1503,1392 +1724244600,smpnameres,69982,38723 +1724244600,Weborama,5888,13240 +1724244600,Telegram,59918,1440655 +1724244600,AnyDesk,1928,2545 +1724244600,Google Sign in,4386,7917 +1724244600,Google Inbox,4771,11982 +1724244600,Stripe,37727,34432 +1724244600,Microsoft Teams,3728,42530 +1724244600,DNS over HTTPS,13473,63463 +1724244600,Firefox Update,1164,4414 +1724244600,_err_4655,1175,1266 +1724244600,__unknown,168,132 +1724244600,DNS over HTTPS,1673,5460 +1724244600,HTTPS,146627,217600 +1724244600,Google,214679,264850 +1724244600,HTTPS,214679,264850 +1724244600,SSL client,214679,264850 +1724244600,CoAP,3626,2736 +1724244600,__unknown,15556,9811 +1724244600,SSL,11089,6282 +1724244600,HTTPS,472892,528600 +1724244600,APNS,11089,6282 +1724244600,SSL client,65498,72944 +1724244600,ICMP,814,814 +1724244600,Telegram,54409,66662 +1724244600,__unknown,1282910,52800625 +1724244600,Google,47297,39076 +1724244600,HTTP,17515,923403 +1724244600,HTTPS,96354,477726 +1724244600,SSL client,55890,51988 +1724244600,Rambler,6385,10320 +1724244600,ICMP,8390,8018 +1724244600,Thin Manager TFTP,40448,24660 +1724244600,DNS over HTTPS,29438,75430 +1724244600,__unknown,2915174,20472113 +1724244600,BitTorrent,616,694 +1724244600,DHCPv6,163,0 +1724244600,Google APIs,45843,38789 +1724244600,Google Drive,15810,14670 +1724244600,Google,274307,1584746 +1724244600,Google Translate,4787,10630 +1724244600,Yahoo!,11819,16970 +1724244600,BitTorrent tracker,306,198 +1724244600,DNS,45125,0 +1724244600,Gmail,62262,147327 +1724244600,Google Calendar,8238,13229 +1724244600,HTTP,22811,1791532 +1724244600,Microsoft Update,981,887 +1724244600,NTP,25410,5910 +1724244600,STUN,3320,4670 +1724244600,YouTube,1273,6142 +1724244600,VKontakte,10801,19261 +1724244600,Odnoklassniki,2151,6712 +1724244600,HTTPS,1175817,7072200 +1724244600,Mozilla,6807,3240 +1724244600,SSL client,628439,4350802 +1724244600,CloudFront,1603,7900 +1724244600,Microsoft,18250,1784676 +1724244600,Yandex,84667,2284083 +1724244600,Microsoft CryptoAPI,2779,3970 +1724244600,Rubicon Project,6042,12573 +1724244600,Google Play,51946,43045 +1724244600,Rambler,5252,13397 +1724244600,ICMP,41850,10360 +1724244600,Firebase Crashlytics,1857,6756 +1724244600,Telegram,788,384 +1724244600,TikTok,2232,10471 +1724244600,Google Sign in,20184,19034 +1724244600,Zoom,1566,6674 +1724244600,Thin Manager TFTP,276,106 +1724244600,DNS over HTTPS,29405,87331 +1724244600,Google Meet,8310,86891 +1724244600,__unknown,1874349,4016898 +1724244600,BitTorrent,612,317 +1724244600,Google APIs,50431,147172 +1724244600,Google,101499,249059 +1724244600,IKE,972,916 +1724244600,MSN,578,502 +1724244600,QQ,678,343 +1724244600,Android browser,750,666 +1724244600,BitTorrent tracker,612,317 +1724244600,Chrome,1275,743 +1724244600,DNS,110145,94567 +1724244600,Gmail,5819,6528 +1724244600,Google Analytics,1856,6246 +1724244600,HTTP,152259,3152483 +1724244600,Internet Explorer,678,343 +1724244600,Launchpad,3200,2480 +1724244600,Microsoft Update,5106,4121 +1724244600,NetBIOS-dgm,250,0 +1724244600,NTP,1260,1170 +1724244600,SSL,24823,14986 +1724244600,STUN,186,222 +1724244600,YouTube,11469,231744 +1724244600,VKontakte,4590,9880 +1724244600,Advanced Packaging Tool,28959,26471 +1724244600,HTTPS,1446904,7660524 +1724244600,WhatsApp,853,2680 +1724244600,APNS,23968,7955 +1724244600,Apple sites,11034,41772 +1724244600,iCloud,36724,107408 +1724244600,Mozilla,5387,11310 +1724244600,Avast,382,391 +1724244600,Opera,1865,4283 +1724244600,SSL client,612619,3447307 +1724244600,Ubuntu Update Manager,19793,18619 +1724244600,Microsoft,35483,3043857 +1724244600,NIH,1736,7295 +1724244600,Mail.Ru,3383,6037 +1724244600,Siri,12851,7074 +1724244600,Yandex,72795,2314017 +1724244600,Akamai,2520,5425 +1724244600,Ubuntu,9019,8591 +1724244600,Nvidia,28254,97202 +1724244600,Microsoft CryptoAPI,8194,6416 +1724244600,Microsoft WNS,1211,8468 +1724244600,Apple Maps,1608,4982 +1724244600,Google Play,179074,69539 +1724244600,Casale,19101,15375 +1724244600,CloudFlare,1781,4499 +1724244600,Rambler,6058,15662 +1724244600,Office 365,636,664 +1724244600,Google Hangouts,855,7031 +1724244600,ICMP,4952,3452 +1724244600,Gmail attachment,388,284 +1724244600,Office Mobile,9180,6930 +1724244600,Telegram,125472,2147355 +1724244600,Edge Chromium,3342,10115 +1724244600,Grammarly,1890,7368 +1724244600,Stripe,2517,4301 +1724244600,DNS over TLS,10305,42931 +1724244600,DNS over HTTPS,39032,144100 +1724244600,Notion,5727,17534 +1724244900,__unknown,295330,531332 +1724244900,HTTPS,1840821,10528355 +1724244900,SSL client,1554744,870311 +1724244900,Yandex,211137,34208 +1724244900,Rambler,1343607,836103 +1724244900,__unknown,4412,11924 +1724244900,Google,7226,11826 +1724244900,SSL,7226,11826 +1724244900,HTTPS,48046,61966 +1724244900,SSL client,27806,30760 +1724244900,Google Play,15266,12056 +1724244900,Sharepoint Online,5314,6878 +1724244900,DNS over HTTPS,6385,16007 +1724244900,__unknown,1038,4221 +1724244900,Google,33229,41215 +1724244900,HTTPS,918239,2138703 +1724244900,SSL client,174006,162327 +1724244900,Yandex,108872,50760 +1724244900,Nvidia,31905,70352 +1724244900,__unknown,406448,1213790 +1724244900,Apple Update,4871369,207556928 +1724244900,Bing,9802,62547 +1724244900,Google APIs,62241,1121083 +1724244900,Google Drive,1872,8100 +1724244900,Google,55268,164939 +1724244900,MSN,1035,7501 +1724244900,HTTP,4296,10511 +1724244900,HTTPS,10840528,444111239 +1724244900,Apple sites,1885,8291 +1724244900,iCloud,4941,10908 +1724244900,Mozilla,8734,7498 +1724244900,Opera,1197,3889 +1724244900,SSL client,7080579,217523992 +1724244900,Microsoft,74232,429460 +1724244900,Mail.Ru,1000636,2322069 +1724244900,Yandex,956936,5792524 +1724244900,Nvidia,25255,12194 +1724244900,Microsoft CryptoAPI,1636,2293 +1724244900,Apple Maps,1958,29187 +1724244900,Office 365,3438,15576 +1724244900,Sharepoint Online,3337,8619 +1724244900,Battle.net site,2258,3973 +1724244900,Telegram,1968546,170708212 +1724244900,DNS over HTTPS,28291,67909 +1724244900,__unknown,1825148,709444 +1724244900,Bing,17222,44085 +1724244900,Google APIs,16423,18458 +1724244900,Google,86050,588405 +1724244900,MSN,16649,40395 +1724244900,Gmail,28367,37126 +1724244900,Google Analytics,2913,8317 +1724244900,HTTP,5896,5549 +1724244900,iTunes,39238,61980 +1724244900,LiveJournal,251718,5934652 +1724244900,Microsoft Update,160175,5793 +1724244900,Skype,1426,7715 +1724244900,SSL,12606,11070 +1724244900,YouTube,49471,14169 +1724244900,VKontakte,5342,13046 +1724244900,Advanced Packaging Tool,1819,1459 +1724244900,IMAPS,36530,66056 +1724244900,HTTPS,8433630,46744170 +1724244900,WhatsApp,7816,15257 +1724244900,APNS,1183,4221 +1724244900,Apple sites,24471,253194 +1724244900,iCloud,150279,144832 +1724244900,Mozilla,80672,3691834 +1724244900,Avast,3128,12158 +1724244900,SSL client,2795561,19817805 +1724244900,Ad Nexus,142959,33597 +1724244900,Amazon Web Services,3139,21430 +1724244900,CloudFront,3712,1153 +1724244900,Ubuntu Update Manager,1292,926 +1724244900,Microsoft,288818,479061 +1724244900,NIH,1912,6803 +1724244900,Mail.Ru,570067,1658140 +1724244900,Yandex,379806,6377590 +1724244900,GitHub,1212,957 +1724244900,Ubuntu,1377,1389 +1724244900,Nvidia,11081,29131 +1724244900,Rubicon Project,1582,5095 +1724244900,Google Play,1692,7793 +1724244900,Rambler,47309,51036 +1724244900,Office 365,8810,41208 +1724244900,Sharepoint Online,3186,5819 +1724244900,Microsoft Windows Live Services Authentication,36897,91384 +1724244900,Gmail attachment,7412,18581 +1724244900,Yandex Market,2432,7281 +1724244900,Office Mobile,15238,27683 +1724244900,Telegram,277308,11719530 +1724244900,Xiaomi,309605,18192 +1724244900,Google Inbox,8397,29011 +1724244900,Azure cloud portal,2784,10583 +1724244900,Adobe Fonts,2264,6768 +1724244900,Stripe,9345,7862 +1724244900,DNS over HTTPS,13989,53678 +1724244900,_err_4655,1175,1267 +1724244900,HTTPS,21492,42807 +1724244900,SSL client,21492,42807 +1724244900,GitHub,21492,42807 +1724244900,DNS over HTTPS,1265,5393 +1724244900,__unknown,6804,863 +1724244900,HTTPS,784,9672 +1724244900,SSL client,784,9672 +1724244900,Exchange Online,784,9672 +1724244900,HTTPS,205808,155709 +1724244900,__unknown,1015,463 +1724244900,Google,68782,58667 +1724244900,SSL,1376,7854 +1724244900,HTTPS,112036,80898 +1724244900,SSL client,70158,66521 +1724244900,Google Hangouts,1376,7854 +1724244900,__unknown,1884,10838 +1724244900,HTTPS,1498,5317 +1724244900,ICMP,2570,592 +1724244900,__unknown,75781,34700 +1724244900,Google,218766,345875 +1724244900,HTTPS,1320239,484743 +1724244900,SSL client,1229264,436066 +1724244900,Google Play,1010498,90191 +1724244900,ICMP,846,0 +1724244900,__unknown,513297,4168602 +1724244900,Google,5098,10364 +1724244900,HTTP,13110,22736 +1724244900,STUN,1230,1110 +1724244900,HTTPS,206032,1796290 +1724244900,iCloud,3925,10129 +1724244900,SSL client,88407,1403735 +1724244900,Yandex,19416,1332933 +1724244900,Nvidia,14796,27033 +1724244900,Google Play,45172,23276 +1724244900,ICMP,6426,2738 +1724244900,Telegram,15358,24739 +1724244900,DNS over HTTPS,14837,25896 +1724244900,__unknown,1754163,2703862 +1724244900,Bing,1191,5260 +1724244900,BitTorrent,310,496 +1724244900,Google APIs,120016,47855 +1724244900,Google,118914,275728 +1724244900,DNS,47812,0 +1724244900,Gmail,24184,62114 +1724244900,Google Analytics,4237,13864 +1724244900,HTTP,5281,14923 +1724244900,iTunes,2182,14204 +1724244900,Microsoft Update,1633,1459 +1724244900,NetBIOS-dgm,243,0 +1724244900,NTP,13200,3450 +1724244900,SSL,7447,5437 +1724244900,STUN,902,814 +1724244900,YouTube,21674,3371 +1724244900,VKontakte,53420,119955 +1724244900,HTTPS,1369046,2029858 +1724244900,Mozilla,1996,4556 +1724244900,SSL client,894304,1122092 +1724244900,Weather.com,20807,112416 +1724244900,CloudFront,4270,20604 +1724244900,Microsoft,2363,16659 +1724244900,Yandex,193465,305222 +1724244900,Nvidia,2777,6679 +1724244900,Microsoft CryptoAPI,2193,1921 +1724244900,Microsoft WNS,693,7966 +1724244900,Google Play,311590,107210 +1724244900,ICMP,33075,15126 +1724244900,Gmail attachment,284,0 +1724244900,Telegram,17864,193822 +1724244900,Google Sign in,6139,4076 +1724244900,Thin Manager TFTP,472,358 +1724244900,Grammarly,3007,1916 +1724244900,Adobe Fonts,3438,10517 +1724244900,DNS over HTTPS,35780,99501 +1724244900,__unknown,3164459,19918123 +1724244900,BitTorrent,306,198 +1724244900,DHCPv6,1141,0 +1724244900,Google APIs,39073,101013 +1724244900,Google Drive,4178,13806 +1724244900,Google,68691,150119 +1724244900,MSN,577,501 +1724244900,QQ,678,343 +1724244900,Yahoo!,2689,7881 +1724244900,Android browser,684,600 +1724244900,BitTorrent tracker,306,198 +1724244900,DNS,111090,105042 +1724244900,Gmail,108859,309899 +1724244900,Google Analytics,1133,5302 +1724244900,HTTP,536776,20606824 +1724244900,Internet Explorer,1440,1003 +1724244900,iTunes,853,3120 +1724244900,Launchpad,2560,1984 +1724244900,NTP,1080,1170 +1724244900,SSL,5658,31963 +1724244900,VKontakte,10745,16318 +1724244900,Odnoklassniki,3790,7453 +1724244900,Advanced Packaging Tool,33607,30951 +1724244900,IMAPS,103347,312038 +1724244900,HTTPS,1682307,9056435 +1724244900,APNS,1057,3917 +1724244900,Apple sites,4178,17094 +1724244900,iCloud,254078,139142 +1724244900,Mozilla,8056,8121 +1724244900,Avast,382,391 +1724244900,Opera,10214,6485 +1724244900,SSL client,1050489,6235062 +1724244900,Ubuntu Update Manager,24985,23523 +1724244900,Microsoft,403445,20467105 +1724244900,VeriSign,566,2140 +1724244900,Mail.Ru,4697,21198 +1724244900,Siri,45391,12629 +1724244900,Yandex,118632,4944144 +1724244900,Ubuntu,7762,7272 +1724244900,Nvidia,109083,106456 +1724244900,Microsoft CryptoAPI,7864,13822 +1724244900,Microsoft NCSI,925,974 +1724244900,Microsoft WNS,577,501 +1724244900,Rubicon Project,24400,39521 +1724244900,33Across,2322,8037 +1724244900,Google Play,180590,76243 +1724244900,Casale,15840,18221 +1724244900,Rambler,9312,127608 +1724244900,Google Hangouts,3358,22241 +1724244900,ICMP,6079,3108 +1724244900,360 Safeguard,838,1199 +1724244900,Telegram,39725,161290 +1724244900,Edge Chromium,8792,26251 +1724244900,Grammarly,2232,7810 +1724244900,DNS over TLS,13940,58634 +1724244900,DNS over HTTPS,74537,260559 +1724244900,_err_4655,9100,7427 +1724244900,DeepL Translator,2185,7072 +1724245200,Thin Manager TFTP,108,108 +1724245200,__unknown,352061,168367 +1724245200,__unknown,328,3489 +1724245200,HTTPS,36961,103577 +1724245200,SSL client,20954,92905 +1724245200,Mail.Ru,10882,13071 +1724245200,Yandex,10072,79834 +1724245200,HTTPS,327047,120153 +1724245200,SSL client,309612,83855 +1724245200,Mail.Ru,7645,8053 +1724245200,Yandex,301967,75802 +1724245200,Telegram,12601,33055 +1724245200,__unknown,1444,8052 +1724245200,Dropbox,38217,17549 +1724245200,HTTPS,1090148,133169 +1724245200,SSL client,1052414,75221 +1724245200,Yandex,7377,7065 +1724245200,Sharepoint Online,4478,9207 +1724245200,Dropbox Download,1000411,36771 +1724245200,Xiaomi,1931,4629 +1724245200,__unknown,170,958 +1724245200,Google Drive,93118,2593354 +1724245200,Windows Live,22477,9555 +1724245200,SSL,8301,13919 +1724245200,HTTPS,1775700,4031267 +1724245200,SSL client,1399337,3167678 +1724245200,Yandex,1262704,546231 +1724245200,Google Play,21038,18538 +1724245200,__unknown,774371,871071 +1724245200,Bing,11554,36271 +1724245200,Dropbox,1647,1519 +1724245200,Google APIs,2678,12395 +1724245200,Google,11507,13199 +1724245200,MSN,5102,32038 +1724245200,Windows Live,5279,8328 +1724245200,Google Analytics,5892,7323 +1724245200,HTTP,1688,4457 +1724245200,LiveJournal,258005,746982 +1724245200,HTTPS,1516806,20651598 +1724245200,WhatsApp,23844,439662 +1724245200,Apple sites,1903,8903 +1724245200,Mozilla,6277,8539 +1724245200,Avast,1286,9682 +1724245200,SSL client,637129,1379717 +1724245200,Microsoft,56311,66428 +1724245200,Mail.Ru,130988,286669 +1724245200,Yandex,109277,45234 +1724245200,Microsoft CryptoAPI,1688,4457 +1724245200,Google Play,4344,11009 +1724245200,Rambler,6121,7204 +1724245200,Office 365,8686,65465 +1724245200,Battle.net site,2258,3973 +1724245200,Yandex Market,8467,6550 +1724245200,Telegram,2038,8167 +1724245200,DNS over HTTPS,3214,9012 +1724245200,Discord,1235,6463 +1724245200,__unknown,723325,470011 +1724245200,Apple Update,1849,5149 +1724245200,Bing,79883,27271 +1724245200,Dropbox,5876,207394 +1724245200,Eset,4560,14047 +1724245200,Google APIs,27187,44028 +1724245200,Google,1132325,669775 +1724245200,MSN,4373,19355 +1724245200,Dell,1051,4367 +1724245200,Gmail,18616,20663 +1724245200,HTTP,8874,8376 +1724245200,iTunes,4907,23811 +1724245200,SSL,77318,90166 +1724245200,YouTube,2387,4919 +1724245200,VKontakte,35770,157294 +1724245200,Advanced Packaging Tool,4516,4382 +1724245200,IMAPS,19605,35347 +1724245200,HTTPS,7321769,29834889 +1724245200,WhatsApp,1626,4777 +1724245200,APNS,26731,13011 +1724245200,Apple sites,70724,1229032 +1724245200,iCloud,13506,32242 +1724245200,Mozilla,52349,22217 +1724245200,Avast,1122,8262 +1724245200,SSL client,3342679,6392245 +1724245200,Ad Nexus,218025,43614 +1724245200,Amazon Web Services,2643,13517 +1724245200,CloudFront,3742,1153 +1724245200,Ubuntu Update Manager,3989,3849 +1724245200,Microsoft,128561,189968 +1724245200,Mail.Ru,354236,549620 +1724245200,Yandex,433186,807351 +1724245200,GitHub,378957,1564049 +1724245200,Ubuntu,1730,5433 +1724245200,Nvidia,186752,450066 +1724245200,Microsoft CryptoAPI,499,403 +1724245200,uTorrent,4704,6837 +1724245200,Apple Maps,12550,53497 +1724245200,Google Play,9549,3673 +1724245200,Rambler,23939,32962 +1724245200,Exchange Online,6563,15183 +1724245200,Office 365,34892,83625 +1724245200,Microsoft Windows Live Services Authentication,14099,27239 +1724245200,smpnameres,34077,39078 +1724245200,Firebase Crashlytics,1632,6188 +1724245200,Hola,26420,45574 +1724245200,Office Mobile,11492,7869 +1724245200,Telegram,308498,14664121 +1724245200,Xiaomi,1690,4564 +1724245200,Edge Chromium,467,1305 +1724245200,Grammarly,14516,16700 +1724245200,DNS over HTTPS,25665,97649 +1724245200,Lenovo,906,3988 +1724245200,_err_4907,1756,10768 +1724245200,Google,41666,79755 +1724245200,HTTPS,41666,79755 +1724245200,SSL client,41666,79755 +1724245200,VKontakte,14174,28308 +1724245200,HTTPS,14174,28308 +1724245200,SSL client,14174,28308 +1724245200,DNS over HTTPS,653142,1484635 +1724245200,SSL,3561,11187 +1724245200,HTTPS,401792,160431 +1724245200,SSL client,211453,106632 +1724245200,Google Hangouts,3561,11187 +1724245200,Telegram,54248,68402 +1724245200,Taboola,153644,27043 +1724245200,DNS over HTTPS,107926,249026 +1724245200,VKontakte,180226,520204 +1724245200,HTTPS,180226,520204 +1724245200,SSL client,180226,520204 +1724245200,HTTPS,1386,4056 +1724245200,__unknown,202313,83553 +1724245200,HTTPS,79210,42211 +1724245200,SSL client,79210,42211 +1724245200,Google Play,79210,42211 +1724245200,ICMP,592,592 +1724245200,__unknown,287314,479254 +1724245200,ICMP,1850,1702 +1724245200,__unknown,158591,2300096 +1724245200,Google,7966,12053 +1724245200,VKontakte,13255,11384 +1724245200,HTTPS,79731,253128 +1724245200,SSL client,25245,41818 +1724245200,Weather.com,4024,18381 +1724245200,ICMP,4496,3774 +1724245200,DNS over HTTPS,23161,64016 +1724245200,__unknown,2844418,12782225 +1724245200,BitTorrent,554,694 +1724245200,Google APIs,131754,132226 +1724245200,Google Drive,5225,2137 +1724245200,Google,130253,265088 +1724245200,Yahoo!,151015,68855 +1724245200,BitTorrent tracker,306,198 +1724245200,DNS,81613,0 +1724245200,Gmail,26420,94560 +1724245200,HTTP,7537,43140 +1724245200,Microsoft Update,641,507 +1724245200,NTP,13110,3360 +1724245200,STUN,984,888 +1724245200,YouTube,34380,325287 +1724245200,Yahoo! Mail,2324,7543 +1724245200,HTTPS,829766,1763220 +1724245200,iCloud,20794,24717 +1724245200,Mozilla,1882,4747 +1724245200,SSL client,552889,1029051 +1724245200,Microsoft,2692,35301 +1724245200,VeriSign,566,2141 +1724245200,Yandex,2648,27194 +1724245200,Nvidia,22819,36834 +1724245200,Microsoft CryptoAPI,3582,5754 +1724245200,Google Play,6305,10447 +1724245200,ICMP,31305,11276 +1724245200,ICMP for IPv6,70,0 +1724245200,Telegram,43598,121456 +1724245200,Taboola,2794,6031 +1724245200,Google Sign in,9513,16089 +1724245200,DNS over HTTPS,48357,131568 +1724245200,_err_4655,2575,2301 +1724245200,__unknown,2840164,9009923 +1724245200,BITS,1857,4740 +1724245200,BitTorrent,459,515 +1724245200,DHCPv6,978,0 +1724245200,Google APIs,99730,256970 +1724245200,Google Drive,2730,1673 +1724245200,Google,122431,1289457 +1724245200,MSN,1155,1003 +1724245200,QQ,678,343 +1724245200,Wikipedia,11085,152676 +1724245200,Yahoo!,33338,16955 +1724245200,Android browser,684,600 +1724245200,Apple Store,16355,83901 +1724245200,BitTorrent tracker,459,515 +1724245200,Chrome,3468,3877 +1724245200,DNS,108072,80531 +1724245200,Gmail,6991,10152 +1724245200,HTTP,786099,65378117 +1724245200,Internet Explorer,678,343 +1724245200,Launchpad,3200,2480 +1724245200,NetBIOS-dgm,243,0 +1724245200,NTP,1800,1710 +1724245200,SSL,5989,24626 +1724245200,STUN,82,74 +1724245200,YouTube,18943,2537 +1724245200,VKontakte,22971,48167 +1724245200,Advanced Packaging Tool,30277,27709 +1724245200,HTTPS,1245844,9551338 +1724245200,WhatsApp,15555,93737 +1724245200,Apple sites,1806,4512 +1724245200,iCloud,49324,138797 +1724245200,Mozilla,6839,11314 +1724245200,SSL client,508901,2342333 +1724245200,Amazon Web Services,1193,6396 +1724245200,Ubuntu Update Manager,21075,19785 +1724245200,Microsoft,674544,65256835 +1724245200,Mail.Ru,2396,6284 +1724245200,Yandex,46971,147025 +1724245200,Ubuntu,7343,6819 +1724245200,Nvidia,19377,52196 +1724245200,Microsoft CryptoAPI,4010,7012 +1724245200,Microsoft NCSI,1522,1587 +1724245200,Microsoft WNS,3054,24901 +1724245200,Apple Maps,1581,5355 +1724245200,Rubicon Project,4925,7523 +1724245200,Google Play,18216,7360 +1724245200,Google Hangouts,5989,24626 +1724245200,ICMP,9129,3996 +1724245200,Telegram,25674,55742 +1724245200,Thin Manager TFTP,276,106 +1724245200,Edge Chromium,5570,16862 +1724245200,Grammarly,1174,830 +1724245200,Adobe Fonts,1245,6302 +1724245200,DNS over TLS,14357,62011 +1724245200,DNS over HTTPS,66924,234829 +1724245200,Google Meet,1520,7913 +1724245200,Notion,1367,6404 +1724245500,__unknown,4389474,1230739 +1724245500,DNS over HTTPS,156147,345280 +1724245500,HTTPS,23241,14031 +1724245500,SSL client,23241,14031 +1724245500,Mail.Ru,19319,9756 +1724245500,Yandex,3922,4275 +1724245500,VKontakte,83597,96555 +1724245500,HTTPS,123494,853272 +1724245500,SSL client,83597,96555 +1724245500,__unknown,3471,8256 +1724245500,Dropbox,12705,5429 +1724245500,HTTPS,2712848,146593677 +1724245500,SSL client,2587721,146301656 +1724245500,Yandex,39431,68137 +1724245500,GitHub,2489508,146218164 +1724245500,Dropbox Download,46077,9926 +1724245500,ICMP,6396,0 +1724245500,__unknown,12127,6924 +1724245500,SSL,2107,8027 +1724245500,HTTPS,1003526,50062639 +1724245500,SSL client,711451,39973822 +1724245500,Yandex,4524,7106 +1724245500,GitHub,625841,39904862 +1724245500,Google Play,76877,49270 +1724245500,Google Hangouts,2107,8027 +1724245500,Telegram,1007,1388 +1724245500,Xiaomi,2102,4557 +1724245500,__unknown,591207,559977 +1724245500,Google APIs,310358,20259 +1724245500,Google,1463,5456 +1724245500,MSN,1049,5862 +1724245500,Android browser,441,553 +1724245500,Gmail,6384,15397 +1724245500,Google Analytics,4093,7006 +1724245500,HTTP,940,955 +1724245500,SSL,1533,46626 +1724245500,VKontakte,13142,27146 +1724245500,Odnoklassniki,2613,7492 +1724245500,IMAPS,6384,15397 +1724245500,HTTPS,10712231,8932192 +1724245500,Apple sites,79740,2800910 +1724245500,Avast,1260,9275 +1724245500,SSL client,10072988,8519252 +1724245500,Microsoft,24099,163999 +1724245500,Mail.Ru,182639,112704 +1724245500,Yandex,307061,4734060 +1724245500,GitHub,109358,125263 +1724245500,Nvidia,56510,15725 +1724245500,Microsoft CryptoAPI,499,402 +1724245500,Google Play,22882,3094 +1724245500,Rambler,10395,8678 +1724245500,Office 365,8889140,187496 +1724245500,Sharepoint Online,6496,182454 +1724245500,Google Hangouts,1533,46626 +1724245500,Alipay,29371,23046 +1724245500,Battle.net site,2318,5427 +1724245500,Telegram,43449,78111 +1724245500,Google Sign in,5021,3808 +1724245500,Xiaomi,441,553 +1724245500,Zoom,6428,7667 +1724245500,Microsoft Teams,6063,8069 +1724245500,DNS over HTTPS,26970,64995 +1724245500,__unknown,782875,1124856 +1724245500,Bing,5904,16309 +1724245500,Dropbox,12913,230399 +1724245500,Google APIs,239887,194942 +1724245500,Google,1487,1597 +1724245500,MSN,7956,25315 +1724245500,Adobe Software,3735,135505 +1724245500,Gmail,19646,41801 +1724245500,HTTP,16345,126910 +1724245500,iTunes,4874,22129 +1724245500,Reddit,4354,26073 +1724245500,Skype,7285,22263 +1724245500,SSL,18522,6929 +1724245500,YouTube,6794,108351 +1724245500,TeamViewer,1584,8893 +1724245500,VKontakte,25942,75456 +1724245500,Steam,123713,4997313 +1724245500,Advanced Packaging Tool,2097,1884 +1724245500,SMTPS,109611,8545 +1724245500,IMAPS,20194,36156 +1724245500,HTTPS,13981178,50721363 +1724245500,WhatsApp,3752,10138 +1724245500,Apple sites,16155,88431 +1724245500,iCloud,652082,94382 +1724245500,Mozilla,5255,10649 +1724245500,Avast,1824,4402 +1724245500,SSL client,3690425,17662621 +1724245500,Ad Nexus,144286,29006 +1724245500,Amazon Web Services,2002,8086 +1724245500,Taobao,20072,43629 +1724245500,Ubuntu Update Manager,1570,1352 +1724245500,Microsoft,429835,1133534 +1724245500,Mail.Ru,559574,1056299 +1724245500,Yandex,347339,3874118 +1724245500,Akamai,5212,15405 +1724245500,GitHub,45381,980802 +1724245500,Ubuntu,820,993 +1724245500,Nvidia,622475,3368101 +1724245500,Microsoft CryptoAPI,2421,6444 +1724245500,Apple Maps,4032,15384 +1724245500,Alibaba,3603,18854 +1724245500,Rambler,34229,228028 +1724245500,Garmin,1743,4094 +1724245500,Exchange Online,39462,69815 +1724245500,Office 365,237027,313816 +1724245500,Sharepoint Online,10495,223778 +1724245500,Microsoft Windows Live Services Authentication,21873,49980 +1724245500,Alipay,1838,1391 +1724245500,Gmail attachment,9824,114850 +1724245500,Office Mobile,7499,7870 +1724245500,Telegram,432126,17138131 +1724245500,RealVNC,1369,12722 +1724245500,Grammarly,3250,15084 +1724245500,DNS over HTTPS,12084,51030 +1724245500,_err_4655,2016,1871 +1724245500,HTTPS,136717,193240 +1724245500,SSL client,136717,193240 +1724245500,Telegram,136717,193240 +1724245500,HTTPS,584829,4018034 +1724245500,Telegram,584829,4018034 +1724245500,SSL,3889,10963 +1724245500,HTTPS,30734,75080 +1724245500,__unknown,3252038,291010859 +1724245500,Google,1312,4826 +1724245500,HTTPS,1312,4826 +1724245500,SSL client,1312,4826 +1724245500,__unknown,1855211,55560471 +1724245500,Google Translate,34153,22916 +1724245500,iTunes,7642,10200 +1724245500,HTTPS,261453,102661 +1724245500,SSL client,41795,33116 +1724245500,__unknown,30307,734700 +1724245500,HTTPS,13964,19039 +1724245500,SSL client,13964,19039 +1724245500,Yandex,13964,19039 +1724245500,ICMP,666,592 +1724245500,CoAP,2940,2160 +1724245500,__unknown,491321,2828866 +1724245500,Google,304426,1169333 +1724245500,HTTP,5257,4222 +1724245500,HTTPS,596580,2918630 +1724245500,WhatsApp,3684,15839 +1724245500,SSL client,317932,2091715 +1724245500,Yandex,13506,922382 +1724245500,ICMP,7166,2812 +1724245500,Telegram,5918,4355 +1724245500,Thin Manager TFTP,36628,23220 +1724245500,DNS over HTTPS,4753,12822 +1724245500,__unknown,3610251,66160592 +1724245500,BitTorrent,310,496 +1724245500,DHCPv6,163,0 +1724245500,Google APIs,41842,179108 +1724245500,Google Drive,35850,35159 +1724245500,Google,139853,559901 +1724245500,IKE,486,458 +1724245500,Adobe Software,5034,22141 +1724245500,Android browser,467,333 +1724245500,DNS,23323,300 +1724245500,Firefox,16728,23466 +1724245500,Gmail,33921,62157 +1724245500,Google Analytics,3552,25659 +1724245500,HTTP,23817,40615 +1724245500,NetBIOS-dgm,250,0 +1724245500,NTP,11920,3180 +1724245500,SSL,23725,19960 +1724245500,STUN,984,888 +1724245500,YouTube,7298,22393 +1724245500,VKontakte,45375,394488 +1724245500,Odnoklassniki,3432,8796 +1724245500,IMAPS,19463,40825 +1724245500,HTTPS,862434,4572399 +1724245500,WhatsApp,1892,8422 +1724245500,APNS,20814,6903 +1724245500,Mozilla,12799,15984 +1724245500,SSL client,429217,1795612 +1724245500,Weather.com,6243,37313 +1724245500,Microsoft,633,7966 +1724245500,Yandex,12655,375743 +1724245500,Atlassian,42683,12997 +1724245500,Microsoft CryptoAPI,4267,5900 +1724245500,Microsoft WNS,633,7966 +1724245500,Rambler,5312,13381 +1724245500,Adobe Analytics,5920,6621 +1724245500,Google Hangouts,797,7091 +1724245500,ICMP,41125,13558 +1724245500,Zoom,3427,8317 +1724245500,Thin Manager TFTP,196,252 +1724245500,Grammarly,3597,2402 +1724245500,Adobe Fonts,2240,7375 +1724245500,DNS over HTTPS,30225,86350 +1724245500,__unknown,2620967,24585004 +1724245500,BITS,4844,31956 +1724245500,BitTorrent,459,537 +1724245500,Google APIs,38224,70490 +1724245500,Google,188170,12789742 +1724245500,Google Translate,4638,3505 +1724245500,QQ,678,343 +1724245500,Adobe Software,2835,20620 +1724245500,BitTorrent tracker,459,537 +1724245500,DNS,81895,78304 +1724245500,Firefox,807,1129 +1724245500,Google Calendar,2318,8607 +1724245500,HTTP,147807,160003 +1724245500,Internet Explorer,678,343 +1724245500,iTunes,4210,22940 +1724245500,Launchpad,4916,2628 +1724245500,Microsoft Update,1282,1014 +1724245500,NTP,26220,6720 +1724245500,STUN,2832,660 +1724245500,YouTube,33312,321216 +1724245500,VKontakte,17492,35637 +1724245500,Advanced Packaging Tool,34383,29169 +1724245500,HTTPS,1245158,18865760 +1724245500,Apple sites,14044,37687 +1724245500,iCloud,6631,12638 +1724245500,Mozilla,7787,15795 +1724245500,SSL client,501266,14910249 +1724245500,Ubuntu Update Manager,24572,22555 +1724245500,VeriSign,566,2141 +1724245500,Mail.Ru,1084,5647 +1724245500,Yandex,103306,1432000 +1724245500,MDNS,364,0 +1724245500,Ubuntu,5745,4904 +1724245500,Nvidia,26426,43712 +1724245500,Microsoft CryptoAPI,8388,9814 +1724245500,Microsoft NCSI,1368,1563 +1724245500,Apple Maps,1736,4952 +1724245500,Pocket,3324,3372 +1724245500,Improve Digital,2655,8277 +1724245500,Google Play,6500,2497 +1724245500,Office 365,21444,17544 +1724245500,ICMP,17732,2812 +1724245500,Gmail attachment,388,284 +1724245500,Telegram,17533,68187 +1724245500,Zoom,3793,8876 +1724245500,Thin Manager TFTP,276,106 +1724245500,Edge Chromium,2108,5460 +1724245500,DNS over TLS,11662,50990 +1724245500,DNS over HTTPS,56125,196483 +1724245500,_err_4655,4641,4426 +1724245800,Thin Manager TFTP,672,280 +1724245800,__unknown,52304,47461 +1724245800,HTTPS,12528,95020 +1724245800,HTTPS,10642,4507 +1724245800,__unknown,7116,0 +1724245800,HTTPS,70910,132028 +1724245800,SSL client,18521,9136 +1724245800,Mail.Ru,18521,9136 +1724245800,__unknown,27492,9349 +1724245800,Dropbox,364121,41680 +1724245800,Google APIs,6636,9111 +1724245800,HTTPS,486075,223736 +1724245800,SSL client,412275,63735 +1724245800,Yandex,18357,10372 +1724245800,Google Play,23161,2572 +1724245800,__unknown,1550,0 +1724245800,HTTPS,1201146,244147 +1724245800,iCloud,14483,39646 +1724245800,SSL client,29483,84915 +1724245800,Yandex,8839,27242 +1724245800,Google Play,1505,6055 +1724245800,Xiaomi,4656,11972 +1724245800,__unknown,2469607,5625738 +1724245800,Bing,4207,25105 +1724245800,Dropbox,5399,2141 +1724245800,Google,36813,787336 +1724245800,MSN,14455,46085 +1724245800,Google Analytics,3966,31478 +1724245800,HTTP,1073,1364 +1724245800,Microsoft Update,1073,1364 +1724245800,Skype,2535,8336 +1724245800,SSL,11501,6536 +1724245800,TwitchTV,37880,8538 +1724245800,Steam,25024,983068 +1724245800,Windows Update,1073,1364 +1724245800,HTTPS,8155820,70447072 +1724245800,Steam social networking,8362,30252 +1724245800,APNS,11501,6536 +1724245800,Apple sites,18176,957855 +1724245800,Mozilla,19410,24364 +1724245800,SSL client,7033207,45283907 +1724245800,Microsoft,51541,72384 +1724245800,Mail.Ru,426441,311523 +1724245800,Yandex,146906,628329 +1724245800,GitHub,936,8377 +1724245800,Nvidia,1564012,41183309 +1724245800,Apple Maps,3911,24056 +1724245800,Office 365,4609777,96590 +1724245800,Sharepoint Online,8529,18054 +1724245800,OneDrive,2624,10276 +1724245800,Telegram,362849,16774865 +1724245800,Grammarly,2573,7175 +1724245800,Stripe,22356,15767 +1724245800,Microsoft Teams,5881,8009 +1724245800,DNS over HTTPS,33031,85985 +1724245800,Discord,3903,13020 +1724245800,__unknown,988734,1317406 +1724245800,Bing,1216,4980 +1724245800,Dropbox,11440,12433 +1724245800,Google APIs,512024,211691 +1724245800,Google,154619,190196 +1724245800,MSN,12763,46485 +1724245800,Adobe Software,219017,12310796 +1724245800,Android browser,1580,3207 +1724245800,Gmail,993,4830 +1724245800,HTTP,63089,1697745 +1724245800,iTunes,1177,6097 +1724245800,Microsoft Update,91787,135428 +1724245800,SSL,36828,192035 +1724245800,VKontakte,30351,135525 +1724245800,TwitchTV,1247,6015 +1724245800,Steam,2282,15360 +1724245800,Advanced Packaging Tool,1870,1818 +1724245800,Windows Update,480,539 +1724245800,IMAPS,15055,56391 +1724245800,HTTPS,6885235,26102743 +1724245800,APNS,13518,14749 +1724245800,Apple sites,9573,22309 +1724245800,iCloud,114020,129686 +1724245800,Mozilla,1989,4759 +1724245800,Avast,3590,27506 +1724245800,SSL client,4824812,20474335 +1724245800,Ad Nexus,72231,14779 +1724245800,Taobao,197821,2250628 +1724245800,Ubuntu Update Manager,1283,1286 +1724245800,Microsoft,105281,225928 +1724245800,Mail.Ru,919660,2401216 +1724245800,Yandex,239602,396614 +1724245800,GitHub,74130,187983 +1724245800,Exchange,51773,1685420 +1724245800,Ubuntu,587,532 +1724245800,Microsoft Azure,2478,8972 +1724245800,Nvidia,1805908,969677 +1724245800,Microsoft NCSI,411,487 +1724245800,Microsoft WNS,578,442 +1724245800,Apple Maps,6262,29951 +1724245800,Rambler,19640,124138 +1724245800,Exchange Online,1168,8065 +1724245800,Office 365,140697,89845 +1724245800,Microsoft Windows Live Services Authentication,14525,31513 +1724245800,ICMP,7052,0 +1724245800,JetBrains,8130,414575 +1724245800,Office Mobile,7739,19724 +1724245800,Telegram,25202,355607 +1724245800,GISMETEO,896,2541 +1724245800,Grammarly,12551,9972 +1724245800,Stripe,13091,9164 +1724245800,DNS over TLS,1067,9615 +1724245800,Microsoft Teams,2985,7527 +1724245800,DNS over HTTPS,254716,633441 +1724245800,Discord,4044,16357 +1724245800,Google,45321,29895 +1724245800,HTTPS,45321,29895 +1724245800,SSL client,45321,29895 +1724245800,__unknown,132,156 +1724245800,__unknown,59359,310359 +1724245800,__unknown,110279,114713 +1724245800,__unknown,94,660 +1724245800,HTTPS,2896,5999 +1724245800,__unknown,92631,395935 +1724245800,HTTP,14611,10656 +1724245800,HTTPS,31771,12442 +1724245800,ICMP,8041,740 +1724245800,__unknown,97211,100998 +1724245800,Google APIs,21690,19859 +1724245800,Google Analytics,56126,33845 +1724245800,HTTP,1714,1002 +1724245800,HTTPS,846827,176971 +1724245800,SSL client,77816,53704 +1724245800,Apple Maps,2558,7060 +1724245800,ICMP,940,0 +1724245800,DNS over HTTPS,6105,16581 +1724245800,__unknown,169156,3160582 +1724245800,Google,11894,21754 +1724245800,Skype Auth,1259,960 +1724245800,Adobe Software,2382,24695 +1724245800,HTTP,386,992 +1724245800,Skype,1259,960 +1724245800,SSL,16341,14914 +1724245800,YouTube,164688,301549 +1724245800,VKontakte,40380,80673 +1724245800,HTTPS,244751,464225 +1724245800,APNS,16341,14914 +1724245800,SSL client,235685,443585 +1724245800,Samsung,386,992 +1724245800,ICMP,5314,1998 +1724245800,DNS over HTTPS,13515,19981 +1724245800,__unknown,2465169,24473609 +1724245800,BitTorrent,616,694 +1724245800,Google APIs,171063,269347 +1724245800,Google Drive,56164,43479 +1724245800,Google,102398,343633 +1724245800,Google Translate,4467,3505 +1724245800,BitTorrent tracker,306,198 +1724245800,DNS,37295,66 +1724245800,Firefox,2026,2541 +1724245800,Gmail,21375,33214 +1724245800,Google Analytics,34267,58588 +1724245800,HTTP,9538,26601 +1724245800,Microsoft Update,642,511 +1724245800,NTP,13650,3900 +1724245800,SSL,6316,10230 +1724245800,STUN,7320,8482 +1724245800,YouTube,8184,58154 +1724245800,VKontakte,45752,1037298 +1724245800,Advanced Packaging Tool,1274,1226 +1724245800,HTTPS,3154278,150851424 +1724245800,WhatsApp,16819,338679 +1724245800,Avast,1002,7349 +1724245800,SSL client,547049,2009673 +1724245800,Ubuntu Update Manager,1274,1226 +1724245800,Microsoft,1446,15936 +1724245800,Mail.Ru,1789,10957 +1724245800,Yandex,69668,82530 +1724245800,Microsoft CryptoAPI,2292,2434 +1724245800,Microsoft WNS,1446,15936 +1724245800,Google Play,9207,24064 +1724245800,ICMP,148161,12284 +1724245800,Gmail attachment,284,0 +1724245800,Firebase Crashlytics,1991,6511 +1724245800,Telegram,525,309 +1724245800,Google Sign in,17474,26095 +1724245800,Thin Manager TFTP,5208,3240 +1724245800,DNS over HTTPS,30653,77747 +1724245800,__unknown,2201065,11035673 +1724245800,Bing,1248,5529 +1724245800,BitTorrent,459,515 +1724245800,DHCPv6,1141,0 +1724245800,Google APIs,23588,99232 +1724245800,Google Drive,2796,1673 +1724245800,Google,40687,110587 +1724245800,QQ,678,343 +1724245800,BitTorrent tracker,459,515 +1724245800,Chrome,1695,1452 +1724245800,DNS,60758,54502 +1724245800,Gmail,11288,11969 +1724245800,HTTP,195601,166454 +1724245800,Internet Explorer,6967,2455 +1724245800,iTunes,853,5875 +1724245800,Launchpad,3200,2480 +1724245800,Microsoft Update,981,1208 +1724245800,NTP,1710,1710 +1724245800,Skype,877,6855 +1724245800,SSL,3815,8068 +1724245800,STUN,2646,3300 +1724245800,VKontakte,23834,56642 +1724245800,RuTube,2097,24366 +1724245800,Advanced Packaging Tool,30067,27555 +1724245800,HTTPS,1597946,10095771 +1724245800,Apple sites,1802,4445 +1724245800,iCloud,52976,12199 +1724245800,Avast,382,391 +1724245800,SSL client,437203,7792423 +1724245800,Amazon Web Services,15725,11657 +1724245800,Ubuntu Update Manager,19595,18499 +1724245800,Microsoft,1266,15934 +1724245800,Mail.Ru,2530,5223 +1724245800,Yandex,192212,6840859 +1724245800,Ubuntu,9397,8881 +1724245800,Nvidia,41937,515593 +1724245800,Microsoft CryptoAPI,5624,5473 +1724245800,Microsoft NCSI,1314,1571 +1724245800,Microsoft WNS,1266,15934 +1724245800,Apple Maps,2098,4746 +1724245800,Google Play,7849,4552 +1724245800,Rambler,5372,13321 +1724245800,Google Hangouts,797,7092 +1724245800,smpnameres,41863,1535520 +1724245800,ICMP,8638,3478 +1724245800,360 Safeguard,922,615 +1724245800,Telegram,20685,164762 +1724245800,Thin Manager TFTP,292,332 +1724245800,Edge Chromium,47850,29801 +1724245800,Grammarly,2312,7887 +1724245800,DNS over TLS,14161,57981 +1724245800,DNS over HTTPS,28159,100483 +1724245800,Notion,2591,5469 +1724246100,Thin Manager TFTP,252,196 +1724246100,__unknown,255022,1074559 +1724246100,__unknown,4180,4080 +1724246100,__unknown,6123,6506 +1724246100,HTTPS,37372,69805 +1724246100,SSL client,37372,69805 +1724246100,Yandex,37372,69805 +1724246100,HTTPS,92338,184067 +1724246100,SSL client,78537,167017 +1724246100,Yandex,25339,96387 +1724246100,Telegram,53198,70630 +1724246100,__unknown,705,0 +1724246100,HTTPS,221795,145988 +1724246100,SSL client,26310,18700 +1724246100,Yandex,26310,18700 +1724246100,__unknown,37594,26121 +1724246100,HTTPS,4582614,18210137 +1724246100,SSL client,1449982,17310251 +1724246100,Mail.Ru,1449982,17310251 +1724246100,__unknown,28915,458665 +1724246100,Dropbox,13801113,180081 +1724246100,HTTPS,15914329,833307 +1724246100,SSL client,14927953,233170 +1724246100,Google Play,13099,6274 +1724246100,Dropbox Download,1113741,46815 +1724246100,HTTPS,2398816,42749522 +1724246100,SSL client,1959398,42411488 +1724246100,Mail.Ru,1431957,42247648 +1724246100,Yandex,503516,133620 +1724246100,Google Play,23925,30220 +1724246100,Telegram,19295,29836 +1724246100,__unknown,285115,238534 +1724246100,Bing,109993,113818 +1724246100,Google APIs,8630,16419 +1724246100,Google,1663,13718 +1724246100,MSN,2844,7599 +1724246100,HTTP,1886,1970 +1724246100,LiveJournal,10582,49471 +1724246100,Skype,2660,12879 +1724246100,YouTube,5145,4978 +1724246100,TeamViewer,1222,6474 +1724246100,HTTPS,2452011,9547904 +1724246100,Apple sites,1719,8743 +1724246100,Mozilla,2361,4799 +1724246100,Opera,6892,10273 +1724246100,SSL client,2129587,7897640 +1724246100,Microsoft,19478,41419 +1724246100,NIH,4723,12383 +1724246100,Mail.Ru,101531,124360 +1724246100,Yandex,401697,6399178 +1724246100,AMD,733,5083 +1724246100,Microsoft CryptoAPI,1886,1970 +1724246100,Apple Maps,2838,6419 +1724246100,Google Play,1309333,81272 +1724246100,Battle.net site,2258,3973 +1724246100,Telegram,2306,7834 +1724246100,AnyDesk,1993,3439 +1724246100,Sberbank of Russia,136431,977975 +1724246100,Google Sign in,4806,8278 +1724246100,Xiaomi,1778,4821 +1724246100,__unknown,1594480,17650249 +1724246100,Bing,8073,13553 +1724246100,Google APIs,32083,121897 +1724246100,Google,241208,262144 +1724246100,MSN,18736,51182 +1724246100,Android browser,533,333 +1724246100,Chrome,425,484 +1724246100,HTTP,25014,2018965 +1724246100,iTunes,6072,35245 +1724246100,Microsoft Update,1280,3488 +1724246100,Skype,6571,15857 +1724246100,SSL,58607,663434 +1724246100,TeamViewer,1449,8838 +1724246100,VKontakte,11260,26342 +1724246100,Advanced Packaging Tool,936,1131 +1724246100,IMAPS,15205,56191 +1724246100,HTTPS,5495607,30735440 +1724246100,APNS,29636,13056 +1724246100,iCloud,36165,70951 +1724246100,Mozilla,3283,10053 +1724246100,Opera,4756,4985 +1724246100,SSL client,2786486,14640267 +1724246100,Ad Nexus,144680,29328 +1724246100,Amazon Web Services,3139,21490 +1724246100,Taobao,4595,47666 +1724246100,Ubuntu Update Manager,936,1131 +1724246100,Microsoft,101963,2170313 +1724246100,Mail.Ru,546787,1249155 +1724246100,Yandex,290175,4388919 +1724246100,GitHub,573200,2296024 +1724246100,Nvidia,431744,1201659 +1724246100,Microsoft CryptoAPI,536,891 +1724246100,Microsoft NCSI,454,192 +1724246100,Apple Maps,18482,51100 +1724246100,Exchange Online,12774,22277 +1724246100,Office 365,20001,147042 +1724246100,Microsoft Windows Live Services Authentication,62971,143726 +1724246100,Office Mobile,8706,7936 +1724246100,Telegram,28841,143070 +1724246100,Sberbank of Russia,205830,4288767 +1724246100,Edge Chromium,527,2005 +1724246100,DNS over TLS,859,4770 +1724246100,DNS over HTTPS,32658,109620 +1724246100,HTTPS,292630,582903 +1724246100,__unknown,25821,126533 +1724246100,ICMP,7544,0 +1724246100,__unknown,299666,113017 +1724246100,HTTPS,528603,169115 +1724246100,__unknown,4541,2085 +1724246100,DNS over HTTPS,102866,224908 +1724246100,__unknown,89645,86529 +1724246100,HTTPS,18755,26538 +1724246100,__unknown,16666,114003 +1724246100,__unknown,26830,314240 +1724246100,Google,60626,41405 +1724246100,SSL,2783,8935 +1724246100,HTTPS,63925,46897 +1724246100,SSL client,63409,50340 +1724246100,Google Hangouts,2783,8935 +1724246100,ICMP,7832,0 +1724246100,Telegram,2100,1236 +1724246100,DNS over HTTPS,6176,11777 +1724246100,__unknown,22629,161557 +1724246100,Google APIs,4797,8522 +1724246100,Google,21337,39993 +1724246100,Adobe Software,3509,7106 +1724246100,HTTP,3886,45611 +1724246100,SSL,21046,15193 +1724246100,YouTube,294539,174765 +1724246100,VKontakte,2897,9625 +1724246100,HTTPS,516388,3519708 +1724246100,APNS,21046,15193 +1724246100,Apple sites,7160,14444 +1724246100,SSL client,394288,322567 +1724246100,GitHub,2588,7016 +1724246100,Google Play,33178,13365 +1724246100,New Relic,3237,32538 +1724246100,ICMP,2348,1998 +1724246100,Telegram,2769,4203 +1724246100,DNS over HTTPS,9134,24445 +1724246100,__unknown,3449859,36980498 +1724246100,BitTorrent,1116,496 +1724246100,Google APIs,61211,89880 +1724246100,Google Drive,181438,43254 +1724246100,Google,212923,640247 +1724246100,DNS,22675,0 +1724246100,Gmail,525572,1214058 +1724246100,HTTP,3124,3844 +1724246100,NetBIOS-dgm,243,0 +1724246100,NTP,13200,3450 +1724246100,YouTube,18443,27126 +1724246100,Odnoklassniki,2048,6771 +1724246100,Advanced Packaging Tool,1861,1756 +1724246100,HTTPS,4794588,227354992 +1724246100,WhatsApp,3585,13857 +1724246100,iCloud,3864,9045 +1724246100,Mozilla,4850,9649 +1724246100,SSL client,1137181,4364421 +1724246100,Amazon Web Services,32246,15042 +1724246100,Ubuntu Update Manager,1274,1226 +1724246100,Yandex,76576,2281403 +1724246100,Ubuntu,587,530 +1724246100,Google Play,1528,2038 +1724246100,ICMP,132007,14236 +1724246100,Weborama,2054,6117 +1724246100,Google Sign in,12240,14841 +1724246100,Thin Manager TFTP,276,106 +1724246100,DNS over HTTPS,29355,76855 +1724246100,__unknown,2292465,7251461 +1724246100,Apple Update,1814,4809 +1724246100,BitTorrent,645,0 +1724246100,DHCPv6,815,0 +1724246100,Google APIs,20719,48543 +1724246100,Google,19911,68943 +1724246100,QQ,678,343 +1724246100,BitTorrent tracker,459,0 +1724246100,Chrome,1762,1511 +1724246100,DNS,205618,127130 +1724246100,Firefox,1565,1699 +1724246100,Google Analytics,4103,30164 +1724246100,HTTP,1347099,63726875 +1724246100,Internet Explorer,678,343 +1724246100,Launchpad,2560,1984 +1724246100,Microsoft Update,981,887 +1724246100,NetBIOS-dgm,250,0 +1724246100,NTP,450,450 +1724246100,SSL,1885,12107 +1724246100,STUN,984,888 +1724246100,VKontakte,38774,367649 +1724246100,Odnoklassniki,2477,11070 +1724246100,Steam,3694,64566 +1724246100,Advanced Packaging Tool,23604,22015 +1724246100,HTTPS,1103565,19847444 +1724246100,Apple sites,2386,21342 +1724246100,iCloud,3062,8492 +1724246100,SSL client,553064,13327669 +1724246100,Amazon Web Services,1073,725 +1724246100,Ubuntu Update Manager,17965,17273 +1724246100,Microsoft,1379406,63568862 +1724246100,Mail.Ru,7583,19780 +1724246100,Yandex,271422,12624479 +1724246100,Ubuntu,8194,16827 +1724246100,Nvidia,4114,6048 +1724246100,Microsoft CryptoAPI,10358,9875 +1724246100,Microsoft NCSI,1488,1519 +1724246100,Apple Maps,4059,14753 +1724246100,Google Play,3833,8824 +1724246100,Google Hangouts,797,7093 +1724246100,ICMP,8387,3538 +1724246100,Telegram,31922,71340 +1724246100,Sberbank of Russia,6816,21015 +1724246100,Edge Chromium,7738,21783 +1724246100,DNS over TLS,11930,49678 +1724246100,DNS over HTTPS,38669,145943 +1724246400,Thin Manager TFTP,332,300 +1724246400,__unknown,36593,43716 +1724246400,__unknown,43065,38911 +1724246400,HTTPS,5191,7542 +1724246400,SSL client,5191,7542 +1724246400,Sharepoint Online,5191,7542 +1724246400,HTTPS,61010,69856 +1724246400,SSL client,61010,69856 +1724246400,Yandex,7270,5814 +1724246400,Telegram,53740,64042 +1724246400,Google Analytics,19012,16736 +1724246400,HTTPS,232173,542694 +1724246400,SSL client,185463,517391 +1724246400,Mail.Ru,151734,401560 +1724246400,Yandex,14717,99095 +1724246400,HTTPS,23420,107455 +1724246400,SSL client,23420,107455 +1724246400,Yandex,23420,107455 +1724246400,HTTPS,93958,125044 +1724246400,SSL client,54284,62036 +1724246400,Telegram,54284,62036 +1724246400,__unknown,47930,48399 +1724246400,Dropbox,12705,5489 +1724246400,HTTPS,1114704,253047 +1724246400,SSL client,32953,11021 +1724246400,Yandex,20248,5532 +1724246400,__unknown,230810,246249 +1724246400,Google APIs,9119,94075 +1724246400,HTTPS,157431,280944 +1724246400,SSL client,120066,258245 +1724246400,Yandex,15279,98065 +1724246400,Google Play,95668,66105 +1724246400,__unknown,214511,2618432 +1724246400,Dropbox,2791,1284 +1724246400,Google APIs,3297,6967 +1724246400,Google,26899,793139 +1724246400,Chrome,1466,2450 +1724246400,Gmail,5599,8195 +1724246400,HTTP,1466,2450 +1724246400,iTunes,5621,46808 +1724246400,TeamViewer,1458,8847 +1724246400,VKontakte,1293,4619 +1724246400,HTTPS,1007540,5387083 +1724246400,Apple sites,6862,200840 +1724246400,Mozilla,18332,13689 +1724246400,Avast,1583,10173 +1724246400,SSL client,486296,2558580 +1724246400,Microsoft,23240,47642 +1724246400,Mail.Ru,61305,83113 +1724246400,Siri,1802,6366 +1724246400,Yandex,191869,1101036 +1724246400,GitHub,12131,13227 +1724246400,Nvidia,84620,121535 +1724246400,Exchange Online,11820,15186 +1724246400,Office 365,4499,18943 +1724246400,Telegram,7448,41236 +1724246400,Sberbank of Russia,7664,12328 +1724246400,Xiaomi,4223,4929 +1724246400,Stripe,8058,6311 +1724246400,Microsoft Teams,2796,35853 +1724246400,DNS over HTTPS,2324,7764 +1724246400,__unknown,1009046,5688722 +1724246400,Bing,168851,3700570 +1724246400,Dropbox,4226,3062 +1724246400,Google APIs,185993,46553 +1724246400,Google,15099,26469 +1724246400,MSN,9442,27021 +1724246400,Yahoo!,88932,1203464 +1724246400,Android browser,896,2550 +1724246400,Chrome,1830,587 +1724246400,Gmail,3693,17712 +1724246400,HTTP,15282,22926 +1724246400,iTunes,3659,36404 +1724246400,Microsoft Update,15578,185719 +1724246400,Skype,11663,188966 +1724246400,YouTube,5426,28932 +1724246400,Yahoo! Mail,17796,445461 +1724246400,Advanced Packaging Tool,2262,1931 +1724246400,IMAPS,7094,23420 +1724246400,HTTPS,5182711,50699109 +1724246400,WhatsApp,240158,6876556 +1724246400,Apple sites,67676,70277 +1724246400,iCloud,283996,456350 +1724246400,Mozilla,6769,12480 +1724246400,SSL client,3319133,16416684 +1724246400,Ad Nexus,72351,16134 +1724246400,Samsung,22435,7581 +1724246400,Ubuntu Update Manager,1561,1430 +1724246400,Microsoft,332024,676009 +1724246400,NIH,4599,11893 +1724246400,Mail.Ru,667389,3992391 +1724246400,Yandex,375094,2278410 +1724246400,GitHub,325266,1031389 +1724246400,Ubuntu,701,501 +1724246400,Microsoft Azure,2682,12079 +1724246400,Nvidia,385218,1192748 +1724246400,Google Update,4341,10370 +1724246400,Microsoft CryptoAPI,2218,4358 +1724246400,uTorrent,21800,39168 +1724246400,Apple Maps,2136,4705 +1724246400,Google Play,25497,42473 +1724246400,Rambler,3113,5282 +1724246400,Exchange Online,1247,6467 +1724246400,Office 365,78451,355432 +1724246400,Microsoft Windows Live Services Authentication,37272,103845 +1724246400,Weborama,5671,10229 +1724246400,Yandex Music,1775,41842 +1724246400,Office Mobile,32872,26806 +1724246400,Telegram,175994,13899847 +1724246400,Sberbank of Russia,21462,21115 +1724246400,GISMETEO,896,2550 +1724246400,Grammarly,2036,7069 +1724246400,Microsoft Teams,2914,7068 +1724246400,DNS over HTTPS,20968,89146 +1724246400,Adobe Update,2004,8887 +1724246400,__unknown,19955,26555 +1724246400,__unknown,0,312 +1724246400,__unknown,162948,166153 +1724246400,HTTPS,445977,166373 +1724246400,DNS over HTTPS,20914,47598 +1724246400,Odnoklassniki,6764,6257 +1724246400,HTTPS,36036,47226 +1724246400,SSL client,6764,6257 +1724246400,__unknown,107518,909710 +1724246400,__unknown,60553,9610 +1724246400,Google,5724,11131 +1724246400,HTTP,5902,20677 +1724246400,HTTPS,76863,1307363 +1724246400,SSL client,5724,11131 +1724246400,ICMP,24226,2700 +1724246400,Telegram,5902,20677 +1724246400,__unknown,122245,941008 +1724246400,Google,14177,24092 +1724246400,HTTPS,286977,563948 +1724246400,Spotify,2185,7984 +1724246400,Apple sites,4383,13265 +1724246400,SSL client,24279,51320 +1724246400,CloudFlare,3534,5979 +1724246400,ICMP,8262,7554 +1724246400,DNS over HTTPS,3642,6934 +1724246400,__unknown,3005218,43444373 +1724246400,BitTorrent,1054,496 +1724246400,DHCPv6,163,0 +1724246400,Google APIs,72725,37478 +1724246400,Google Drive,5852,9794 +1724246400,Google,215298,394129 +1724246400,Google Translate,4704,3571 +1724246400,DNS,27323,0 +1724246400,Gmail,40061,84289 +1724246400,HTTP,5103,8050 +1724246400,Microsoft Update,586,506 +1724246400,NTP,18070,4455 +1724246400,STUN,4040,3740 +1724246400,YouTube,2481,6083 +1724246400,VKontakte,2169,5279 +1724246400,Odnoklassniki,2103,6711 +1724246400,Advanced Packaging Tool,1274,1226 +1724246400,HTTPS,757697,4590286 +1724246400,Apple sites,6656,37572 +1724246400,SSL client,417755,1099764 +1724246400,Amazon Web Services,29872,13443 +1724246400,Ubuntu Update Manager,1274,1226 +1724246400,Microsoft,914,4467 +1724246400,Yandex,14716,455075 +1724246400,Microsoft CryptoAPI,1785,3988 +1724246400,Pocket,2704,6233 +1724246400,Google Play,12042,21834 +1724246400,Rambler,3181,12050 +1724246400,ICMP,36434,9920 +1724246400,Telegram,91562,545839 +1724246400,Google Sign in,4981,7989 +1724246400,Thin Manager TFTP,384,214 +1724246400,DNS over HTTPS,13805,42675 +1724246400,__unknown,3821972,13410852 +1724246400,BitTorrent,1203,515 +1724246400,Google APIs,35633,170430 +1724246400,Google,45919,195987 +1724246400,MSN,578,502 +1724246400,QQ,678,343 +1724246400,BitTorrent tracker,459,515 +1724246400,Chrome,1761,1452 +1724246400,DNS,52373,49114 +1724246400,Gmail,23101,18477 +1724246400,HTTP,130462,267796 +1724246400,Internet Explorer,678,343 +1724246400,Launchpad,2560,1984 +1724246400,Microsoft Update,5448,4687 +1724246400,NTP,2520,2520 +1724246400,SSL,797,7092 +1724246400,STUN,3106,4188 +1724246400,YouTube,11762,11951 +1724246400,VKontakte,2434,5432 +1724246400,Odnoklassniki,3790,7514 +1724246400,Advanced Packaging Tool,34511,162832 +1724246400,HTTPS,999401,9319693 +1724246400,WhatsApp,1948,8420 +1724246400,Apple sites,8493,56967 +1724246400,iCloud,24280,74467 +1724246400,Mozilla,14600,19373 +1724246400,Avast,382,391 +1724246400,SSL client,326671,6829109 +1724246400,Amazon Web Services,3639,22339 +1724246400,Ubuntu Update Manager,24578,23445 +1724246400,Microsoft,3440,22286 +1724246400,Mail.Ru,6297,5215 +1724246400,Yandex,116045,6161082 +1724246400,Ubuntu,9564,139696 +1724246400,Microsoft CryptoAPI,7221,7654 +1724246400,Microsoft NCSI,1117,1046 +1724246400,Microsoft WNS,1904,16435 +1724246400,Google Play,9106,12555 +1724246400,Office 365,992,1250 +1724246400,Google Hangouts,797,7092 +1724246400,ICMP,8258,4736 +1724246400,Telegram,18229,30102 +1724246400,TikTok,1632,1706 +1724246400,Edge Chromium,7678,21132 +1724246400,DNS over TLS,9471,43508 +1724246400,DNS over HTTPS,25880,92332 +1724246400,DeepL Translator,2245,7263 +1724246400,Notion,6018,12069 +1724246700,__unknown,35215193,818629275 +1724246700,Telegram,459466,2158974 +1724246700,HTTPS,2053857,191300 +1724246700,HTTPS,17463,162552 +1724246700,__unknown,108904,116000 +1724246700,HTTPS,47881,135902 +1724246700,SSL client,47881,135902 +1724246700,Yandex,42469,120253 +1724246700,Microsoft Azure,5412,15649 +1724246700,Google,100038,64270 +1724246700,HTTPS,108382,78925 +1724246700,SSL client,108382,78925 +1724246700,Mail.Ru,8344,14655 +1724246700,HTTPS,7907,6067 +1724246700,SSL client,7907,6067 +1724246700,Yandex,7907,6067 +1724246700,Google APIs,3582,12656 +1724246700,HTTPS,761794,16709258 +1724246700,SSL client,3582,12656 +1724246700,Dropbox,119238,19675 +1724246700,Google APIs,2302,6239 +1724246700,HTTPS,209183,122535 +1724246700,SSL client,186627,66177 +1724246700,Google Play,65087,40263 +1724246700,Dropbox,401578,29900 +1724246700,Google APIs,1987,6293 +1724246700,HTTP,30867,1916483 +1724246700,HTTPS,3630333,4906821 +1724246700,SSL client,3498095,4779317 +1724246700,Microsoft,40013,1974119 +1724246700,Yandex,2486327,4652490 +1724246700,Google Play,1250,6023 +1724246700,Dropbox Download,597807,26975 +1724246700,__unknown,349449,206476 +1724246700,Bing,6298,5548 +1724246700,Dropbox,6764,4128 +1724246700,Google,35860,85194 +1724246700,MSN,1645,7593 +1724246700,Google Analytics,4718,7626 +1724246700,Skype,2655,8337 +1724246700,VKontakte,11691,16981 +1724246700,HTTPS,5853539,114015450 +1724246700,iCloud,8795,12051 +1724246700,Avast,1314,13266 +1724246700,SSL client,5099788,111713186 +1724246700,Samsung,2662,8748 +1724246700,Microsoft,53407,311187 +1724246700,Mail.Ru,68582,88714 +1724246700,Yandex,4736802,110969748 +1724246700,GitHub,6624,12206 +1724246700,Microsoft Azure,2478,9042 +1724246700,Nvidia,121426,29491 +1724246700,uTorrent,10980,19578 +1724246700,Apple Maps,3667,40875 +1724246700,Exchange Online,4196,20259 +1724246700,Office 365,11118,54433 +1724246700,Malwarebytes,1773,29056 +1724246700,Telegram,18276,100859 +1724246700,DNS over HTTPS,5803,16897 +1724246700,__unknown,1598011,33039948 +1724246700,Apple Update,3540,10237 +1724246700,Bing,4293,16527 +1724246700,Dropbox,1946628,28761 +1724246700,Google APIs,180148,153556 +1724246700,Google,2212045,1044644 +1724246700,MSN,12615,31902 +1724246700,Yahoo!,62752,48939 +1724246700,Android browser,3302,3110 +1724246700,DNS,333,447 +1724246700,Gmail,25394,56651 +1724246700,HTTP,33320,21136 +1724246700,iTunes,13621,39105 +1724246700,Launchpad,574,430 +1724246700,Reddit,4161,26072 +1724246700,YouTube,18480,24144 +1724246700,VKontakte,43436,159171 +1724246700,Advanced Packaging Tool,3876,3643 +1724246700,IMAPS,30792,68259 +1724246700,HTTPS,8803224,36789740 +1724246700,WhatsApp,101709,8711934 +1724246700,Apple sites,35126,243945 +1724246700,iCloud,199412,253179 +1724246700,SSL client,6737306,17687137 +1724246700,Ad Nexus,72111,14316 +1724246700,Amazon Web Services,5303,29294 +1724246700,CloudFront,993,6974 +1724246700,Ubuntu Update Manager,2775,2683 +1724246700,Microsoft,246327,7005629 +1724246700,Mail.Ru,412118,543871 +1724246700,Yandex,178465,1714282 +1724246700,GitHub,521344,2407756 +1724246700,Ubuntu,527,530 +1724246700,Microsoft Azure,51376,18466 +1724246700,Nvidia,128291,131564 +1724246700,Microsoft CryptoAPI,553,2141 +1724246700,uTorrent,10944,19494 +1724246700,Apple Maps,3521,17746 +1724246700,Rubicon Project,3345,11967 +1724246700,Google Play,3797,2289 +1724246700,Rambler,3113,5425 +1724246700,Apple Music,4602,9817 +1724246700,Office 365,187999,48586 +1724246700,Sharepoint Online,10013,209966 +1724246700,Microsoft Windows Live Services Authentication,29606,68230 +1724246700,Gmail attachment,20021,694733 +1724246700,Mail.ru Attachment,61521,2535290 +1724246700,Telegram,24782,60563 +1724246700,GISMETEO,974,2692 +1724246700,Edge Chromium,461,2008 +1724246700,Stripe,5751,5421 +1724246700,Microsoft Teams,2994,49252 +1724246700,DNS over HTTPS,14305,64913 +1724246700,Adobe Update,759,4011 +1724246700,HTTPS,105201,134907 +1724246700,SSL client,105201,134907 +1724246700,Telegram,105201,134907 +1724246700,__unknown,156,66 +1724246700,Google,28278,42839 +1724246700,HTTPS,28278,42839 +1724246700,SSL client,28278,42839 +1724246700,Google,21960,42552 +1724246700,HTTPS,44981,80515 +1724246700,SSL client,21960,42552 +1724246700,__unknown,193003,290056 +1724246700,HTTPS,28448,508140 +1724246700,CoAP,3528,2592 +1724246700,__unknown,126986,119497 +1724246700,HTTPS,80072,92273 +1724246700,SSL client,54481,67856 +1724246700,Apple Maps,2570,7246 +1724246700,ICMP,1978,0 +1724246700,Telegram,54481,67856 +1724246700,DNS over HTTPS,0,1736 +1724246700,__unknown,12834,10667 +1724246700,Google,41257,119344 +1724246700,HTTPS,239414,5303828 +1724246700,Apple sites,1467,6029 +1724246700,SSL client,95684,142768 +1724246700,Google Play,52960,17395 +1724246700,ICMP,7668,2220 +1724246700,DNS over HTTPS,4106,11743 +1724246700,__unknown,4521889,38547530 +1724246700,BitTorrent,1918,1033 +1724246700,DHCPv6,815,0 +1724246700,Google APIs,14526,68534 +1724246700,Google,145952,293628 +1724246700,Google Translate,14551,16429 +1724246700,Android browser,1453,2941 +1724246700,BitTorrent tracker,306,537 +1724246700,DNS,17113,0 +1724246700,Gmail,7263,4375 +1724246700,HTTP,8125,13157 +1724246700,iTunes,2287,11768 +1724246700,Microsoft Update,641,507 +1724246700,NetBIOS-dgm,243,0 +1724246700,NTP,13740,3990 +1724246700,SSL,19792,26402 +1724246700,STUN,1860,3190 +1724246700,TeamViewer,904,6237 +1724246700,VKontakte,37625,231679 +1724246700,HTTPS,544590,1443383 +1724246700,APNS,18118,18372 +1724246700,Mozilla,43585,18765 +1724246700,SSL client,343645,774674 +1724246700,Microsoft,2262,6605 +1724246700,VeriSign,566,2141 +1724246700,Yandex,5193,31807 +1724246700,Microsoft CryptoAPI,5781,8919 +1724246700,Google Play,37973,35796 +1724246700,Google Hangouts,1674,8030 +1724246700,ICMP,23599,13664 +1724246700,Telegram,2216,7746 +1724246700,TikTok,1090,743 +1724246700,GISMETEO,986,2608 +1724246700,Google Sign in,6140,4136 +1724246700,Thin Manager TFTP,472,358 +1724246700,Grammarly,2374,12761 +1724246700,DNS over HTTPS,9438,23558 +1724246700,__unknown,2405683,12450820 +1724246700,BitTorrent,831,198 +1724246700,DHCPv6,163,0 +1724246700,Google APIs,39413,96909 +1724246700,Google,174831,54977 +1724246700,Google Translate,3664,7388 +1724246700,QQ,678,343 +1724246700,BitTorrent tracker,459,198 +1724246700,Chrome,3027,2512 +1724246700,DNS,85280,81447 +1724246700,Gmail,18098,19514 +1724246700,HTTP,133023,250146 +1724247000,__unknown,6970513,25543170 +1724247000,Apple Update,3551,9928 +1724247000,BITS,915,792 +1724247000,BitTorrent,831,515 +1724247000,DHCPv6,978,0 +1724247000,Google APIs,17465,49790 +1724247000,Google Drive,15428,14007 +1724247000,Google,68573,129685 +1724247000,MSN,1154,1002 +1724247000,QQ,678,343 +1724247000,BitTorrent tracker,459,515 +1724247000,Chrome,2338,2002 +1724247000,DNS,88161,79336 +1724247000,Gmail,15713,19107 +1724247000,Google Analytics,7164,7898 +1724247000,HTTP,140010,311989 +1724247000,Internet Explorer,678,343 +1724247000,Launchpad,2560,1984 +1724247000,LiveJournal,463258,1256962 +1724247000,Microsoft Update,4798,3946 +1724247000,NTP,3780,3780 +1724247000,SSL,3739,13356 +1724247000,STUN,2348,1700 +1724247000,VKontakte,9688,21203 +1724247000,Odnoklassniki,2120,6695 +1724247000,Steam,817,16165 +1724247000,Advanced Packaging Tool,22943,21418 +1724247000,HTTPS,1906124,5765502 +1724247000,Apple sites,8835,51580 +1724247000,iCloud,23302,56348 +1724247000,Mozilla,6464,11994 +1724247000,Opera,5857,22031 +1724247000,SSL client,753722,2557012 +1724247000,Ubuntu Update Manager,18035,17314 +1724247000,Microsoft,6081,172125 +1724247000,Mail.Ru,15305,33483 +1724247000,Yandex,42293,673532 +1724247000,Ubuntu,4048,3960 +1724247000,Microsoft CryptoAPI,9768,13951 +1724247000,Microsoft NCSI,1262,1453 +1724247000,Microsoft WNS,1847,8968 +1724247000,Rambler,25336,34232 +1724247000,Office 365,586,685 +1724247000,ICMP,15575,2294 +1724247000,Weborama,3185,7515 +1724247000,Gmail attachment,194,142 +1724247000,Telegram,21156,169252 +1724247000,TikTok,4734,92873 +1724247000,Edge Chromium,4336,12207 +1724247000,Grammarly,1442,7886 +1724247000,DNS over TLS,13004,53182 +1724247000,DNS over HTTPS,68615,218348 +1724247000,Notion,5283,12675 +1724247300,__unknown,10413995,91028549 +1724247300,BITS,1734,4331 +1724247300,BitTorrent,740,1190 +1724247300,DHCPv6,163,0 +1724247300,Google APIs,42389,135672 +1724247300,Google,82951,217966 +1724247300,Google Translate,9878,14131 +1724247300,MSN,578,502 +1724247300,BitTorrent tracker,306,198 +1724247300,Chrome,11126,6702 +1724247300,DNS,42560,0 +1724247300,Gmail,16746,13402 +1724247300,HTTP,17449,21949 +1724247300,iTunes,2362,18474 +1724247300,NTP,630,630 +1724247300,STUN,2928,3854 +1724247300,VKontakte,32522,371284 +1724247300,Odnoklassniki,3077,16012 +1724247300,HTTPS,1561215,9427931 +1724247300,Apple sites,4593,25105 +1724247300,Mozilla,4800,6319 +1724247300,SSL client,268966,1494561 +1724247300,Microsoft,2367,12297 +1724247300,Yandex,6958,14336 +1724247300,Microsoft WNS,1211,8468 +1724247300,Google Play,22219,27345 +1724247300,ICMP,56933,12700 +1724247300,Gmail attachment,426,0 +1724247300,Telegram,5810,10238 +1724247300,TikTok,32421,618232 +1724247300,Grammarly,2168,7947 +1724247300,DNS over HTTPS,17653,53061 +1724247300,Notion,3562,2942 +1724247300,__unknown,2856686,7425053 +1724247300,BITS,1917,2658 +1724247300,BitTorrent,306,0 +1724247300,DHCPv6,978,0 +1724247300,Google APIs,38106,99098 +1724247300,Google Drive,8964,11014 +1724247300,Google,57414,83525 +1724247300,QQ,1092,1924 +1724247300,BitTorrent tracker,306,0 +1724247300,Chrome,2825,2420 +1724247300,DNS,74669,68242 +1724247300,Firefox,3041,4261 +1724247300,Gmail,30317,52667 +1724247300,Google Analytics,1073,5242 +1724247300,HTTP,133770,419457 +1724247300,Internet Explorer,678,343 +1724247300,iTunes,3394,28103 +1724247300,Launchpad,3200,2480 +1724247300,Microsoft Update,1623,1325 +1724247300,NetBIOS-dgm,243,0 +1724247300,NTP,1260,1350 +1724247300,SSL,25009,9919 +1724247300,STUN,2214,1924 +1724247300,VKontakte,2434,5542 +1724247300,Odnoklassniki,1968,6265 +1724247300,Advanced Packaging Tool,34514,31803 +1724247300,IMAPS,17006,38600 +1724247300,HTTPS,1522559,4271400 +1724247300,Apple sites,1531,17209 +1724247300,iCloud,13843,34415 +1724247300,Mozilla,3031,1935 +1724247300,Avast,382,391 +1724247300,SSL client,326274,2270428 +1724247300,Amazon Web Services,2240,10101 +1724247300,Ubuntu Update Manager,24713,23385 +1724247300,Microsoft,3436,300414 +1724247300,NIH,2832,6711 +1724247300,Mail.Ru,2975,10154 +1724247300,Yandex,98230,1638079 +1724247300,Ubuntu,7092,6399 +1724247300,Microsoft CryptoAPI,4804,4127 +1724247300,Pocket,3468,3477 +1724248500,__unknown,2180198,9011504 +1724248500,Apple Update,1721,4928 +1724248500,Google,15125,58953 +1724248500,MSN,577,501 +1724248500,QQ,678,343 +1724248500,Yahoo!,2437,6665 +1724248500,Chrome,549,452 +1724248500,DNS,96718,102344 +1724248500,Firefox,2058,2494 +1724248500,HTTP,63698,56572 +1724248500,Internet Explorer,678,343 +1724248500,Launchpad,640,496 +1724248500,Microsoft Update,1963,1701 +1724248500,VKontakte,34412,153880 +1724248500,Advanced Packaging Tool,12253,11652 +1724248500,HTTPS,1198607,4741153 +1724248500,Apple sites,1647,11281 +1724248500,SSL client,79048,297560 +1724248500,Ubuntu Update Manager,9756,9428 +1724248500,Microsoft,3181,6706 +1724248500,AddThis,2937,8579 +1724248500,Siri,5906,7881 +1724248500,Yandex,1719,1107 +1724248500,Ubuntu,1857,1728 +1724248500,Nvidia,3480,11097 +1724248500,Microsoft CryptoAPI,1963,1701 +1724248500,Microsoft NCSI,1899,1998 +1724248500,Microsoft WNS,577,501 +1724248500,WeChat,2329,4479 +1724248500,Telegram,4785,20977 +1724248500,Edge Chromium,1581,4094 +1724248500,Grammarly,1903,7404 +1724248500,DNS over TLS,4580,19079 +1724248500,DNS over HTTPS,14989,57632 +1724248800,__unknown,4193842,14908467 +1724248800,BitTorrent,525,0 +1724248800,DHCPv6,978,0 +1724248800,Google APIs,91672,68206 +1724248800,Google,107537,300150 +1724248800,BitTorrent tracker,153,0 +1724248800,DNS,79970,410 +1724248800,Gmail,25965,72596 +1724248800,HTTP,8588,17036 +1724248800,Microsoft Update,2532,2033 +1724248800,NTP,900,900 +1724248800,STUN,2762,4004 +1724248800,Odnoklassniki,2681,8189 +1724248800,HTTPS,950676,3133242 +1724248800,iCloud,3390,9269 +1724248800,SSL client,304006,1220339 +1724248800,GoDaddy,1178,5986 +1724248800,Yandex,2268,7112 +1724248800,Nvidia,2264,5772 +1724248800,Microsoft CryptoAPI,7308,15431 +1724248800,Google Play,28091,15399 +1724248800,ICMP,24926,9284 +1724248800,ICMP for IPv6,70,0 +1724248800,QUIC,11014,30584 +1724248800,TikTok,27800,715621 +1724248800,Google Sign in,10150,13076 +1724248800,DNS over HTTPS,13369,40439 +1724248800,__unknown,3457345,6540531 +1724248800,BitTorrent,459,515 +1724248800,DHCPv6,163,0 +1724248800,Eset,1122,553 +1724248800,Google APIs,26361,75362 +1724248800,Google,36669,116106 +1724248800,MSN,577,501 +1724248800,QQ,678,343 +1724248800,Android browser,740,769 +1724248800,Apple Mail,5786,16896 +1724248800,BitTorrent tracker,459,515 +1724248800,Chrome,39649,273106 +1724248800,DNS,206974,143902 +1724248800,Gmail,6684,7510 +1724248800,HTTP,158661,392470 +1724248800,Internet Explorer,678,343 +1724248800,Launchpad,3134,2480 +1724248800,Manolito,1603,0 +1724248800,Microsoft Update,2906,2028 +1724248800,NetBIOS-dgm,243,0 +1724248800,NTP,2340,2250 +1724248800,Skype,1215,6586 +1724248800,SSL,24183,141927 +1724248800,STUN,902,666 +1724248800,VKontakte,12655,21712 +1724248800,Odnoklassniki,1848,1468 +1724248800,Advanced Packaging Tool,28626,26785 +1724248800,IMAPS,5786,16896 +1724248800,HTTPS,2630777,19338430 +1724248800,Apple sites,5230,24030 +1724248800,iCloud,219050,373590 +1724248800,Mozilla,2832,5927 +1724248800,SSL client,1276174,7002086 +1724248800,Taobao,740,769 +1724248800,Ubuntu Update Manager,21888,20951 +1724248800,Microsoft,981,7385 +1724248800,NIH,4648,11980 +1724248800,AddThis,2337,7146 +1724248800,Mail.Ru,9609,18005 +1724248800,Yandex,902571,6169028 +1724248800,Amazon Ads System,1896,7610 +1724248800,Ubuntu,5382,5198 +1724248800,Game Center,2627,5007 +1724248800,Nvidia,9074,40816 +1724248800,Microsoft CryptoAPI,11126,14540 +1724248800,Microsoft NCSI,1927,1888 +1724248800,Microsoft WNS,577,501 +1724248800,Apple Maps,4161,10813 +1724248800,Improve Digital,2248,6765 +1724248800,Google Play,3156,16217 +1724248800,Rambler,5072,12799 +1724248800,Google Hangouts,1594,14185 +1724248800,ICMP,6485,3848 +1724248800,Telegram,17836,57893 +1724248800,TikTok,2453,1761 +1724248800,Edge Chromium,2629,5109 +1724248800,Font Awesome,1806,4529 +1724248800,Grammarly,2310,7886 +1724248800,DNS over TLS,4448,19082 +1724248800,DNS over HTTPS,13981,45106 +1724249100,__unknown,5283023,12651061 +1724249100,SSL,1664,2105 +1724249100,HTTPS,25737,48976 +1724249100,WhatsApp,1923,8418 +1724249100,SSL client,1664,2105 +1724249100,Google Hangouts,1664,2105 +1724249100,ICMP,23364,15474 +1724249100,DNS over HTTPS,185110,475746 +1724249100,__unknown,4470027,35349020 +1724249100,BITS,2440,5333 +1724249100,BitTorrent,434,496 +1724249100,Google APIs,41907,108374 +1724249100,Google Drive,7467,10252 +1724249100,Google,136527,486328 +1724249100,Android browser,458,333 +1724249100,DNS,60669,0 +1724249100,Firefox,2191,1185 +1724249100,Gmail,18502,32876 +1724249100,Google Analytics,3768,7722 +1724249100,HTTP,9245,12195 +1724249100,Microsoft Update,646,506 +1724249100,NetBIOS-dgm,250,0 +1724249100,NTP,3600,3510 +1724249100,SSL,4362,7089 +1724249100,STUN,372,370 +1724249100,VKontakte,2663,5152 +1724249100,Advanced Packaging Tool,1861,1756 +1724249100,HTTPS,711848,3562047 +1724249100,SSL client,245699,733145 +1724249100,Samsung,386,993 +1724249100,CloudFront,2100,8538 +1724249100,Ubuntu Update Manager,1274,1226 +1724249100,Yandex,4174,8930 +1724249100,Ubuntu,587,530 +1724249100,Microsoft CryptoAPI,646,506 +1724249100,Google Play,25130,52725 +1724249100,ICMP,18507,12956 +1724249100,ICMP for IPv6,140,0 +1724249100,TikTok,4344,7178 +1724249100,Grammarly,1766,6588 +1724249100,DNS over HTTPS,12087,32210 +1724249100,__unknown,2566672,10522531 +1724249100,Bing,1191,5353 +1724249100,BitTorrent,306,198 +1724249100,DHCPv6,978,0 +1724249100,Google APIs,16391,63325 +1724249100,Google,30785,146495 +1724249100,QQ,1092,1924 +1724249100,Apple Mail,6492,16781 +1724249100,BitTorrent tracker,306,198 +1724249100,Chrome,1176,1288 +1724249100,DNS,168024,116743 +1724249100,Firefox,2998,2565 +1724249100,Gmail,33658,35990 +1724249100,Google Analytics,3807,30805 +1724249100,HTTP,152355,145896 +1724249100,Internet Explorer,678,343 +1724249100,Launchpad,2708,1984 +1724249100,Microsoft Update,4927,4399 +1724249100,NTP,1530,1530 +1724249100,SSL,42083,208267 +1724249100,STUN,714,444 +1724249100,YouTube,730675,13125006 +1724249100,VKontakte,14013,62210 +1724249100,Steam,6209,22227 +1724249100,Advanced Packaging Tool,31964,28777 +1724249100,IMAPS,6492,16781 +1724249100,HTTPS,1893120,26827903 +1724249100,Apple sites,87917,34961 +1724249100,iCloud,112859,40283 +1724249100,Avast,382,391 +1724249100,SSL client,1393473,20479568 +1724249100,GoDaddy,582,2992 +1724249100,Ubuntu Update Manager,23592,21819 +1724249100,Microsoft,9388,19688 +1724249100,Mail.Ru,12602,21951 +1724249100,Yandex,211848,4561511 +1724249100,Ubuntu,7595,6954 +1724249100,Nvidia,73513,1971669 +1724249100,Microsoft CryptoAPI,13207,17385 +1724249100,Microsoft NCSI,1276,1519 +1724249100,Apple Maps,2986,10094 +1724249100,Scorecard Research,2550,7976 +1724249100,Rambler,5680,13083 +1724249100,Microsoft Windows Live Services Authentication,1952,23165 +1724249100,Google Hangouts,797,7092 +1724249100,ICMP,6856,2516 +1724249100,Mail.ru Attachment,4884,13834 +1724249100,Telegram,5101,8586 +1724249100,TikTok,5823,198022 +1724249100,Google Sign in,7844,5950 +1724249100,Edge Chromium,6157,18867 +1724249100,Grammarly,1923,7371 +1724249100,DNS over TLS,12551,52601 +1724249100,DNS over HTTPS,30654,111854 +1724249400,__unknown,2217504,1284058 +1724249400,Google,9586,14932 +1724249400,HTTPS,12947,20315 +1724249400,SSL client,9586,14932 +1724249400,ICMP,3488,1702 +1724249400,DNS over HTTPS,1199,5393 +1724249400,CoAP,3136,2304 +1724249400,__unknown,123173,225063 +1724249400,Google APIs,7195,12345 +1724249400,Google,9692,48190 +1724249400,HTTP,2257,11157 +1724249400,HTTPS,99391,634850 +1724249400,SSL client,55164,464753 +1724249400,Google Play,28527,13914 +1724249400,ICMP,10608,10302 +1724249400,Telegram,1286,1393 +1724249400,Font Awesome,9750,390304 +1724249400,__unknown,3757314,28137895 +1724249400,BitTorrent,868,496 +1724249400,DHCPv6,163,0 +1724249400,Google APIs,52650,50020 +1724249400,Google Drive,14147,24340 +1724249400,Google,111859,536736 +1724249400,Android browser,381,333 +1724249400,DNS,60145,0 +1724249400,Firefox,7360,7597 +1724249400,Gmail,24356,35617 +1724249400,Google Analytics,9238,32831 +1724249400,HTTP,12878,13996 +1724249400,Microsoft Update,4136,4137 +1724249400,NTP,1620,1620 +1724249400,SSL,1366,9222 +1724249400,STUN,186,222 +1724249400,YouTube,5784,20118 +1724249400,VKontakte,2603,5189 +1724249400,Odnoklassniki,2609,7434 +1724249400,HTTPS,1430421,24603127 +1724249400,WhatsApp,1795,6076 +1724249400,Apple sites,1821,6261 +1724249400,SSL client,370510,8802516 +1724249400,Microsoft,923,7148 +1724249400,Mail.Ru,3846,13406 +1724249400,Yandex,99508,7438788 +1724249400,Microsoft CryptoAPI,4738,5266 +1724249400,Google Play,3097,2408 +1724249400,ICMP,46744,13770 +1724249400,Telegram,637,361 +1724249400,TikTok,26247,602056 +1724249400,Google Sign in,5046,7841 +1724249400,Grammarly,1952,7602 +1724249400,DNS over HTTPS,26437,72751 +1724249400,Google Meet,5205,5054 +1724249400,__unknown,2071078,3082142 +1724249400,Apple Update,1777,4999 +1724249400,BitTorrent,459,317 +1724249400,Google APIs,35843,99932 +1724249400,Google Drive,3101,9652 +1724249400,Google,51985,696107 +1724249400,MSN,578,502 +1724249400,QQ,678,343 +1724249400,BitTorrent tracker,459,317 +1724249400,Chrome,1748,1485 +1724249400,DNS,113290,97389 +1724249400,Firefox,5027,5962 +1724249400,Gmail,5920,15840 +1724249400,HTTP,140854,1481948 +1724249400,Internet Explorer,678,343 +1724249400,Launchpad,2560,1984 +1724249400,Microsoft Update,1322,9165 +1724249400,NetBIOS-dgm,243,0 +1724249400,NTP,1350,1350 +1724249400,SSL,31518,109923 +1724249400,STUN,2906,4004 +1724249400,VKontakte,4743,11076 +1724249400,Advanced Packaging Tool,24878,22598 +1724249400,IMAPS,5920,15840 +1724249400,HTTPS,1704903,10131704 +1724249400,Apple sites,10305,29929 +1724249400,iCloud,10145,17409 +1724249400,Mozilla,4506,6318 +1724249400,SSL client,325218,1521779 +1724249400,Ubuntu Update Manager,18652,17326 +1724249400,Microsoft,106301,1652268 +1724249400,VeriSign,566,2141 +1724249400,Mail.Ru,1553,5225 +1724249400,Yandex,24886,71131 +1724249400,Ubuntu,4941,4671 +1724249400,Nvidia,31957,94897 +1724249400,Microsoft CryptoAPI,4356,13979 +1724249400,Microsoft NCSI,1379,1461 +1724249400,Microsoft WNS,2030,16650 +1724249400,Pocket,3600,3543 +1724249400,Google Play,14690,35084 +1724249400,CloudFlare,2443,26220 +1724249400,Google Hangouts,1975,14943 +1724249400,ICMP,9019,3108 +1724249400,ICMP for IPv6,70,0 +1724249400,Gmail attachment,388,284 +1724249400,Telegram,1006190,2192046 +1724249400,Edge Chromium,6097,18168 +1724249400,Stripe,3977,5407 +1724249400,DNS over TLS,16024,67228 +1724249400,DNS over HTTPS,63089,232459 +1724249700,__unknown,2259264,1132946 +1724249700,STUN,5766,7030 +1724249700,HTTPS,144261,55607 +1724249700,__unknown,44038,1555293 +1724249700,HTTPS,316290,151043 +1724249700,SSL client,313697,145359 +1724249700,Google Play,313697,145359 +1724249700,__unknown,731653,3154602 +1724249700,Google APIs,16408,92036 +1724249700,Google,18431,30945 +1724249700,HTTP,2931,119038 +1724249700,Steam,15291,230888 +1724249700,HTTPS,318009,992744 +1724249700,SSL client,271330,759252 +1724249700,GitHub,7499,244054 +1724249700,ICMP,3284,1776 +1724249700,Google Meet,213701,161329 +1724249700,__unknown,8942209,23551926 +1724249700,BitTorrent,496,434 +1724249700,DHCPv6,978,0 +1724249700,Google APIs,60191,62658 +1724249700,Google Drive,15808,13574 +1724249700,Google,212591,432492 +1724249700,Google Translate,5264,11441 +1724249700,Kaspersky,608,607 +1724249700,Android browser,782,526 +1724249700,DNS,63442,90 +1724249700,Firefox,4198,3848 +1724249700,Gmail,8614,15435 +1724249700,HTTP,9739,9719 +1724249700,Microsoft Update,979,704 +1724249700,NetBIOS-dgm,243,0 +1724249700,NTP,1710,1620 +1724249700,STUN,496,772 +1724249700,YouTube,4993,18685 +1724249700,VKontakte,2445,4382 +1724249700,Odnoklassniki,2609,7499 +1724249700,HTTPS,529239,1723092 +1724249700,Apple sites,4030,12303 +1724249700,Mozilla,6817,13789 +1724249700,SSL client,378013,757782 +1724249700,Microsoft,3332,6805 +1724249700,Microsoft CryptoAPI,2395,2421 +1724249700,Google Play,5676,17597 +1724249700,CloudFlare,1781,4516 +1724249700,ICMP,41577,14272 +1724249700,Gmail attachment,284,0 +1724249700,Telegram,1508,896 +1724249700,TikTok,1090,683 +1724249700,Xiaomi,4725,61712 +1724249700,DNS over HTTPS,62546,143453 +1724249700,CoAP,1176,864 +1724249700,__unknown,2437083,9239611 +1724249700,Apple Update,1721,4926 +1724249700,BitTorrent,3001,537 +1724249700,DHCPv6,163,0 +1724249700,Google APIs,11885,21606 +1724249700,Google,58302,173095 +1724249700,QQ,678,343 +1724249700,BitTorrent tracker,459,537 +1724249700,Chrome,7306,3909 +1724249700,DNS,88403,76822 +1724249700,Firefox,641,336 +1724249700,Gmail,632,4468 +1724249700,Google Analytics,1364,6027 +1724249700,HTTP,103713,208880 +1724249700,Internet Explorer,678,343 +1724249700,iTunes,2799,11250 +1724249700,Launchpad,3200,2480 +1724249700,Microsoft Update,2057,9805 +1724249700,NetBIOS-dgm,250,0 +1724249700,NTP,1980,2160 +1724249700,STUN,3194,4448 +1724249700,VKontakte,2284,5367 +1724249700,RuTube,2005,7864 +1724249700,Steam,2032,14095 +1724249700,Advanced Packaging Tool,34785,31859 +1724249700,HTTPS,803129,8260981 +1724249700,Apple sites,4783,22315 +1724249700,iCloud,64196,574488 +1724249700,Mozilla,11800,17814 +1724249700,SSL client,490795,7139810 +1724249700,Ubuntu Update Manager,27332,25435 +1724249700,Microsoft,7635,118760 +1724249700,Mail.Ru,5371,19672 +1724249700,Siri,3136,5264 +1724249700,Yandex,70728,65393 +1724249700,Ubuntu,5528,5327 +1724249700,Nvidia,171111,5772991 +1724249700,Microsoft CryptoAPI,2057,9805 +1724249700,Pocket,2313,5290 +1724249700,Rambler,3208,6610 +1724249700,ICMP,13289,3478 +1724249700,Weborama,3263,7713 +1724249700,Telegram,10607,31212 +1724249700,TikTok,17367,289248 +1724249700,Google Sign in,12106,8582 +1724249700,Google Inbox,6155,10750 +1724249700,Edge Chromium,2635,6823 +1724249700,Stripe,1898,6894 +1724249700,DNS over TLS,14111,54364 +1724249700,DNS over HTTPS,39373,126067 +1724250000,__unknown,268600,1300993 +1724250000,HTTPS,4098,5296 +1724250000,__unknown,10915389,25790999 +1724250000,ICMP,42148,0 +1724250000,__unknown,2559817,16878212 +1724250000,HTTPS,61250,31793 +1724250000,ICMP,518,518 +1724250000,Telegram,665,451 +1724250000,__unknown,920684,2039069 +1724250000,Google,5036,9872 +1724250000,HTTP,1526,833 +1724250000,HTTPS,15727,83571 +1724250000,Apple sites,1795,9469 +1724250000,SSL client,6831,19341 +1724250000,ICMP,4612,4070 +1724250000,__unknown,3922198,45560781 +1724250000,BitTorrent,496,496 +1724250000,Google APIs,84045,91368 +1724250000,Google Drive,10988,23898 +1724250000,Google,194471,817308 +1724250000,Android browser,782,526 +1724250000,DNS,41939,0 +1724250000,Firefox,12873,14853 +1724250000,Gmail,5596,10472 +1724250000,Google Analytics,1252,6333 +1724250000,HTTP,74889,1624951 +1724250000,NTP,630,630 +1724250000,SSL,11738,11521 +1724250000,STUN,3314,2874 +1724250000,HTTPS,654519,4685606 +1724250000,APNS,9750,5555 +1724250000,Mozilla,1988,4556 +1724250000,SSL client,450566,3669671 +1724250000,Acrobat.com,8389,20011 +1724250000,Weather.com,1553,5816 +1724250000,CloudFront,3304,11391 +1724250000,Yandex,2343,9573 +1724250000,Microsoft CryptoAPI,874,1016 +1724250000,CloudFlare,4133,142013 +1724250000,ICMP,25026,9842 +1724250000,TikTok,112428,2509624 +1724250000,Google Sign in,11108,12279 +1724250000,DNS over HTTPS,13637,40977 +1724250000,__unknown,6282160,18427597 +1724250000,Apple Update,1985,4809 +1724250000,Bing,9418,633994 +1724250000,BitTorrent,645,515 +1724250000,DHCPv6,978,0 +1724250000,Eset,1032,4240 +1724250000,Google APIs,14124,39550 +1724250000,Google,70266,179531 +1724250000,MSN,578,502 +1724250000,QQ,678,343 +1724250000,Yahoo!,21478,44473 +1724250000,Android browser,740,769 +1724250000,BitTorrent tracker,459,515 +1724250000,DNS,163679,114709 +1724250000,Firefox,1479,1602 +1724250000,Gmail,165541,103097 +1724250000,HTTP,119091,119437 +1724250000,Internet Explorer,678,343 +1724250000,Launchpad,3134,2190 +1724250000,Microsoft Update,4195,4115 +1724250000,NTP,1260,1260 +1724250000,Reddit,4962,26900 +1724250000,SSL,113774,263285 +1724250000,STUN,2836,3096 +1724250000,VKontakte,16688,60483 +1724250000,Advanced Packaging Tool,29526,26790 +1724250000,HTTPS,1216762,8630020 +1724250000,Apple sites,7926,58049 +1724250000,iCloud,115619,266315 +1724250000,Mozilla,10054,16840 +1724250000,Avast,382,391 +1724250000,SSL client,645462,6106961 +1724250000,Taobao,740,769 +1724250000,Ubuntu Update Manager,21013,19758 +1724250000,Microsoft,5013,21865 +1724250000,Mail.Ru,9798,15178 +1724250000,Yandex,88318,1830897 +1724250000,Ubuntu,6229,5764 +1724250000,Nvidia,77039,2465907 +1724250000,Microsoft CryptoAPI,8335,9848 +1724250000,Microsoft NCSI,925,974 +1724250000,Microsoft WNS,1271,8470 +1724250000,Apple Maps,4677,15852 +1724250000,Rambler,630,4652 +1724250000,ICMP,20794,3626 +1724250000,Telegram,4784,8268 +1724250000,TikTok,14758,297992 +1724250000,Edge Chromium,1761,6024 +1724250000,Grammarly,1699,7404 +1724250000,DNS over TLS,6804,28823 +1724250000,DNS over HTTPS,92432,263243 +1724250300,__unknown,1247372,1095746 +1724250300,DNS over HTTPS,40524,84892 +1724250300,__unknown,4351,863 +1724250300,ICMP,3956,0 +1724250300,ICMP,1968,0 +1724250300,HTTPS,74774,36386 +1724250300,ICMP,1592,518 +1724250300,__unknown,272964,3814262 +1724250300,Google,12548,25967 +1724250300,Google Analytics,58790,57491 +1724250300,HTTPS,98366,205865 +1724250300,SSL client,82252,104273 +1724250300,ICMP,2072,1258 +1724250300,DNS over HTTPS,18471,40593 +1724250300,CoAP,1176,864 +1724250300,__unknown,4301718,10704575 +1724250300,Bing,1191,4610 +1724250300,BitTorrent,1207,248 +1724250300,DHCPv6,163,0 +1724250300,Google APIs,36401,50028 +1724250300,Google Drive,2820,1673 +1724250300,Google,137815,424406 +1724250300,Yahoo!,5127,6273 +1724250300,Android browser,455,333 +1724250300,BitTorrent tracker,153,0 +1724250300,DNS,52890,394 +1724250300,Firefox,4224,3782 +1724250300,Gmail,5711,7713 +1724250300,Google Analytics,10256,10200 +1724250300,Google Calendar,6066,5031 +1724250300,HTTP,9173,13563 +1724250300,NTP,450,450 +1724250300,SSL,31359,28995 +1724250300,STUN,34395,42609 +1724250300,VKontakte,2445,5194 +1724250300,HTTPS,806252,3327052 +1724250300,WhatsApp,9574,159422 +1724250300,Mozilla,9435,9623 +1724250300,SSL client,254716,555009 +1724250300,Yandex,5646,13665 +1724250300,Microsoft CryptoAPI,2772,6563 +1724250300,Google Play,29093,9301 +1724250300,ICMP,61243,19686 +1724250300,Weborama,3165,7625 +1724250300,Telegram,509,309 +1724250300,DNS over HTTPS,29228,69076 +1724250300,__unknown,7593734,21626161 +1724250300,Apple Update,1786,4171 +1724250300,Bing,1191,5234 +1724250300,BitTorrent,459,198 +1724250300,DHCPv6,978,0 +1724250300,Google APIs,58832,81551 +1724250300,Google,43635,273325 +1724250300,MSN,5570,12296 +1724250300,QQ,678,343 +1724250300,Yahoo!,59527,140155 +1724250300,Android browser,503,703 +1724250300,BitTorrent tracker,459,198 +1724250300,Chrome,565,484 +1724250300,DNS,168175,117748 +1724250300,Firefox,1481,1631 +1724250300,Gmail,10658,30522 +1724250300,HTTP,149076,473062 +1724250300,Internet Explorer,678,343 +1724250300,iTunes,5744,43161 +1724250300,Launchpad,2560,1918 +1724250300,Microsoft Update,4807,3926 +1724250300,NetBIOS-dgm,243,0 +1724250300,NTP,270,270 +1724250300,SSL,117471,2008038 +1724250300,STUN,666,306 +1724250300,VKontakte,49242,521426 +1724250300,Advanced Packaging Tool,37471,369322 +1724250300,IMAPS,10026,26056 +1724250300,HTTPS,1268648,11347932 +1724250300,Apple sites,2731,9735 +1724250300,iCloud,133921,117242 +1724250300,Mozilla,3600,5880 +1724250300,SSL client,628406,4332221 +1724250300,Taobao,503,703 +1724250300,Ubuntu Update Manager,30155,362962 +1724250300,Microsoft,2916,7717 +1724250300,VeriSign,566,2141 +1724250300,Mail.Ru,8646,15682 +1724250300,Yandex,73127,2358550 +1724250300,Ubuntu,7372,7200 +1724250300,Nvidia,138458,642244 +1724250300,Microsoft CryptoAPI,12010,25053 +1724250300,Apple Maps,2944,10230 +1724250300,Google Play,1394,11618 +1724250300,Rambler,6336,17397 +1724250300,Office 365,528,6543 +1724250300,ICMP,9389,2738 +1724250300,Firebase Crashlytics,2268,7013 +1724250300,Office Mobile,9114,6864 +1724250300,Telegram,2048,858 +1724250300,TikTok,1289,6804 +1724250300,Google Sign in,5813,4361 +1724250300,Edge Chromium,4109,14047 +1724250300,DNS over HTTPS,25026,89865 +1724250300,DeepL Translator,2185,7257 +1724250300,CoAP,784,576 +1724250600,__unknown,8650259,8613737 +1724250600,HTTP,84260,1337090 +1724250600,Telegram,482520,869636 +1724250600,__unknown,24784,13558 +1724250600,Google,40211,84204 +1724250600,HTTPS,40211,84204 +1724250600,SSL client,40211,84204 +1724250600,DNS over HTTPS,156,66 +1724250600,HTTPS,1446,4058 +1724250600,__unknown,36762,34919 +1724250600,HTTP,2003,3566 +1724250600,HTTPS,74598,52394 +1724250600,Apple sites,1528,7495 +1724250600,SSL client,1528,7495 +1724250600,ICMP,1184,888 +1724250600,Telegram,2003,3566 +1724250600,DNS over HTTPS,6144,13344 +1724250600,__unknown,1328301,7784159 +1724250600,Google,67053,42983 +1724250600,HTTP,1171,16611 +1724250600,VKontakte,4734,10087 +1724250600,HTTPS,350848,804603 +1724250600,SSL client,253975,366183 +1724250600,Yandex,146381,60263 +1724250600,ICMP,1702,2072 +1724250600,Telegram,1059,604 +1724250600,ResearchGate,35807,252850 +1724250600,DNS over HTTPS,4681,12163 +1724250600,__unknown,1646480,5161419 +1724250600,BitTorrent,496,496 +1724250600,DHCPv6,163,0 +1724250600,Google APIs,139673,118702 +1724250600,Google Drive,17434,41185 +1724250600,Google,91394,209660 +1724250600,Kaspersky,1156,1214 +1724250600,MSN,577,501 +1724250600,DNS,44156,0 +1724250600,HTTP,26673,37327 +1724250600,NetBIOS-dgm,250,0 +1724250600,NTP,720,720 +1724250600,SSL,2658,10692 +1724250600,STUN,960,518 +1724250600,VKontakte,33009,1832166 +1724250600,Odnoklassniki,2609,7499 +1724250600,HTTPS,962718,3554161 +1724250600,Apple sites,1559,7056 +1724250600,SSL client,679520,2552564 +1724250600,VeriSign,445,2081 +1724250600,Yandex,13181,143701 +1724250600,Nvidia,9980,61603 +1724250600,Microsoft CryptoAPI,15201,27311 +1724250600,Microsoft WNS,577,501 +1724250600,Google Play,348551,110936 +1724250600,ICMP,26984,11840 +1724250600,ICMP for IPv6,70,0 +1724250600,Google Sign in,4811,7885 +1724250600,DNS over HTTPS,43722,127204 +1724250600,Google Meet,14694,9696 +1724250600,_err_4655,2625,2475 +1724250600,__unknown,6269331,31112432 +1724250600,BITS,1710,14613 +1724250600,BitTorrent,459,317 +1724250600,Google APIs,13689,41448 +1724250600,Google,41371,111367 +1724250600,Kaspersky,514,541 +1724250600,MSN,1155,1003 +1724250600,QQ,738,343 +1724250600,Adobe Software,3454,6121 +1724250600,Android browser,684,600 +1724250600,Apple Mail,15511,41759 +1724250600,Apple Store,2568,9735 +1724250600,BitTorrent tracker,459,317 +1724250600,Chrome,1827,1526 +1724250600,DNS,73146,58395 +1724250600,Gmail,7102,4089 +1724250600,HTTP,215935,640523 +1724250600,Internet Explorer,738,343 +1724250600,Launchpad,1920,1488 +1724250600,Microsoft Update,4679,12333 +1724250600,NTP,1170,1170 +1724250600,SSL,11496,28790 +1724250600,STUN,1140,1044 +1724250600,YouTube,9811,20329 +1724250600,VKontakte,33720,66705 +1724250600,Steam,3728,53360 +1724250600,Advanced Packaging Tool,37022,438714 +1724250600,IMAPS,15511,41759 +1724250600,HTTPS,3925310,99930515 +1724250600,Apple sites,14315,41227 +1724250600,iCloud,122150,168892 +1724250600,Opera,5778,15159 +1724250600,SSL client,458418,958641 +1724250600,CloudFront,1029,6822 +1724250600,Ubuntu Update Manager,17142,16688 +1724250600,Microsoft,80843,43165 +1724250600,Mail.Ru,7755,12977 +1724250600,Yandex,72584,160002 +1724250600,Ubuntu,18517,420995 +1724250600,Nvidia,61021,123904 +1724250600,Microsoft CryptoAPI,7705,17738 +1724250600,Microsoft NCSI,985,974 +1724250600,Microsoft WNS,1155,1003 +1724250600,Apple Maps,5919,96849 +1724250600,Google Play,12772,35672 +1724250600,Rambler,5192,12890 +1724250600,Office 365,2778,16707 +1724250600,Bazaarvoice,9137,12757 +1724250600,Google Hangouts,2565,21096 +1724250600,ICMP,6914,3020 +1724250600,Office Mobile,8466,6830 +1724250600,Telegram,22694,28554 +1724250600,Edge Chromium,4270,12846 +1724250600,Grammarly,3795,14839 +1724250600,DNS over TLS,7116,28940 +1724250600,DNS over HTTPS,35416,104139 +1724250900,__unknown,484519,2918031 +1724250900,HTTPS,12367,16954 +1724250900,SSL client,12367,16954 +1724250900,DNS over HTTPS,12367,16954 +1724250900,__unknown,168,132 +1724250900,HTTPS,45439,20110 +1724250900,__unknown,186,228 +1724250900,SSL,3005,9190 +1724250900,HTTPS,3712,8828 +1724250900,Apple Maps,3712,8828 +1724250900,__unknown,33231,12752 +1724250900,Google,95033,65215 +1724250900,HTTP,6564,20982 +1724250900,SSL,3066,9355 +1724250900,HTTPS,95033,65215 +1724250900,SSL client,95033,65215 +1724250900,__unknown,1587222,28777550 +1724250900,Google,61720,39840 +1724250900,SSL,1446,1392 +1724250900,HTTPS,61720,39840 +1724250900,SSL client,61720,39840 +1724250900,ICMP,4706,0 +1724250900,__unknown,74908,229647 +1724250900,HTTPS,282250,468787 +1724250900,SSL client,251133,52001 +1724250900,Google Play,251133,52001 +1724250900,ICMP,22051,1036 +1724250900,Telegram,493,309 +1724250900,__unknown,3595099,53113005 +1724250900,BITS,9580,165070 +1724250900,BitTorrent,310,496 +1724250900,Google APIs,13458,36558 +1724250900,Google Drive,18708,13652 +1724250900,Google,61841,115929 +1724250900,Apple Mail,7325,17475 +1724250900,DNS,23557,0 +1724250900,Google Calendar,5987,4661 +1724250900,HTTP,14760,172481 +1724250900,Microsoft Update,646,506 +1724250900,NTP,540,540 +1724250900,SSL,3423,7447 +1724250900,STUN,2836,4196 +1724250900,YouTube,2269,15950 +1724250900,VKontakte,32979,49689 +1724250900,Odnoklassniki,2609,7439 +1724250900,IMAPS,7325,17475 +1724250900,HTTPS,818528,4912889 +1724250900,APNS,3423,7447 +1724250900,Apple sites,4585,15156 +1724250900,SSL client,336843,898825 +1724250900,Microsoft,9580,165070 +1724250900,Yandex,75798,338645 +1724250900,Nvidia,87418,232234 +1724250900,Microsoft CryptoAPI,2965,3243 +1724250900,Apple Maps,2123,5190 +1724250900,Google Play,18315,38979 +1724250900,ICMP,51898,10864 +1724250900,Telegram,3200,9330 +1724250900,DNS over HTTPS,16964,44482 +1724250900,__unknown,5108816,28740610 +1724250900,Apple Update,1793,4993 +1724250900,Bing,2382,10519 +1724250900,BitTorrent,306,0 +1724250900,DHCPv6,1141,0 +1724250900,Google APIs,106051,55202 +1724250900,Google Drive,11185,22699 +1724250900,Google,203616,2562280 +1724250900,QQ,1092,1924 +1724250900,Adobe Software,14478,110405 +1724250900,Android browser,750,666 +1724250900,BitTorrent tracker,306,0 +1724250900,Chrome,2838,4785 +1724250900,DNS,141054,118988 +1724250900,Gmail,57420,149699 +1724250900,Google Analytics,4242,29278 +1724250900,HTTP,119900,114289 +1724250900,Internet Explorer,678,343 +1724250900,Launchpad,3200,2414 +1724250900,Microsoft Update,2957,2879 +1724250900,NetBIOS-ns,92,0 +1724250900,NTP,900,900 +1724250900,SSL,3008,22034 +1724250900,STUN,27366,3702 +1724250900,VKontakte,3857,10033 +1724250900,Odnoklassniki,1942,6326 +1724250900,Advanced Packaging Tool,22860,21158 +1724250900,HTTPS,1662559,23166029 +1724250900,Apple sites,14339,30572 +1724250900,iCloud,10756,22987 +1724250900,Mozilla,1876,4611 +1724250900,Avast,382,391 +1724250900,SSL client,821804,4954681 +1724250900,Ubuntu Update Manager,17851,17046 +1724250900,Microsoft,1266,15936 +1724250900,VeriSign,1560,1886 +1724250900,Mail.Ru,1204,6591 +1724250900,Yandex,28324,104470 +1724250900,GitHub,226924,729303 +1724250900,Ubuntu,3641,3530 +1724250900,Nvidia,24412,55461 +1724250900,Microsoft CryptoAPI,6201,6894 +1724250900,Microsoft NCSI,454,479 +1724250900,Microsoft WNS,1266,15936 +1724250900,Apple Maps,853,3478 +1724250900,Google Play,8443,7076 +1724250900,Smart AdServer,8406,17143 +1724250900,Office 365,550,6613 +1724250900,Google Hangouts,3008,22034 +1724250900,ICMP,6503,4426 +1724250900,Telegram,25270,221545 +1724250900,TikTok,42412,921084 +1724250900,Sberbank of Russia,890,8388 +1724250900,Google Sign in,5819,4152 +1724250900,Google Inbox,23523,9222 +1724250900,Edge Chromium,4677,12281 +1724250900,Grammarly,1933,7470 +1724250900,DNS over TLS,6859,28439 +1724250900,DNS over HTTPS,46384,149084 +1724250900,_err_4655,3499,3104 +1724250900,Notion,853,4469 +1724251200,__unknown,2725421,6554774 +1724251200,HTTPS,23154,28212 +1724251200,SSL client,23154,28212 +1724251200,ICMP,8364,0 +1724251200,DNS over HTTPS,23154,28212 +1724251200,__unknown,175568,167150 +1724251200,Google,25546,32187 +1724251200,HTTPS,25546,32187 +1724251200,SSL client,25546,32187 +1724251200,Google,17893,27694 +1724251200,HTTPS,104518,63624 +1724251200,SSL client,17893,27694 +1724251200,SSL,1002,7853 +1724251200,HTTPS,64888,1045464 +1724251200,__unknown,364885,873236 +1724251200,HTTPS,23524,205266 +1724251200,SSL,22327,52115 +1724251200,HTTPS,3510,23523 +1724251200,ICMP,2522,740 +1724251200,CoAP,2744,2088 +1724251200,__unknown,4489063,3441310 +1724251200,Google,57677,51562 +1724251200,HTTP,4620,78136 +1724251200,VKontakte,45106,176924 +1724251200,HTTPS,159645,512706 +1724251200,SSL client,102783,228486 +1724251200,ICMP,10114,9670 +1724251200,__unknown,2425118,9302321 +1724251200,BitTorrent,310,496 +1724251200,Google APIs,109877,67892 +1724251200,Google,199280,1809303 +1724251200,Android browser,750,666 +1724251200,DNS,81027,336 +1724251200,Gmail,16241,14593 +1724251200,Google Calendar,7851,5774 +1724251200,HTTP,750,666 +1724251200,NetBIOS-dgm,250,0 +1724251200,NTP,12640,3900 +1724251200,SSL,611,3178 +1724251200,STUN,5676,5602 +1724251200,VKontakte,4146,13541 +1724251200,Odnoklassniki,2669,6931 +1724251200,HTTPS,614956,4141440 +1724251200,Apple sites,18171,26160 +1724251200,SSL client,465114,2765666 +1724251200,Microsoft,974,3665 +1724251200,Mail.Ru,3953,6140 +1724251200,Yandex,4608,56019 +1724251200,GitHub,7852,16007 +1724251200,Quantcast,2462,7231 +1724251200,Google Play,36601,630371 +1724251200,CloudFlare,2006,4713 +1724251200,Smart AdServer,5970,4375 +1724251200,Google Hangouts,611,3178 +1724251200,ICMP,48975,14526 +1724251200,Firebase Crashlytics,2487,6732 +1724251200,TikTok,9745,38269 +1724251200,Google Inbox,22601,32049 +1724251200,DNS over HTTPS,15661,38586 +1724251200,__unknown,2692304,8797349 +1724251200,Apple Update,2430,8100 +1724251200,Bing,2322,10434 +1724251200,BitTorrent,317,0 +1724251200,DHCPv6,815,0 +1724251200,Google APIs,18004,49762 +1724251200,Google,23522,84218 +1724251200,MSN,1131,4994 +1724251200,QQ,738,343 +1724251200,Adobe Software,3918,15810 +1724251200,Android browser,1500,1266 +1724251200,BitTorrent tracker,317,0 +1724251200,Chrome,565,484 +1724251200,DNS,84783,73263 +1724251200,Firefox,1218,3302 +1724251200,Gmail,36440,32920 +1724251200,HTTP,308740,35479328 +1724251200,Internet Explorer,1500,1003 +1724251200,Launchpad,2560,1984 +1724251200,Microsoft Update,642,508 +1724251200,NTP,13020,3180 +1724251200,SSL,1457,14064 +1724251200,STUN,1148,1036 +1724251200,YouTube,4511,14283 +1724251200,VKontakte,48543,523597 +1724251200,Odnoklassniki,2613,7516 +1724251200,Advanced Packaging Tool,153100,35044751 +1724251200,HTTPS,1071349,9400918 +1724251200,Apple sites,16435,26533 +1724251200,iCloud,13649,67448 +1724251200,Dictionary.com,3370,8651 +1724251200,Mozilla,2455,4990 +1724251200,SSL client,391373,5627159 +1724251200,GoDaddy,1218,3302 +1724251200,Ubuntu Update Manager,145161,35037706 +1724251200,Microsoft,29911,59021 +1724251200,Mail.Ru,7592,10812 +1724251200,Siri,6358,8909 +1724251200,Yandex,73282,4453115 +1724251200,GitHub,30961,72513 +1724251200,Gravatar,3143,14494 +1724251200,Amazon Ads System,1115,7004 +1724251200,Ubuntu,6307,5979 +1724251200,Microsoft CryptoAPI,4904,6677 +1724251200,Microsoft WNS,1326,15937 +1724251200,Rubicon Project,2593,5694 +1724251200,33Across,2499,7830 +1724251200,Google Play,19724,29588 +1724251200,AdGear,1270,7527 +1724251200,Smart AdServer,14686,20584 +1724251200,Rambler,5132,12890 +1724251200,Office 365,560,1142 +1724251200,Google Hangouts,855,7032 +1724251200,ICMP,12791,5550 +1724251200,Telegram,20076,148422 +1724251200,Edge Chromium,4737,12382 +1724251200,Grammarly,1627,7405 +1724251200,DNS over TLS,10906,55163 +1724251200,DNS over HTTPS,26039,97335 +1724251500,__unknown,1747357,3182005 +1724251500,HTTPS,43609,68851 +1724251500,SSL client,43609,68851 +1724251500,Telegram,43609,68851 +1724251500,__unknown,4440,4984 +1724251500,HTTPS,41304,94098 +1724251500,SSL client,41304,94098 +1724251500,DNS over HTTPS,41304,94098 +1724251500,ICMP,3268,0 +1724251500,__unknown,94702,48882 +1724251500,Google,10919,14449 +1724251500,HTTPS,10919,14449 +1724251500,SSL client,10919,14449 +1724251500,__unknown,47768,26632 +1724251500,HTTPS,3992,11138 +1724251500,SSL client,1344,4963 +1724251500,Box,1344,4963 +1724251500,Apple Maps,2648,6175 +1724251500,__unknown,281176,3936298 +1724251500,Google,41340,38519 +1724251500,HTTPS,342493,4035672 +1724251500,Apple sites,4169,13181 +1724251500,SSL client,45509,51700 +1724251500,Pocket,2877,2832 +1724251500,ICMP,5002,0 +1724251500,__unknown,3171469,13030025 +1724251500,BitTorrent,310,496 +1724251500,DHCPv6,163,0 +1724251500,Google APIs,155726,95770 +1724251500,Google Drive,17185,71471 +1724251500,Google,89823,244785 +1724251500,DNS,46240,0 +1724251500,Firefox,1737,4988 +1724251500,Gmail,8932,12106 +1724251500,HTTP,3816,7814 +1724251500,NTP,12032,3090 +1724251500,SSL,557,7032 +1724251500,STUN,3464,4488 +1724251500,YouTube,2157,6730 +1724251500,VKontakte,14514,793628 +1724251500,Odnoklassniki,2549,7484 +1724251500,HTTPS,601207,2463659 +1724251500,Mozilla,7364,12355 +1724251500,SSL client,361598,1479169 +1724251500,Pubmatic,5412,7055 +1724251500,CloudFront,2834,1841 +1724251500,AddThis,2226,7289 +1724251500,Yandex,8318,137312 +1724251500,GitHub,4996,7903 +1724251500,MDNS,364,0 +1724251500,Microsoft CryptoAPI,816,740 +1724251500,Google Play,11805,19955 +1724251500,Undertone,2993,11478 +1724251500,Lijit,4117,8702 +1724251500,Google Hangouts,557,7032 +1724251500,ICMP,26708,4560 +1724251500,Google Sign in,13450,9226 +1724251500,Google Inbox,4306,9891 +1724251500,Adobe Fonts,2334,7156 +1724251500,DNS over HTTPS,11872,28402 +1724251500,__unknown,3998481,82556930 +1724251500,Apple Update,3569,10421 +1724251500,BitTorrent,306,198 +1724251500,Google APIs,33659,70455 +1724251500,Google,49927,154136 +1724251500,QQ,678,343 +1724251500,Android browser,1605,990 +1724251500,BitTorrent tracker,306,198 +1724251500,Chrome,631,484 +1724251500,DNS,54955,50220 +1724251500,Firefox,5270,6176 +1724251500,Gmail,2085,8036 +1724251500,HTTP,109882,102542 +1724251500,Internet Explorer,678,343 +1724251500,Launchpad,3200,2190 +1724251500,LiveJournal,43818,227875 +1724251500,Microsoft Update,3824,3291 +1724251500,NTP,13560,3900 +1724251500,SSL,2818,22097 +1724251500,STUN,1148,1036 +1724251500,YouTube,1902,6418 +1724251500,VKontakte,7997,20030 +1724251500,Advanced Packaging Tool,36898,33134 +1724251500,HTTPS,1098703,6190631 +1724251500,Apple sites,18519,673822 +1724251500,iCloud,28787,66760 +1724251500,Avast,382,391 +1724251500,SSL client,374043,2903668 +1724251500,Amazon Web Services,21807,485867 +1724251500,Apple Stocks,3054,7829 +1724251500,Ubuntu Update Manager,27604,25685 +1724251500,Microsoft,573,7967 +1724251500,Mail.Ru,12704,27695 +1724251500,Yandex,48440,913214 +1724251500,GitHub,4806,6426 +1724251500,Gravatar,1906,8321 +1724251500,Ubuntu,6733,6195 +1724251500,Nvidia,1625,5957 +1724251500,Microsoft CryptoAPI,8041,6953 +1724251500,Microsoft NCSI,991,1100 +1724251500,Microsoft WNS,1100,8721 +1724251500,Rubicon Project,1257,5357 +1724251500,Google Play,21532,34505 +1724251500,Smart AdServer,34208,50395 +1724251500,Rambler,5132,12891 +1724251500,Exchange Online,1510,8552 +1724251500,Google Hangouts,2818,22097 +1724251500,ICMP,39812,0 +1724251500,Weborama,2446,6538 +1724251500,Office Mobile,527,754 +1724251500,Telegram,23803,67986 +1724251500,Google Sign in,6233,4144 +1724251500,Edge Chromium,4109,14055 +1724251500,Grammarly,1921,7369 +1724251500,DNS over TLS,16713,71549 +1724251500,DNS over HTTPS,45277,142756 +1724251800,__unknown,1821094,4731642 +1724251800,ICMP,23106,18060 +1724251800,DNS over HTTPS,21750,48113 +1724251800,__unknown,215,225 +1724251800,HTTPS,34458,47187 +1724251800,__unknown,33968,10556 +1724251800,Gmail,52991,45747 +1724251800,HTTPS,52991,45747 +1724251800,SSL client,52991,45747 +1724251800,__unknown,67187,44334 +1724251800,HTTP,3075,4033 +1724251800,HTTPS,92690,211356 +1724251800,SSL client,51415,172340 +1724251800,GitHub,51415,172340 +1724251800,ICMP,6296,0 +1724251800,Telegram,3075,4033 +1724251800,__unknown,406208,188207 +1724251800,Google,10026,18651 +1724251800,SSL,13876,6790 +1724251800,VKontakte,12084,17504 +1724251800,HTTPS,82122,806713 +1724251800,APNS,13876,6790 +1724251800,SSL client,38194,45537 +1724251800,ICMP,23066,0 +1724251800,DNS over HTTPS,2208,2592 +1724251800,__unknown,1867817,4588169 +1724251800,BITS,3606,4600 +1724251800,BitTorrent,310,496 +1724251800,DHCPv6,978,0 +1724251800,Google APIs,9090,23896 +1724251800,Google Drive,6030,9970 +1724251800,Google,70434,230225 +1724251800,Chrome,1054,757 +1724251800,DNS,20402,0 +1724251800,Firefox,2420,5388 +1724251800,Gmail,8634,15611 +1724251800,Google Analytics,11089,10317 +1724251800,HTTP,9602,12935 +1724251800,Microsoft Update,1962,1727 +1724251800,NetBIOS-dgm,243,0 +1724251800,NTP,1350,1350 +1724251800,STUN,1398,888 +1724251800,YouTube,7870,5182 +1724251800,VKontakte,4881,10975 +1724251800,Odnoklassniki,2669,7501 +1724251800,HTTPS,990534,3960608 +1724251800,Mozilla,32487,18998 +1724251800,SSL client,260217,1936056 +1724251800,Ad Nexus,1204,3474 +1724251800,Yandex,37450,1496536 +1724251800,GitHub,11043,10759 +1724251800,Microsoft CryptoAPI,2522,2190 +1724251800,Google Play,43509,53677 +1724251800,ICMP,15283,2940 +1724251800,ICMP for IPv6,70,0 +1724251800,Weborama,3229,8709 +1724251800,Telegram,5995,58114 +1724251800,Google Sign in,5086,10618 +1724251800,Grammarly,4378,15431 +1724251800,DNS over HTTPS,21784,60496 +1724251800,__unknown,2757563,15175731 +1724251800,Apple Update,2382,5808 +1724251800,BitTorrent,306,515 +1724251800,DHCPv6,163,0 +1724251800,Google APIs,61777,125895 +1724251800,Google Drive,5075,10709 +1724251800,Google,125137,267852 +1724251800,MSN,578,502 +1724251800,QQ,678,343 +1724251800,Android browser,684,600 +1724251800,BitTorrent tracker,306,515 +1724251800,Chrome,37690,309824 +1724251800,DNS,90353,75897 +1724251800,Firefox,1496,2928 +1724251800,Gmail,6028,8328 +1724251800,Google Analytics,4507,12518 +1724251800,HTTP,293013,8574833 +1724251800,Internet Explorer,678,343 +1724251800,iTunes,6379,51451 +1724251800,Launchpad,2420,1984 +1724251800,LiveJournal,152325,2799011 +1724251800,Microsoft Update,4251,3334 +1724251800,NetBIOS-dgm,250,0 +1724251800,NTP,12570,2910 +1724251800,SSL,2889,11547 +1724251800,STUN,1644,1110 +1724251800,YouTube,3473,11333 +1724251800,VKontakte,34885,118196 +1724251800,Advanced Packaging Tool,110619,8142073 +1724251800,HTTPS,3177515,15747866 +1724251800,Apple sites,14435,46933 +1724251800,iCloud,977073,911621 +1724251800,Mozilla,5253,6795 +1724251800,Avast,382,391 +1724251800,SSL client,1773890,7400593 +1724251800,Ad Nexus,1204,3587 +1724251800,Ubuntu Update Manager,103407,8135753 +1724251800,Microsoft,65977,34697 +1724251800,VeriSign,566,2141 +1724251800,Mail.Ru,2291,5757 +1724251800,Yandex,189671,2705173 +1724251800,GitHub,29488,74411 +1724251800,Ubuntu,6698,6172 +1724251800,Microsoft CryptoAPI,16883,15838 +1724251800,Microsoft NCSI,1379,1461 +1724251800,Microsoft WNS,1271,8469 +1724251800,Apple Maps,14809,62728 +1724251800,33Across,9733,32564 +1724251800,BlueKai,1137,6503 +1724251800,Google Play,31534,24149 +1724251800,Smart AdServer,48056,67911 +1724251800,Rambler,15430,22394 +1724251800,Google Hangouts,2889,11547 +1724251800,ICMP,3547,0 +1724251800,Weborama,2706,6927 +1724251800,Telegram,10764,55456 +1724251800,Google Sign in,10556,12898 +1724251800,Zoom,4988,6369 +1724251800,Edge Chromium,3462,11402 +1724251800,Grammarly,1892,7536 +1724251800,DNS over TLS,9975,42927 +1724251800,DNS over HTTPS,51360,161054 +1724252100,__unknown,1109222,1526867 +1724252100,Bing,5202,5235 +1724252100,Dropbox,1769,1272 +1724252100,Eset,2062,1792 +1724252100,Google APIs,5302,8860 +1724252100,Google,48497,87321 +1724252100,MSN,3045,13026 +1724252100,QQ,15219,46334 +1724252100,DNS,1139,1419 +1724252100,HTTP,10689,8649 +1724252100,iTunes,4172,7825 +1724252100,Launchpad,508,496 +1724252100,Skype,3016,7106 +1724252100,SSL,256606,677422 +1724252100,YouTube,13145,4918 +1724252100,VKontakte,11846,22507 +1724252100,Advanced Packaging Tool,1722,1722 +1724252100,HTTPS,4377760,69012882 +1724252100,Apple sites,8349,16448 +1724252100,iCloud,1485224,84318 +1724252100,Avast,3141,12398 +1724252100,SSL client,2373429,2183260 +1724252100,Ad Nexus,4654,8121 +1724252100,Baidu,8158,22862 +1724252100,Ubuntu Update Manager,1214,1226 +1724252100,Microsoft,238303,579239 +1724252100,NIH,3008,17284 +1724252100,Mail.Ru,164742,188492 +1724252100,Yandex,212133,351110 +1724252100,GitHub,2964,5822 +1724252100,Ubuntu,293,140 +1724252100,Nvidia,91076,283576 +1724252100,Apple Maps,1950,7494 +1724252100,WeChat,3021,1877 +1724252100,Office 365,2061,13685 +1724252100,Microsoft Windows Live Services Authentication,14140,27327 +1724252100,smpnameres,46543,482323 +1724252100,ICMP,6724,0 +1724252100,Blizzard,2101,5959 +1724252100,Firebase Crashlytics,2591,6363 +1724252100,Telegram,10970,67316 +1724252100,TikTok,19571,355852 +1724252100,DNS over HTTPS,285740,634153 +1724252100,Google,34645,60749 +1724252100,HTTPS,34645,60749 +1724252100,SSL client,34645,60749 +1724252100,__unknown,24797,13622 +1724252100,Google,9197,19365 +1724252100,HTTPS,291869,590227 +1724252100,SSL client,9197,19365 +1724252100,HTTPS,98242,35554 +1724252100,__unknown,6962403,114672786 +1724252100,__unknown,10842,66 +1724252100,Odnoklassniki,5614,7757 +1724252100,HTTPS,194065,870478 +1724252100,SSL client,153337,55200 +1724252100,Google Play,147723,47443 +1724252100,ICMP,10920,0 +1724252100,__unknown,245817,5198114 +1724252100,HTTP,2021,1356 +1724252100,HTTPS,171104,33585 +1724252100,Telegram,2921,946 +1724252100,__unknown,732083,43307193 +1724252100,Google,3941697,1649667 +1724252100,Gmail,16150,11239 +1724252100,SSL,21278,6079 +1724252100,HTTPS,4222770,1945657 +1724252100,APNS,21278,6079 +1724252100,Apple sites,1561,8879 +1724252100,SSL client,4055799,1715857 +1724252100,Nvidia,23213,11903 +1724252100,Google Play,41858,13524 +1724252100,ICMP,2008,1620 +1724252100,Telegram,987,596 +1724252100,DNS over HTTPS,10042,14566 +1724252100,__unknown,2291983,10258331 +1724252100,BitTorrent,310,496 +1724252100,Google APIs,42203,66095 +1724252100,Google,91382,288072 +1724252100,Chrome,878,929 +1724252100,DNS,45390,0 +1724252100,Google Calendar,20300,15660 +1724252100,HTTP,6945,122102 +1724252100,LiveJournal,10249,10759 +1724252100,NTP,1800,1800 +1724252100,SSL,31679,7034 +1724252100,STUN,3672,3858 +1724252100,YouTube,6116,16907 +1724252100,VKontakte,3313,8500 +1724252100,HTTPS,644860,6179919 +1724252100,APNS,31679,7034 +1724252100,Mozilla,2570,4873 +1724252100,SSL client,233656,507327 +1724252100,CloudFront,2164,8070 +1724252100,Microsoft,2780,7574 +1724252100,Yandex,1251,6151 +1724252100,Google Play,11547,36549 +1724252100,Rambler,5812,23196 +1724252100,Samsung Push Notification,2566,8446 +1724252100,ICMP,33275,7776 +1724252100,Telegram,2440,1368 +1724252100,Grammarly,2290,7887 +1724252100,DNS over HTTPS,13928,43351 +1724252100,__unknown,3038409,23909615 +1724252100,BitTorrent,306,0 +1724252100,DHCPv6,978,0 +1724252100,Google APIs,23968,68965 +1724252100,Google,50483,682452 +1724252100,Google Translate,6062,6603 +1724252100,MSN,577,501 +1724252100,Android browser,684,600 +1724252100,BitTorrent tracker,306,0 +1724252100,Chrome,2556,4192 +1724252100,DNS,55000,50493 +1724252100,Firefox,1463,1602 +1724252100,Gmail,6325,9754 +1724252100,Google Analytics,2542,11351 +1724252100,Google Calendar,5986,4547 +1724252100,HTTP,139699,125740 +1724252100,Internet Explorer,762,660 +1724252100,iTunes,19069,297379 +1724252100,Launchpad,3200,2480 +1724252100,LiveJournal,16289,34136 +1724252100,Microsoft Update,3280,2910 +1724252100,NTP,1440,1440 +1724252100,SSL,3221,10530 +1724252100,STUN,1806,740 +1724252100,YouTube,9305,32293 +1724252100,VKontakte,10643,19499 +1724252100,Odnoklassniki,2042,6711 +1724252100,Advanced Packaging Tool,25261,23129 +1724252100,HTTPS,1389863,6973822 +1724252100,Pinterest,2338,24089 +1724252100,Apple sites,9416,49095 +1724252100,iCloud,44765,186752 +1724252100,Mozilla,2083,4892 +1724252100,Avast,382,391 +1724252100,SSL client,410884,3407248 +1724252100,Ad Nexus,1144,3587 +1724252100,Amazon Web Services,27440,647819 +1724252100,Ubuntu Update Manager,20362,19053 +1724252100,Microsoft,5082,16959 +1724252100,VeriSign,566,2141 +1724252100,Mail.Ru,9679,24021 +1724252100,Yandex,46913,312381 +1724252100,Ubuntu,3465,3436 +1724252100,Microsoft CryptoAPI,9830,17211 +1724252100,Microsoft NCSI,411,487 +1724252100,Microsoft WNS,577,501 +1724252100,Google Play,22350,35605 +1724252100,CloudFlare,12301,33328 +1724252100,Smart AdServer,15131,21592 +1724252100,Rambler,5132,12859 +1724252100,Office 365,2119,3242 +1724252100,ICMP,21636,4490 +1724252100,Weborama,2052,5683 +1724252100,Telegram,9322,15797 +1724252100,AnyDesk,574,1415 +1724252100,TikTok,34797,829411 +1724252100,Google Sign in,5886,4124 +1724252100,Edge Chromium,527,1364 +1724252100,Grammarly,1175,6904 +1724252100,DNS over TLS,4448,19081 +1724252100,DNS over HTTPS,57762,187769 +1724252100,_err_4655,2196,1833 +1724252100,DeepL Translator,3993,13072 +1724252400,__unknown,972601,652056 +1724252400,Bing,7897,10360 +1724252400,Dropbox,15876,23979 +1724252400,Google APIs,23374,48811 +1724252400,Google,19605,36406 +1724252400,MSN,7931,33136 +1724252400,HTTP,4626,18708 +1724252400,Skype,2973,9882 +1724252400,SSL,7350,16919 +1724252400,VKontakte,47983,116647 +1724252400,Advanced Packaging Tool,1214,1166 +1724252400,HTTPS,2676405,39112654 +1724252400,WhatsApp,1225,1216 +1724252400,Apple sites,3963,17922 +1724252400,iCloud,2335,11347 +1724252400,Mozilla,19226,39126 +1724252400,SSL client,651702,907680 +1724252400,Ubuntu Update Manager,1214,1166 +1724252400,Microsoft,11395,38375 +1724252400,VeriSign,506,2141 +1724252400,Mail.Ru,61601,46622 +1724252400,Siri,2549,7240 +1724252400,Yandex,236337,247539 +1724252400,Nvidia,184869,220874 +1724252400,Microsoft CryptoAPI,506,2141 +1724252400,Rambler,3180,6318 +1724252400,TikTok,1763,2054 +1724252400,Xiaomi,1751,6443 +1724252400,DNS over HTTPS,995,12660 +1724252400,__unknown,1899593,35432054 +1724252400,Bing,9165,28644 +1724252400,Dropbox,58920,9594 +1724252400,Google APIs,7556,28710 +1724252400,Google,58840,147172 +1724252400,MSN,2511,13801 +1724252400,QQ,22523,55770 +1724252400,Yahoo!,12076,8801 +1724252400,Chrome,4425,1544 +1724252400,Dell,1051,4366 +1724252400,Gmail,10256,10803 +1724252400,HTTP,15407,28970 +1724252400,iTunes,5876,21472 +1724252400,Skype,18093,32172 +1724252400,SSL,255035,651183 +1724252400,VKontakte,45280,87349 +1724252400,Steam,975,5680 +1724252400,IMAPS,18791,39788 +1724252400,HTTPS,10187716,68939765 +1724252400,WhatsApp,6940,20049 +1724252400,Apple sites,32910,273929 +1724252400,iCloud,134240,299929 +1724252400,Mozilla,4514,11034 +1724252400,Opera,3277,8633 +1724252400,SSL client,7481813,24809783 +1724252400,Microsoft,244355,450964 +1724252400,Mail.Ru,546377,934233 +1724252400,Yandex,5692569,15529151 +1724252400,Nvidia,288762,768946 +1724252400,Microsoft CryptoAPI,1857,14321 +1724252400,Microsoft NCSI,417,252 +1724252400,Apple Maps,3717,9073 +1724252400,Scorecard Research,2528,7290 +1724252400,Google Play,71721,11243 +1724252400,Rambler,3054,5342 +1724252400,Office 365,24977,112888 +1724252400,Sharepoint Online,3058,94231 +1724252400,Google Hangouts,1547,1392 +1724252400,Weborama,4819,8112 +1724252400,Office Mobile,9048,8216 +1724252400,Telegram,5905,31498 +1724252400,TikTok,159016,5829588 +1724252400,GISMETEO,2134,9180 +1724252400,Edge Chromium,467,1305 +1724252400,Stripe,4037,5461 +1724252400,DNS over HTTPS,13503,37562 +1724252400,HTTPS,256037,4654032 +1724252400,__unknown,84,60 +1724252400,__unknown,9690,8084 +1724252400,HTTPS,2598,6826 +1724252400,SSL client,2598,6826 +1724252400,Microsoft,2598,6826 +1724252400,__unknown,9444,66 +1724252400,HTTPS,38541,29952 +1724252400,__unknown,75546,1542304 +1724252400,SSL,2875,9190 +1724252400,HTTPS,5675,9920 +1724252400,SSL client,5675,9920 +1724252400,SiteScout,5675,9920 +1724252400,__unknown,544854,29773427 +1724252400,iTunes,2321,37363 +1724252400,HTTPS,14557,111909 +1724252400,SSL client,2321,37363 +1724252400,Apple Maps,2714,7086 +1724252400,ICMP,2794,0 +1724252400,__unknown,650502,453438 +1724252400,Google APIs,8925,88147 +1724252400,Google,94991,570075 +1724252400,Adobe Software,2840,8604 +1724252400,SSL,16927,12005 +1724252400,HTTPS,220071,2112985 +1724252400,APNS,16927,12005 +1724252400,SSL client,125466,681189 +1724252400,Rambler,1783,2358 +1724252400,ICMP,4494,3628 +1724252400,Telegram,1065,120 +1724252400,__unknown,2506890,12211797 +1724252400,BitTorrent,310,496 +1724252400,DHCPv6,163,0 +1724252400,Google APIs,15908,58512 +1724252400,Google Drive,9192,9943 +1724252400,Google,212081,747944 +1724252400,McAfee,3604,18208 +1724252400,Android browser,816,666 +1724252400,DNS,22747,0 +1724252400,Gmail,24120,64258 +1724252400,HTTP,4522,30770 +1724252400,NTP,13380,3720 +1724252400,SSL,26487,6253 +1724252400,STUN,1382,904 +1724252400,YouTube,4212,11023 +1724252400,VKontakte,9285,19366 +1724252400,Odnoklassniki,5461,19223 +1724252400,HTTPS,1137388,8716972 +1724252400,APNS,26487,6253 +1724252400,Apple sites,53143,11825 +1724252400,Mozilla,2369,4784 +1724252400,SSL client,602931,6791736 +1724252400,Yandex,8373,213380 +1724252400,Pocket,2764,6233 +1724252400,Google Play,92737,68030 +1724252400,ICMP,48863,12218 +1724252400,ICMP for IPv6,70,0 +1724252400,Telegram,1339,1337 +1724252400,TikTok,122307,5522701 +1724252400,Grammarly,5146,9573 +1724252400,DNS over HTTPS,27856,85048 +1724252400,Google Meet,8506,6713 +1724252400,__unknown,2194099,13031177 +1724252400,BitTorrent,769,515 +1724252400,Eset,1032,4240 +1724252400,Google APIs,10715,17452 +1724252400,Google,53752,134758 +1724252400,Kaspersky,517,1445 +1724252400,MSN,577,501 +1724252400,Adobe Software,20744,6977 +1724252400,Android browser,1272,933 +1724252400,Apple Mail,28927,348062 +1724252400,BitTorrent tracker,459,515 +1724252400,Chrome,1660,1831 +1724252400,DNS,57459,49114 +1724252400,Gmail,15743,19461 +1724252400,Google Analytics,1276,6384 +1724252400,HTTP,128782,176636 +1724252400,iTunes,2439,13131 +1724252400,Launchpad,2560,1984 +1724252400,Microsoft Update,4159,3806 +1724252400,NetBIOS-dgm,243,0 +1724252400,NTP,13830,4080 +1724252400,SSL,1472,14124 +1724252400,STUN,1148,1036 +1724252400,VKontakte,43426,45936 +1724252400,Odnoklassniki,2054,7150 +1724252400,Steam,1177,28732 +1724252400,Advanced Packaging Tool,25506,23318 +1724252400,IMAPS,28927,348062 +1724252400,HTTPS,881487,3821705 +1724252400,WhatsApp,3894,15975 +1724252400,Apple sites,3575,25025 +1724252400,iCloud,14940,22442 +1724252400,Avast,382,391 +1724252400,SSL client,293592,886687 +1724252400,Ubuntu Update Manager,19268,18004 +1724252400,Microsoft,2854,7843 +1724252400,VeriSign,566,2141 +1724252400,Mail.Ru,17769,39366 +1724252400,Yandex,36102,78080 +1724252400,Ubuntu,4528,4248 +1724252400,Microsoft CryptoAPI,5919,7687 +1724252400,Microsoft NCSI,882,974 +1724252400,Microsoft WNS,577,501 +1724252400,Google Play,6829,10743 +1724252400,Rambler,5863,14469 +1724252400,WeChat,7414,33104 +1724252400,Google Hangouts,1472,14124 +1724252400,ICMP,6835,4514 +1724252400,Tencent Video,1510,4624 +1724252400,Telegram,24809,14280 +1724252400,Google Sign in,5900,5374 +1724252400,Edge Chromium,4803,12919 +1724252400,Grammarly,1833,7471 +1724252400,DNS over TLS,9226,38161 +1724252400,DNS over HTTPS,35902,112235 +1724252400,DeepL Translator,2955,8597 +1724252700,__unknown,633310,869052 +1724252700,HTTPS,1542671,63232609 +1724252700,SSL client,1091023,63043814 +1724252700,Nvidia,1089557,63037737 +1724252700,Google Play,1466,6077 +1724252700,__unknown,1032333,3372392 +1724252700,Google APIs,8921,36934 +1724252700,Google,1619712,1570173 +1724252700,HTTP,1107,2336 +1724252700,SSL,109606,189075 +1724252700,VKontakte,22371,27324 +1724252700,HTTPS,5097831,73452653 +1724252700,iCloud,8813,19839 +1724252700,Avast,1062,8551 +1724252700,SSL client,3522624,62242957 +1724252700,Microsoft,10875,22373 +1724252700,Mail.Ru,40383,83111 +1724252700,Yandex,777713,206270 +1724252700,Nvidia,844421,55063746 +1724252700,Microsoft CryptoAPI,1107,2336 +1724252700,Google Play,4107,19040 +1724252700,TikTok,179941,5177344 +1724252700,Google Sign in,4305,8252 +1724252700,DNS over HTTPS,24703,57952 +1724252700,__unknown,1468645,4600802 +1724252700,Bing,10074,27119 +1724252700,Dropbox,9525,7665 +1724252700,Google APIs,24440,68435 +1724252700,Google,339506,289527 +1724252700,Google Translate,4998,10502 +1724252700,MSN,5481,22242 +1724252700,Windows Live,9333,10164 +1724252700,Dell,1051,4309 +1724252700,Gmail,2981,3057 +1724252700,HTTP,13108,16248 +1724252700,iTunes,7796,171637 +1724252700,Launchpad,574,430 +1724252700,Skype,8109,96088 +1724252700,SSL,441539,2613430 +1724252700,YouTube,6919,5378 +1724252700,TeamViewer,1524,8893 +1724252700,VKontakte,13777,28282 +1724252700,Advanced Packaging Tool,3358,2915 +1724252700,IMAPS,18426,59512 +1724252700,HTTPS,12229114,49283330 +1724252700,Apple sites,126352,80457 +1724252700,iCloud,11682,28942 +1724252700,Avast,1944,4342 +1724252700,SSL client,10428130,27099600 +1724252700,Amazon Web Services,3019,17191 +1724252700,Ubuntu Update Manager,2784,2485 +1724252700,Microsoft,253014,483146 +1724252700,Mail.Ru,738120,1200243 +1724252700,Yandex,7854152,8982490 +1724252700,GitHub,11049,634370 +1724252700,Gravatar,1839,14855 +1724252700,Intel,1140,4769 +1724252700,Nvidia,543006,5258817 +1724252700,Microsoft CryptoAPI,745,2792 +1724252700,Microsoft NCSI,514,421 +1724252700,Apple Maps,7019,23006 +1724252700,Rambler,6228,10707 +1724252700,Office 365,19153,57332 +1724252700,Sharepoint Online,3232,94231 +1724252700,Microsoft Windows Live Services Authentication,56803,149220 +1724252700,Weborama,3275,5424 +1724252700,Office Mobile,22631,18425 +1724252700,Mail.ru Attachment,119456,3988410 +1724252700,Telegram,18600,99674 +1724252700,TikTok,205438,5308118 +1724252700,Edge Chromium,1988,4918 +1724252700,Grammarly,2077,7003 +1724252700,DNS over HTTPS,17057,79203 +1724252700,DNS over HTTPS,1007,5320 +1724252700,HTTPS,81459,38692 +1724252700,__unknown,9348,66 +1724252700,VKontakte,11994,20024 +1724252700,HTTPS,13440,24082 +1724252700,SSL client,11994,20024 +1724252700,__unknown,10748,1386 +1724252700,HTTPS,17575,22931 +1724252700,SCO Web Server Manager 3,9652678,10274570 +1724252700,__unknown,20254,132 +1724252700,HTTPS,18917,20774 +1724252700,ICMP,2752,0 +1724252700,__unknown,11404,534 +1724252700,HTTPS,98089,337685 +1724252700,SSL client,10721,39475 +1724252700,GitHub,10721,39475 +1724252700,__unknown,65431,2241 +1724252700,HTTP,1606,13933 +1724252700,HTTPS,1776669,389404 +1724252700,SSL client,384597,96588 +1724252700,Google Play,384597,96588 +1724252700,ICMP,15910,0 +1724252700,__unknown,48708,150732 +1724252700,Google,4803,8468 +1724252700,HTTP,1911,4450 +1724252700,HTTPS,89058,390285 +1724252700,SSL client,30567,31256 +1724252700,Google Play,23217,10960 +1724252700,CloudFlare,2547,11828 +1724252700,ICMP,30952,1602 +1724252700,__unknown,2603415,13471387 +1724252700,BitTorrent,992,496 +1724252700,DHCPv6,978,0 +1724252700,Google APIs,53364,119719 +1724252700,Google Drive,3399,8907 +1724252700,Google,721731,602910 +1724252700,Android browser,456,333 +1724252700,DNS,20392,0 +1724252700,Gmail,5863,9916 +1724252700,Google Analytics,8115,8705 +1724252700,HTTP,3939,6309 +1724252700,iTunes,5040,19710 +1724252700,Microsoft Update,641,186 +1724252700,NetBIOS-dgm,250,0 +1724252700,NTP,26130,6630 +1724252700,SSL,16699,21552 +1724252700,STUN,5998,5670 +1724252700,VKontakte,16153,12271 +1724252700,Odnoklassniki,1466,6063 +1724252700,HTTPS,1341772,16012905 +1724252700,WhatsApp,1842,7920 +1724252700,APNS,15115,13523 +1724252700,Apple sites,3946,8293 +1724252700,SSL client,994216,13306779 +1724252700,Microsoft,528,6770 +1724252700,Mail.Ru,1144,5371 +1724252700,Yandex,124676,12416499 +1724252700,Microsoft CryptoAPI,1939,4475 +1724252700,Rubicon Project,2678,6116 +1724252700,Google Play,22424,39324 +1724252700,Google Hangouts,1584,8029 +1724252700,ICMP,26720,17082 +1724252700,ICMP for IPv6,70,0 +1724252700,QUIC,115808,2912547 +1724252700,Telegram,3044,8146 +1724252700,Zoom,7869,12283 +1724252700,Grammarly,2941,1827 +1724252700,DNS over HTTPS,18896,57606 +1724252700,DeepL Translator,2377,8211 +1724252700,__unknown,6313988,9561150 +1724252700,BitTorrent,306,198 +1724252700,DHCPv6,163,0 +1724252700,Eset,507,553 +1724252700,Google APIs,18411,56255 +1724252700,Google Drive,1499,8220 +1724252700,Google,31649,75033 +1724252700,QQ,1023,2523 +1724252700,Android browser,503,703 +1724252700,Apple Mail,6348,17835 +1724252700,BitTorrent tracker,306,198 +1724252700,Chrome,565,484 +1724252700,DNS,62200,56331 +1724252700,Gmail,8630,15462 +1724252700,HTTP,196144,181195 +1724252700,Launchpad,3422,2480 +1724252700,Microsoft Update,641,507 +1724252700,NTP,8215,9315 +1724252700,STUN,1148,1036 +1724252700,VKontakte,2572,6996 +1724252700,Advanced Packaging Tool,31248,27012 +1724252700,IMAPS,6348,17835 +1724252700,HTTPS,787042,4203460 +1724252700,Apple sites,10382,140522 +1724252700,iCloud,35598,79634 +1724252700,SSL client,297600,2737788 +1724252700,Taobao,503,703 +1724252700,Ubuntu Update Manager,23353,21137 +1724252700,Microsoft,51591,30811 +1724252700,VeriSign,566,2141 +1724252700,Mail.Ru,9371,30739 +1724252700,Yandex,87539,2108441 +1724252700,GitHub,41213,82385 +1724252700,Ubuntu,7089,6145 +1724252700,Nvidia,5325,9628 +1724252700,Microsoft CryptoAPI,12039,23849 +1724252700,Microsoft NCSI,1051,1040 +1724252700,Microsoft WNS,513,7967 +1724252700,33Across,2486,8118 +1724252700,Google Play,9827,11560 +1724252700,AdGear,1204,8119 +1724252700,Garmin,2189,5809 +1724252700,SiteScout,1121,5578 +1724252700,Microsoft Windows Live Services Authentication,1522,22925 +1724252700,ICMP,9628,2858 +1724252700,Telegram,11156,29498 +1724252700,Google Sign in,12110,8902 +1724252700,Edge Chromium,7145,20416 +1724252700,DNS over TLS,8974,38262 +1724252700,DNS over HTTPS,32643,126636 +1724253000,__unknown,3231131,1654810 +1724253000,Dropbox,20677,6533 +1724253000,SSL,4164,7865 +1724253000,HTTPS,161781,67356 +1724253000,SSL client,20677,6533 +1724253000,Telegram,1659811,1212160 +1724253000,DNS over HTTPS,142671,319373 +1724253000,__unknown,14398,13178 +1724253000,HTTPS,169713,124062 +1724253000,SSL client,141911,63231 +1724253000,Google Play,141911,63231 +1724253000,__unknown,2282284,1468766 +1724253000,Bing,6907,39481 +1724253000,Dropbox,1631,1475 +1724253000,Google APIs,19815,179837 +1724253000,Google Drive,16852,8943 +1724253000,Google,15348,45526 +1724253000,MSN,1398,7515 +1724253000,Wikipedia,10726,181676 +1724253000,Gmail,10901,36332 +1724253000,HTTP,1537,1459 +1724253000,YouTube,296563,7848750 +1724253000,TeamViewer,1417,8898 +1724253000,VKontakte,34459,40041 +1724253000,HTTPS,1647947,12949968 +1724253000,Apple sites,1527,7575 +1724253000,Mozilla,4810,6944 +1724253000,Avast,2348,17059 +1724253000,SSL client,895913,9420772 +1724253000,Microsoft,46226,76962 +1724253000,Mail.Ru,50845,92088 +1724253000,Siri,2380,7272 +1724253000,Yandex,78379,80691 +1724253000,Splunk,14487,9912 +1724253000,Intel,1146,4741 +1724253000,Nvidia,240521,580583 +1724253000,Microsoft CryptoAPI,1537,1459 +1724253000,Office 365,19680,18101 +1724253000,Sharepoint Online,3136,89689 +1724253000,Xiaomi,2774,4654 +1724253000,Azure cloud portal,3446,8889 +1724253000,Grammarly,1876,7003 +1724253000,Stripe,4247,5358 +1724253000,DNS over HTTPS,21188,57089 +1724253000,__unknown,841920,2834833 +1724253000,Bing,10512,59117 +1724253000,Dropbox,3554,12000 +1724253000,Google APIs,23378,68964 +1724253000,Google,3039889,1487877 +1724253000,MSN,7292,41613 +1724253000,QQ,32932,55271 +1724253000,DNS,396,1061 +1724253000,Gmail,22930,97604 +1724253000,Google Analytics,1852,1709 +1724253000,HTTP,10410,8158 +1724253000,Launchpad,574,422 +1724253000,Skype,3273,7920 +1724253000,SSL,34834,106016 +1724253000,YouTube,185540,1529864 +1724253000,VKontakte,4224,9594 +1724253000,Advanced Packaging Tool,3821,3870 +1724253000,IMAPS,29371,123133 +1724253000,HTTPS,6522843,108812163 +1724253000,WhatsApp,1285,1156 +1724253000,Apple sites,13915,44158 +1724253000,iCloud,19793,66324 +1724253000,Mozilla,5406,4862 +1724253000,SSL client,5837845,106379738 +1724253000,Amazon Web Services,3199,21490 +1724253000,Ubuntu Update Manager,2782,2918 +1724253000,Microsoft,461352,1023088 +1724253000,Mail.Ru,366077,535156 +1724253000,Yandex,940645,99595375 +1724253000,Ubuntu,465,530 +1724253000,Intel,1200,4769 +1724253000,Nvidia,464676,1354951 +1724253000,Microsoft NCSI,514,427 +1724253000,Apple Maps,2140,4726 +1724253000,Google Play,61475,80918 +1724253000,Exchange Online,3906,8332 +1724253000,Office 365,36049,57376 +1724253000,Sharepoint Online,986,5947 +1724253000,Microsoft Windows Live Services Authentication,73480,138057 +1724253000,Google Hangouts,1547,1392 +1724253000,Weborama,17295,29421 +1724253000,Office Mobile,27985,24016 +1724253000,Telegram,103598,342567 +1724253000,TikTok,830,623 +1724253000,Grammarly,1440,7663 +1724253000,DNS over HTTPS,33808,129634 +1724253000,__unknown,149379,155344 +1724253000,__unknown,957181,1009004 +1724253000,HTTPS,61199,96336 +1724253000,SSL client,61199,96336 +1724253000,GitHub,7264,26465 +1724253000,Telegram,53935,69871 +1724253000,__unknown,9412,66 +1724253000,HTTPS,64137,62394 +1724253000,SSL client,14659,35021 +1724253000,GitHub,8422,27381 +1724253000,DNS over HTTPS,6237,7640 +1724253000,__unknown,28172,198 +1724253000,HTTPS,2664886,292963 +1724253000,ICMP,20418,0 +1724253000,__unknown,49984,330 +1724253000,__unknown,137408,99172 +1724253000,Dropbox,56391,16308 +1724253000,HTTPS,56391,16308 +1724253000,SSL client,56391,16308 +1724253000,__unknown,519693,13246831 +1724253000,HTTP,18795,44827 +1724253000,HTTPS,656312,137437 +1724253000,SSL client,651331,127715 +1724253000,Samsung,772,1986 +1724253000,Google Play,651331,127715 +1724253000,ICMP,3478,3626 +1724253000,Telegram,18023,42841 +1724253000,__unknown,3458740,9768239 +1724253000,BITS,2440,5159 +1724253000,BitTorrent,3472,496 +1724253000,Google APIs,136450,50757 +1724253000,Google Drive,17668,12803 +1724253000,Google,80003,185519 +1724253000,Google Translate,145163,67097 +1724253000,Android browser,750,338 +1724253000,DNS,21857,0 +1724253000,Gmail,50390,102201 +1724253000,HTTP,8514,131586 +1724253000,Microsoft Update,1467,1275 +1724253000,NTP,13560,3810 +1724253000,STUN,984,888 +1724253000,VKontakte,2650,5912 +1724253000,HTTPS,700431,1157687 +1724253000,Apple sites,3436,37610 +1724253000,Mozilla,1607,4551 +1724253000,SSL client,494022,586235 +1724253000,Microsoft,982,7532 +1724253000,Mail.Ru,1360,5013 +1724253000,Yandex,21553,40024 +1724253000,GitHub,8659,12821 +1724253000,Nvidia,4611,15795 +1724253000,Microsoft CryptoAPI,2784,2306 +1724253000,Google Play,15436,24795 +1724253000,Rambler,1862,5934 +1724253000,ICMP,33994,11932 +1724253000,Telegram,493,309 +1724253000,Zoom,3347,7737 +1724253000,Grammarly,2192,7871 +1724253000,DNS over HTTPS,9662,31349 +1724253000,__unknown,3519458,23147253 +1724253000,BitTorrent,459,515 +1724253000,DHCPv6,978,0 +1724253000,Google APIs,19124,49778 +1724253000,Google Drive,9520,11147 +1724253000,Google,15072,26533 +1724253000,BitTorrent tracker,459,515 +1724253000,Chrome,631,484 +1724253000,DNS,51717,45866 +1724253000,Firefox,7612,25124 +1724253000,Gmail,6885,8263 +1724253000,HTTP,152136,159202 +1724253000,Internet Explorer,5557,1278 +1724253000,iTunes,4058,5138 +1724253000,Launchpad,1846,1488 +1724253000,Microsoft Update,606,508 +1724253000,NTP,1170,1080 +1724253000,SSL,1652,14124 +1724253000,STUN,328,296 +1724253000,VKontakte,627,3533 +1724253000,Odnoklassniki,3731,7579 +1724253000,Advanced Packaging Tool,33576,30857 +1724253000,HTTPS,1797612,48813736 +1724253000,Apple sites,2087,8556 +1724253000,Avast,382,391 +1724253000,SSL client,140873,336749 +1724253000,GoDaddy,7612,25124 +1724253000,Ubuntu Update Manager,26746,24911 +1724253000,Microsoft,3759,24735 +1724253000,Mail.Ru,4661,22976 +1724253000,Yandex,20710,58680 +1724253000,GitHub,12693,22392 +1724253000,Ubuntu,8026,7673 +1724253000,Microsoft CryptoAPI,3808,5964 +1724253000,Microsoft NCSI,394,479 +1724253000,Microsoft WNS,1326,15932 +1724253000,Google Play,14939,8981 +1724253000,Rambler,13408,19711 +1724253000,Google Hangouts,1652,14124 +1724253000,ICMP,8157,4662 +1724253000,Telegram,52697,404815 +1724253000,TikTok,11319,48874 +1724253000,Edge Chromium,7798,24185 +1724253000,DNS over TLS,5813,21072 +1724253000,DNS over HTTPS,13050,41195 +1724253300,__unknown,1526844,2608770 +1724253300,DNS over HTTPS,7023,16903 +1724253300,__unknown,2092,3592 +1724253300,HTTPS,86017,86565 +1724253300,SSL client,53692,59898 +1724253300,Telegram,53692,59898 +1724253300,__unknown,75973,2519312 +1724253300,Steam,5454,56277 +1724253300,HTTPS,3663945,181527865 +1724253300,SSL client,3141982,178345306 +1724253300,Mail.Ru,523718,809317 +1724253300,Yandex,15776,13121 +1724253300,Nvidia,2597034,177466591 +1724253300,__unknown,265596,1445004 +1724253300,Bing,8712,135077 +1724253300,Google APIs,16029,37503 +1724253300,Google Drive,2676,7165 +1724253300,Google,391309,855870 +1724253300,HTTP,1456,1340 +1724253300,Microsoft Update,580,387 +1724253300,Skype,2597,13998 +1724253300,YouTube,124414,2096523 +1724253300,VKontakte,4260,11512 +1724253300,HTTPS,3884886,153917154 +1724253300,Mozilla,2534,1738 +1724253300,SSL client,2461074,146172909 +1724253300,Microsoft,21862,57043 +1724253300,Mail.Ru,65745,125179 +1724253300,Yandex,1108882,141725468 +1724253300,Nvidia,556557,970015 +1724253300,Microsoft CryptoAPI,1456,1340 +1724253300,Google Play,126863,96566 +1724253300,Exchange Online,15273,18600 +1724253300,Office 365,13361,20652 +1724253300,DNS over HTTPS,7462,19392 +1724253300,__unknown,1190586,7216490 +1724253300,Dropbox,1274,4758 +1724253300,Google APIs,4563,8305 +1724253300,Google,202329,226640 +1724253300,MSN,10267,49955 +1724253300,Gmail,19638,44297 +1724253300,Google Analytics,2926,6859 +1724253300,HTTP,19396,952074 +1724253300,iTunes,3780,36529 +1724253300,SSL,62322,56793 +1724253300,TeamViewer,1449,8838 +1724253300,VKontakte,22174,59269 +1724253300,Advanced Packaging Tool,1292,1220 +1724253300,IMAPS,6819,23486 +1724253300,HTTPS,3921300,78011441 +1724253300,WhatsApp,2706,3416 +1724253300,APNS,46682,20092 +1724253300,Apple sites,28152,161294 +1724253300,iCloud,65287,581328 +1724253300,Mozilla,6238,17001 +1724253300,Avast,3451,12295 +1724253300,SSL client,2332251,40318669 +1724253300,Amazon Web Services,3385,21542 +1724253300,CloudFront,1973,48049 +1724253300,Ubuntu Update Manager,1292,1220 +1724253300,Microsoft,310359,1329787 +1724253300,Mail.Ru,324108,494230 +1724253300,Yandex,258233,13154867 +1724253300,Game Center,2705,5442 +1724253300,Nvidia,869314,24231078 +1724253300,Microsoft CryptoAPI,534,758 +1724253300,Apple Maps,2929,11229 +1724253300,Google Play,1574,1475 +1724253300,Rambler,18611,13785 +1724253300,Office 365,26852,74235 +1724253300,Microsoft Windows Live Services Authentication,50525,125714 +1724253300,Telegram,13966,60248 +1724253300,TikTok,26399,472638 +1724253300,GISMETEO,2194,9241 +1724253300,Grammarly,12599,9736 +1724253300,Stripe,12867,16190 +1724253300,DNS over TLS,2158,9392 +1724253300,Microsoft Teams,2813,7527 +1724253300,DNS over HTTPS,21751,89273 +1724253300,__unknown,6270,338 +1724253300,__unknown,1126,1188 +1724253300,__unknown,407634,3808143 +1724253300,HTTPS,5801,17851 +1724253300,SSL client,5801,17851 +1724253300,GitHub,5801,17851 +1724253300,__unknown,26678,198 +1724253300,Adobe Software,12809,23030 +1724253300,SSL,31701,40438 +1724253300,HTTPS,12809,23030 +1724253300,SSL client,12809,23030 +1724253300,CoAP,6370,4464 +1724253300,__unknown,20222,132 +1724253300,SSL,2710,9189 +1724253300,__unknown,11121,291 +1724253300,SSL,12998,15331 +1724253300,HTTPS,8882,26593 +1724253300,SSL client,8882,26593 +1724253300,GitHub,8882,26593 +1724253300,__unknown,10382,5980 +1724253300,Google,11090,19954 +1724253300,HTTPS,41282,48339 +1724253300,SSL client,11090,19954 +1724253300,__unknown,20442,12364 +1724253300,HTTPS,341958,8875396 +1724253300,SSL client,220310,535198 +1724253300,Apple Maps,2648,7129 +1724253300,Rambler,220310,535198 +1724253300,DNS over HTTPS,10597,20544 +1724253300,__unknown,50196,1501765 +1724253300,Google,46400,96819 +1724253300,HTTPS,175501,1371544 +1724253300,SSL client,48364,103773 +1724253300,Apple Maps,2848,6876 +1724253300,ICMP,15879,962 +1724253300,Telegram,999,520 +1724253300,Xiaomi,1964,6954 +1724253300,DNS over HTTPS,6594,20169 +1724253300,__unknown,1947521,5909020 +1724253300,BitTorrent,649,496 +1724253300,DHCPv6,163,0 +1724253300,Google APIs,68460,88932 +1724253300,Google Drive,9741,5037 +1724253300,Google,180770,477480 +1724253300,Android browser,401,333 +1724253300,BitTorrent tracker,153,0 +1724253300,DNS,18072,0 +1724253300,Firefox,4164,3780 +1724253300,Gmail,41080,57189 +1724253300,Google Analytics,10145,11564 +1724253300,HTTP,9981,11047 +1724253300,Microsoft Update,1041,849 +1724253300,NetBIOS-dgm,243,0 +1724253300,NTP,12840,3090 +1724253300,STUN,3726,4928 +1724253300,VKontakte,7451,12448 +1724253300,Odnoklassniki,2042,6645 +1724253300,HTTPS,675680,2507248 +1724253300,Mozilla,4865,6738 +1724253300,SSL client,486777,1505467 +1724253300,Microsoft,931,7206 +1724253300,Yandex,128590,746728 +1724253300,Microsoft CryptoAPI,3385,3305 +1724253300,Google Play,5434,10388 +1724253300,Rambler,11112,37290 +1724253300,ICMP,63514,11470 +1724253300,Firebase Crashlytics,1875,6688 +1724253300,Telegram,509,309 +1724253300,Google Sign in,10914,16216 +1724253300,Grammarly,3367,14918 +1724253300,DNS over HTTPS,18070,51183 +1724253300,__unknown,5007749,11411200 +1724253300,Apple Update,1720,4993 +1724253300,BitTorrent,306,0 +1724253300,DHCPv6,978,0 +1724253300,Google APIs,48038,65799 +1724253300,Google,22465,41874 +1724253300,Android browser,459,333 +1724253300,BitTorrent tracker,306,0 +1724253300,Chrome,565,484 +1724253300,DNS,55217,51850 +1724253300,Firefox,1583,2906 +1724253300,Gmail,9773,26235 +1724253300,HTTP,112548,122840 +1724253300,iTunes,853,3386 +1724253300,Launchpad,3126,2480 +1724253300,Microsoft Update,1928,1544 +1724253300,NetBIOS-dgm,250,0 +1724253300,NTP,1350,1350 +1724253300,STUN,11200,1406 +1724253300,Odnoklassniki,4460,8689 +1724253300,Steam,1275,3411 +1724253300,Advanced Packaging Tool,25253,23165 +1724253300,IMAPS,9773,26235 +1724253300,HTTPS,1811049,4987206 +1724253300,Apple sites,853,4059 +1724253300,SSL client,274741,1875358 +1724253300,Ubuntu Update Manager,19683,18427 +1724253300,Microsoft,3653,10285 +1724253300,Mail.Ru,6982,29787 +1724253300,Yandex,72075,1461433 +1724253300,GitHub,52432,135788 +1724253300,Ubuntu,3719,3629 +1724253300,Microsoft CryptoAPI,4710,7183 +1724253300,Microsoft WNS,693,7969 +1724253300,Apple Maps,1918,4666 +1724253300,Google Play,29363,29229 +1724253300,Rambler,6215,11407 +1724253300,ICMP,15713,3404 +1724253300,Weborama,3176,8773 +1724253300,Telegram,4662,1769 +1724253300,Google Sign in,5812,4155 +1724253300,Edge Chromium,6624,18410 +1724253300,Grammarly,1941,7388 +1724253300,DNS over TLS,8582,37962 +1724253300,DNS over HTTPS,16497,63335 +1724253600,__unknown,331562,299213 +1724253600,HTTPS,21716,18747 +1724253600,__unknown,278786,140125 +1724253600,HTTPS,8144,10718 +1724253600,SSL client,8144,10718 +1724253600,Yandex,8144,10718 +1724253600,__unknown,19703,24385 +1724253600,Dropbox,138793,25235 +1724253600,HTTPS,261336,142212 +1724253600,SSL client,184151,30896 +1724253600,Dropbox Download,45358,5661 +1724253600,Google APIs,2302,6340 +1724253600,HTTPS,88757,168570 +1724253600,SSL client,36350,36879 +1724253600,Google Play,34048,30539 +1724253600,__unknown,149519,5325375 +1724253600,Google APIs,10502,16856 +1724253600,Google,428872,317525 +1724253600,MSN,989,5862 +1724253600,Gmail,2500,6846 +1724253600,HTTP,2694,4912 +1724253600,iTunes,2478,9186 +1724253600,SSL,28211,331080 +1724253600,YouTube,86070,62567 +1724253600,VKontakte,14412,21461 +1724253600,HTTPS,3996514,75211357 +1724253600,Apple sites,3507,20026 +1724253600,SSL client,2168046,68923438 +1724253600,Microsoft,14802,36107 +1724253600,Mail.Ru,194954,151608 +1724253600,Yandex,86924,1503529 +1724253600,Nvidia,1187259,64109568 +1724253600,Microsoft CryptoAPI,487,2679 +1724253600,Office 365,40402,159268 +1724253600,Battle.net site,2258,3973 +1724253600,TikTok,88034,2467701 +1724253600,Xiaomi,1834,4630 +1724253600,Microsoft Teams,2736,29404 +1724253600,DNS over HTTPS,8900,26389 +1724253600,__unknown,1441550,3368692 +1724253600,Bing,6015,16259 +1724253600,Dropbox,85055,7401 +1724253600,Eset,2010,1186 +1724253600,Google APIs,26863,48508 +1724253600,Google,54695,336219 +1724253600,MSN,1340,7385 +1724253600,Yahoo!,110217,285813 +1724253600,Chrome,565,140 +1724253600,Gmail,209108,178365 +1724253600,HTTP,13862,24455 +1724253600,iTunes,4168,5329 +1724253600,Skype,11578,188984 +1724253600,SSL,583052,3802350 +1724253600,VKontakte,2940,8879 +1724253600,Advanced Packaging Tool,1274,1193 +1724253600,IMAPS,22475,68553 +1724253600,HTTPS,4735585,67340080 +1724253600,Apple sites,74894,70895 +1724253600,iCloud,215674,235318 +1724253600,Mozilla,4877,7049 +1724253600,Avast,1254,8832 +1724253600,SSL client,3618142,56605786 +1724253600,Ubuntu Update Manager,1274,1193 +1724253600,Microsoft,332764,804469 +1724253600,Mail.Ru,1053789,1263640 +1724253600,Siri,1776,6179 +1724253600,Yandex,290618,4406842 +1724253600,Nvidia,886643,43768612 +1724253600,Google Update,4401,10370 +1724253600,Microsoft CryptoAPI,1203,1202 +1724253600,Microsoft NCSI,390,483 +1724253600,Microsoft WNS,693,7900 +1724253600,uTorrent,10519,19601 +1724253600,Apple Maps,11986,61221 +1724253600,Office 365,27152,70631 +1724253600,Microsoft Windows Live Services Authentication,6266,15674 +1724253600,Google Hangouts,1765,8028 +1724253600,Office Mobile,22908,15738 +1724253600,Mail.ru Attachment,7199,450812 +1724253600,Telegram,9544,45660 +1724253600,TikTok,157362,4342134 +1724253600,GISMETEO,2194,9181 +1724253600,Xiaomi,1846,4786 +1724253600,DNS over TLS,5895,16585 +1724253600,DNS over HTTPS,27312,101663 +1724253600,__unknown,9412,66 +1724253600,__unknown,201486,277359 +1724253600,HTTPS,70884,48091 +1724253600,__unknown,21716,4261 +1724253600,HTTPS,10329,18656 +1724253600,__unknown,15173,131290 +1724253600,Gmail,766108,1423647 +1724253600,SSL,2531,9057 +1724253600,HTTPS,777750,1517704 +1724253600,SSL client,766108,1423647 +1724253600,__unknown,25788,403444 +1724253600,HTTPS,71530,41431 +1724253600,__unknown,175097,87886 +1724253600,HTTP,2233,1240 +1724253600,HTTPS,59921,134240 +1724253600,ICMP,2150,0 +1724253600,DNS over HTTPS,42610,126869 +1724253600,__unknown,66992,613372 +1724253600,Google,11618,21505 +1724253600,HTTP,7721,144608 +1724253600,HTTPS,80608,71299 +1724253600,iCloud,5895,15432 +1724253600,SSL client,73152,56601 +1724253600,Samsung,772,1982 +1724253600,Google Play,55639,19664 +1724253600,ICMP,9326,3552 +1724253600,Telegram,3776,2202 +1724253600,__unknown,2726199,9128978 +1724253600,BitTorrent,434,496 +1724253600,DHCPv6,163,0 +1724253600,Google APIs,67202,49062 +1724253600,Google,188501,125571 +1724253600,Android browser,816,732 +1724253600,DNS,21704,0 +1724253600,HTTP,4041,4763 +1724253600,Microsoft Update,981,850 +1724253600,NetBIOS-ns,276,0 +1724253600,NTP,810,810 +1724253600,SSL,13934,6737 +1724253600,STUN,17332,3478 +1724253600,YouTube,27893,855201 +1724253600,VKontakte,2343,4688 +1724253600,Odnoklassniki,2174,7386 +1724253600,HTTPS,466933,1585384 +1724253600,APNS,13934,6737 +1724253600,SSL client,338117,1121506 +1724253600,Samsung,386,140 +1724253600,CloudFront,2101,10227 +1724253600,Yandex,22843,31948 +1724253600,GitHub,5166,15465 +1724253600,Microsoft CryptoAPI,1576,1802 +1724253600,Rambler,1843,3657 +1724253600,ICMP,48838,10454 +1724253600,Firebase Crashlytics,1869,6553 +1724253600,Telegram,8124,12331 +1724253600,DNS over HTTPS,13925,34671 +1724253600,CoAP,882,576 +1724253600,__unknown,7287577,19502119 +1724253600,BITS,3827,28547 +1724253600,BitTorrent,955,515 +1724253600,Eset,1032,4240 +1724253600,Google APIs,28524,67462 +1724253600,Google,42702,90583 +1724253600,MSN,578,502 +1724253600,Android browser,684,272 +1724253600,BitTorrent tracker,459,515 +1724253600,Chrome,1186,968 +1724253600,DNS,59784,50365 +1724253600,HTTP,111593,144010 +1724253600,Launchpad,3208,2480 +1724253600,Microsoft Update,4195,3338 +1724253600,NetBIOS-ns,276,0 +1724253600,NTP,14370,4620 +1724253600,SSL,795,7031 +1724253600,YouTube,1951,10480 +1724253600,Odnoklassniki,1852,6342 +1724253600,Advanced Packaging Tool,30288,28477 +1724253600,HTTPS,1366627,5190871 +1724253600,Apple sites,8041,69454 +1724253600,iCloud,6198,31976 +1724253600,Mozilla,8324,12404 +1724253600,Avast,359,451 +1724253600,SSL client,290583,3342476 +1724253600,Ubuntu Update Manager,21727,20951 +1724253600,Microsoft,3336,19571 +1724253600,VeriSign,566,2141 +1724253600,NIH,3976,133194 +1724253600,Mail.Ru,8764,40729 +1724253600,Yandex,116304,2772555 +1724253600,Ubuntu,7053,6878 +1724253600,Nvidia,10123,22888 +1724253600,Microsoft CryptoAPI,11391,16752 +1724253600,Microsoft NCSI,3152,3393 +1724253600,Microsoft WNS,1724,16409 +1724253600,Apple Maps,4340,9776 +1724253600,Google Play,43510,48759 +1724253600,Google Hangouts,795,7031 +1724253600,ICMP,9187,5152 +1724253600,Weborama,3099,8685 +1724253600,Telegram,8333,47284 +1724253600,Edge Chromium,2875,10088 +1724253600,DNS over TLS,3159,14311 +1724253600,DNS over HTTPS,14934,49824 +1724253900,__unknown,2286086,1238583 +1724253900,HTTPS,3783,6391 +1724253900,SSL client,3783,6391 +1724253900,Sharepoint Online,3783,6391 +1724253900,HTTPS,116243,472563 +1724253900,SSL client,83734,435201 +1724253900,TikTok,83734,435201 +1724253900,HTTPS,17635,21185 +1724253900,SSL client,17635,21185 +1724253900,Mail.Ru,10297,11906 +1724253900,Yandex,7338,9279 +1724253900,__unknown,1479,0 +1724253900,Dropbox,140296,27133 +1724253900,Google APIs,1913,6249 +1724253900,HTTPS,363270,62754 +1724253900,SSL client,313857,50035 +1724253900,Google Play,30748,9381 +1724253900,Dropbox Download,140900,7272 +1724253900,__unknown,50200,57391 +1724253900,Gmail,160181,69576 +1724253900,Google Analytics,3593,7142 +1724253900,HTTP,617,1735 +1724253900,HTTPS,1405356,11896457 +1724253900,SSL client,1279603,1982595 +1724253900,Nvidia,1115829,1905877 +1724253900,__unknown,115002,33473 +1724253900,Bing,11096,32481 +1724253900,Dropbox,1769,1657 +1724253900,Google APIs,5404,11504 +1724253900,Google,8676,59869 +1724253900,MSN,2917,8321 +1724253900,Yahoo!,1861637,26684917 +1724253900,HTTP,2195,27045 +1724253900,iTunes,5547,10301 +1724253900,SSL,809014,18504573 +1724253900,VKontakte,31826,42942 +1724253900,HTTPS,4266326,86712034 +1724253900,iCloud,3742,8996 +1724253900,Mozilla,1328,4325 +1724253900,SSL client,3101003,70373395 +1724253900,Microsoft,22700,28160 +1724253900,Mail.Ru,195188,160755 +1724253900,Yandex,95772,139687 +1724253900,Game Center,2465,4874 +1724253900,Nvidia,757235,41536476 +1724253900,Microsoft CryptoAPI,2195,27045 +1724253900,Apple Maps,1697,5114 +1724253900,Office 365,8375,31173 +1724253900,Battle.net site,2258,3973 +1724253900,Telegram,2222,7714 +1724253900,TikTok,78200,1599656 +1724253900,Google Sign in,4868,3328 +1724253900,DNS over HTTPS,5659,17465 +1724253900,__unknown,1283701,3610667 +1724253900,Bing,3682,6704 +1724253900,Google APIs,21625,34798 +1724253900,Google,104969,1537633 +1724253900,MSN,92917,102426 +1724253900,Yahoo!,958720,6759877 +1724253900,Gmail,11480,19179 +1724253900,Google Analytics,6404,15410 +1724253900,HTTP,5871,6446 +1724253900,iTunes,36302,115564 +1724253900,Launchpad,574,496 +1724253900,Microsoft Update,600,382 +1724253900,SSL,2756398,49847869 +1724253900,YouTube,10719,16450 +1724253900,TeamViewer,2376,14256 +1724253900,VKontakte,13276,38002 +1724253900,Advanced Packaging Tool,3131,3324 +1724253900,SMTPS,475979,22092 +1724253900,IMAPS,13325,39921 +1724253900,HTTPS,5359586,51353352 +1724253900,Apple sites,26377,259647 +1724253900,iCloud,404155,634816 +1724253900,SSL client,4780493,36263143 +1724253900,Ubuntu Update Manager,2557,2828 +1724253900,Microsoft,309678,552849 +1724253900,Mail.Ru,549509,1094922 +1724253900,Yandex,756945,384176 +1724253900,GitHub,1586,6062 +1724253900,Game Center,2627,5077 +1724253900,Intel,1200,4770 +1724253900,Nvidia,1377315,24392819 +1724253900,Microsoft CryptoAPI,600,382 +1724253900,Apple Maps,7973,128328 +1724253900,Rambler,3053,5342 +1724253900,Office 365,10379,41812 +1724253900,Sharepoint Online,3216,94171 +1724253900,Microsoft Windows Live Services Authentication,29664,69756 +1724253900,Office Mobile,19005,15740 +1724253900,Telegram,15470,52899 +1724253900,TikTok,3721,3904 +1724253900,GISMETEO,2065,2924 +1724253900,Stripe,10730,11668 +1724253900,DNS over TLS,1354,4679 +1724253900,DNS over HTTPS,72429,165234 +1724253900,__unknown,18792,66 +1724253900,__unknown,28108,198 +1724253900,HTTPS,3025,4043 +1724253900,SSL client,3025,4043 +1724253900,GitHub,3025,4043 +1724253900,HTTPS,2709,2680 +1724253900,SSL client,2709,2680 +1724253900,Yandex,2709,2680 +1724253900,__unknown,18792,132 +1724253900,__unknown,16426,7032 +1724253900,HTTP,54206,233075 +1724253900,Google,36711,62483 +1724253900,HTTPS,36711,62483 +1724253900,SSL client,36711,62483 +1724253900,__unknown,28108,198 +1724253900,__unknown,327551,301967 +1724253900,SSL,4115,11444 +1724253900,HTTPS,5070,6782 +1724253900,SSL client,5070,6782 +1724253900,GitHub,5070,6782 +1724253900,ICMP,1634,0 +1724253900,__unknown,158718,355256 +1724253900,HTTP,1604,1001 +1724253900,HTTPS,187057,64584 +1724253900,Telegram,1604,1001 +1724253900,__unknown,1055543,886047 +1724253900,Google,7032,11893 +1724253900,Gmail,12245,15798 +1724253900,Steam,1779,5870 +1724253900,HTTPS,126057,199185 +1724253900,Avast,7541,2841 +1724253900,SSL client,86119,73505 +1724253900,GitHub,3947,17640 +1724253900,Google Play,53575,19463 +1724253900,ICMP,386,148 +1724253900,DNS over HTTPS,4166,11885 +1724253900,__unknown,3482759,7700074 +1724253900,BitTorrent,401,496 +1724253900,Google APIs,39251,36200 +1724253900,Google,53283,123723 +1724253900,Google Translate,21478,15966 +1724253900,Adobe Software,29648,1362662 +1724253900,BitTorrent tracker,153,0 +1724253900,Chrome,1014,2074 +1724253900,DNS,21960,0 +1724253900,Gmail,12265,14039 +1724253900,HTTP,7625,11874 +1724253900,iTunes,525,3428 +1724253900,Microsoft Update,1623,1335 +1724253900,NTP,24064,6180 +1724253900,SSL,5682,18496 +1724253900,STUN,3744,4930 +1724253900,VKontakte,2409,5695 +1724253900,HTTPS,776049,4466906 +1724253900,Apple sites,5671,127003 +1724253900,Mozilla,5119,3362 +1724253900,SSL client,270749,3416120 +1724253900,Samsung,644,1924 +1724253900,NIH,1131,7150 +1724253900,Yandex,56482,1468498 +1724253900,Nvidia,7320,18311 +1724253900,Microsoft CryptoAPI,4886,4082 +1724253900,Google Play,16331,9835 +1724253900,Google Accounts Authentication,13173,199943 +1724253900,ICMP,62362,13750 +1724253900,Grammarly,4285,15833 +1724253900,DNS over HTTPS,55247,154726 +1724253900,CoAP,686,504 +1724253900,__unknown,13261318,41290165 +1724253900,Apple Update,2461,5973 +1724253900,BitTorrent,678,198 +1724253900,DHCPv6,1141,0 +1724253900,Google APIs,17502,27660 +1724253900,Google,50686,131727 +1724253900,Kaspersky,552,541 +1724253900,BitTorrent tracker,306,198 +1724253900,Chrome,38548,19696 +1724253900,DNS,55026,52696 +1724253900,Google Calendar,5815,4525 +1724253900,HTTP,667247,14969958 +1724253900,Internet Explorer,762,660 +1724253900,Launchpad,1920,1488 +1724253900,Microsoft Update,2268,1803 +1724253900,NetBIOS-dgm,243,0 +1724253900,NTP,990,900 +1724253900,YouTube,2099,7674 +1724253900,VKontakte,6713,16473 +1724253900,Advanced Packaging Tool,23936,21771 +1724253900,HTTPS,531281,1890237 +1724253900,Apple sites,10719,56806 +1724253900,iCloud,23512,47259 +1724253900,SSL client,251402,735302 +1724253900,CloudFront,853,6460 +1724253900,Ubuntu Update Manager,17811,16501 +1724253900,Microsoft,526873,14814280 +1724253900,VeriSign,500,2141 +1724253900,Mail.Ru,14950,27549 +1724253900,Yandex,42770,251281 +1724253900,GitHub,30633,66886 +1724253900,Ubuntu,6396,6075 +1724253900,Microsoft CryptoAPI,10603,35669 +1724253900,Microsoft NCSI,454,487 +1724253900,ICMP,8178,3404 +1724253900,Alipay,816,1584 +1724253900,Firebase Crashlytics,2173,7118 +1724253900,Office Mobile,9533,9157 +1724253900,Telegram,28068,32603 +1724253900,Edge Chromium,4109,12237 +1724253900,Grammarly,1813,7405 +1724253900,DNS over TLS,9161,37978 +1724253900,DNS over HTTPS,30149,118388 +1724254200,__unknown,84493842,6099903472 +1724254200,HTTPS,52368,61437 +1724254200,ICMP,13694,0 +1724254200,HTTPS,13842,74847 +1724254200,SSL client,5173,5311 +1724254200,Exchange Online,5173,5311 +1724254200,HTTPS,152635,368272 +1724254200,SSL client,152635,368272 +1724254200,Nvidia,152635,368272 +1724254200,__unknown,10883,61086 +1724254200,Google APIs,1322,5413 +1724254200,VKontakte,46298,582678 +1724254200,HTTPS,50481,589715 +1724254200,SSL client,47620,588091 +1724254200,__unknown,19822,22073 +1724254200,Google,61327,64681 +1724254200,Gmail,9156,19029 +1724254200,VKontakte,19581,29250 +1724254200,IMAPS,9156,19029 +1724254200,HTTPS,787537,4762133 +1724254200,SSL client,354230,836138 +1724254200,Yandex,30216,123052 +1724254200,Google Play,12988,18227 +1724254200,Office 365,220962,581899 +1724254200,__unknown,368045,828653 +1724254200,Google APIs,1816,9229 +1724254200,Google,82334,3435280 +1724254200,MSN,1518,7515 +1724254200,HTTP,1414,1226 +1724254200,Microsoft Update,915,823 +1724254200,SSL,404536,9729858 +1724254200,TeamViewer,1233,7059 +1724254200,HTTPS,3595075,226743741 +1724254200,Apple sites,104069,16067 +1724254200,Avast,1320,10937 +1724254200,SSL client,2272773,98881586 +1724254200,Microsoft,15950,34628 +1724254200,Mail.Ru,108055,159644 +1724254200,Yandex,488233,3930425 +1724254200,Aliexpress,5173,7551 +1724254200,Nvidia,1409546,91223502 +1724254200,Microsoft CryptoAPI,1414,1226 +1724254200,Google Play,40088,3863 +1724254200,Office 365,7414,24956 +1724254200,Battle.net site,2258,3973 +1724254200,Telegram,4933,33557 +1724254200,Grammarly,3766,6957 +1724254200,DNS over HTTPS,2600,7978 +1724254200,__unknown,96369221,91106853 +1724254200,Apple Update,2942,8244 +1724254200,Bing,3589,6486 +1724254200,Dropbox,14756,442983 +1724254200,Google APIs,44853931,1035208 +1724254200,Google,464202,392978 +1724254200,MSN,3886,33900 +1724254200,Adobe Software,25282,134113 +1724254200,Apple Store,220209,10899237 +1724254200,Dell,1111,4305 +1724254200,Gmail,32579,272280 +1724254200,HTTP,123037,980917 +1724254200,iTunes,24815,451089 +1724254200,Launchpad,1214,992 +1724254200,Microsoft Update,189803,920307 +1724254200,Skype,3016,7108 +1724254200,SSL,43296,93996 +1724254200,VKontakte,7893,21931 +1724254200,Odnoklassniki,1947,6952 +1724254200,Steam,2750,11499 +1724254200,Advanced Packaging Tool,4204,4016 +1724254200,Windows Update,47247,912284 +1724254200,IMAPS,27208,302579 +1724254200,HTTPS,52524134,147493669 +1724254200,WhatsApp,3059,6587 +1724254200,Spotify,7996,176450 +1724254200,Apple sites,27286,67721 +1724254200,iCloud,146993,1007858 +1724254200,Avast,2951,14978 +1724254200,SSL client,49111649,25431932 +1724254200,Ubuntu Update Manager,1996,2086 +1724254200,Microsoft,274898,465520 +1724254200,Mail.Ru,1102205,7285882 +1724254200,Siri,5770,6219 +1724254200,Yandex,851768,925916 +1724254200,Ubuntu,994,938 +1724254200,Nvidia,466756,1360260 +1724254200,Microsoft CryptoAPI,3113,4054 +1724254200,Apple Maps,2272,4764 +1724254200,Exchange Online,1198,8065 +1724254200,Office 365,68607,160230 +1724254200,Sharepoint Online,1180,5821 +1724254200,Microsoft Windows Live Services Authentication,62981,114027 +1724254200,Office Mobile,64920,77309 +1724254200,Telegram,128590,3729973 +1724254200,GISMETEO,2200,9176 +1724254200,Xiaomi,251021,17011 +1724254200,Google Inbox,12039,20626 +1724254200,Edge Chromium,1521,4607 +1724254200,Grammarly,1448,9888 +1724254200,Stripe,12723,10007 +1724254200,DNS over TLS,1079,4704 +1724254200,DNS over HTTPS,16289,75529 +1724254200,__unknown,9348,66 +1724254200,__unknown,24016,576 +1724254200,__unknown,5714,14126 +1724254200,__unknown,47064,330 +1724254200,__unknown,29570,198 +1724254200,__unknown,18980,361 +1724254200,__unknown,17428,132 +1724254200,HTTPS,249664,93942 +1724254200,SSL client,249664,93942 +1724254200,Google Play,249664,93942 +1724254200,__unknown,19829,3044 +1724254200,HTTPS,3211,5355 +1724254200,ICMP,3016,666 +1724254200,__unknown,462484,1005117 +1724254200,Skype Auth,700,398 +1724254200,HTTP,675,120 +1724254200,Skype,700,398 +1724254200,HTTPS,44948,346423 +1724254200,SSL client,3680,7226 +1724254200,Yandex,3680,7226 +1724254200,ICMP,18404,2368 +1724254200,Telegram,675,120 +1724254200,__unknown,8260016,26331824 +1724254200,Bing,10158,630785 +1724254200,BitTorrent,310,434 +1724254200,Google APIs,8232,24544 +1724254200,Google Drive,263022,106505 +1724254200,Google,281453,498847 +1724254200,Android browser,455,333 +1724254200,DNS,18668,0 +1724254200,HTTP,1021,2474 +1724254200,NetBIOS-dgm,250,0 +1724254200,NTP,24780,5280 +1724254200,STUN,2214,1924 +1724254200,VKontakte,2439,6442 +1724254200,Odnoklassniki,2042,6696 +1724254200,HTTPS,778708,2299077 +1724254200,WhatsApp,1844,7921 +1724254200,Mozilla,5019,6375 +1724254200,SSL client,608505,1549607 +1724254200,Microsoft,4202,26688 +1724254200,VeriSign,566,2141 +1724254200,Yandex,5048,172895 +1724254200,Nvidia,6920,17646 +1724254200,Microsoft CryptoAPI,566,2141 +1724254200,Office 365,1105,13341 +1724254200,ICMP,18290,14042 +1724254200,Firebase Crashlytics,4256,13132 +1724254200,Office Mobile,525,6675 +1724254200,Telegram,808,552 +1724254200,Google Sign in,9733,7036 +1724254200,DNS over HTTPS,60994,168975 +1724254200,__unknown,3336250,8745586 +1724254200,BITS,6132,119928 +1724254200,BitTorrent,459,854 +1724254200,DHCPv6,978,0 +1724254200,Google APIs,55222,166834 +1724254200,Google Drive,12041,12372 +1724254200,Google,47639,167791 +1724254200,Kaspersky,518,541 +1724254200,MSN,577,501 +1724254200,Android browser,459,333 +1724254200,BitTorrent tracker,459,854 +1724254200,Chrome,5728,4906 +1724254200,DNS,50989,51645 +1724254200,Firefox,17233,27019 +1724254200,Gmail,6241,7947 +1724254200,HTTP,109093,349508 +1724254200,Launchpad,3126,2480 +1724254200,NTP,1080,1080 +1724254200,YouTube,2335,6004 +1724254200,Odnoklassniki,5031,13828 +1724254200,Steam,1396,16761 +1724254200,Advanced Packaging Tool,28925,128266 +1724254200,HTTPS,637928,2994446 +1724254200,Apple sites,8170,54558 +1724254200,iCloud,20570,34287 +1724254200,Avast,382,391 +1724254200,Opera,3535,14347 +1724254200,SSL client,269242,1855690 +1724254200,Ubuntu Update Manager,21021,121440 +1724254200,Microsoft,6132,119928 +1724254200,Mail.Ru,12352,27764 +1724254200,Yandex,74226,927542 +1724254200,Ubuntu,6626,6178 +1724254200,Nvidia,23464,436020 +1724254200,Microsoft CryptoAPI,1235,4363 +1724254200,Microsoft WNS,577,501 +1724254200,ICMP,8318,4338 +1724254200,Telegram,10843,17140 +1724254200,Edge Chromium,4109,14041 +1724254200,DNS over TLS,496,4771 +1724254200,DNS over HTTPS,12895,43809 +1724254500,__unknown,303903,2668636 +1724254500,DNS over HTTPS,158070,421302 +1724254500,STUN,19270,17686 +1724254500,HTTPS,51477,63502 +1724254500,SSL client,51477,63502 +1724254500,Telegram,51477,63502 +1724254500,HTTPS,79569,753311 +1724254500,SSL client,7974,58189 +1724254500,Mail.Ru,7974,58189 +1724254500,__unknown,127714,2383897 +1724254500,Gmail,114914,94291 +1724254500,HTTPS,122591,98345 +1724254500,SSL client,114914,94291 +1724254500,__unknown,61903,48098 +1724254500,HTTPS,58749,71240 +1724254500,Mozilla,1780,6711 +1724254500,SSL client,54653,67465 +1724254500,Telegram,52873,60754 +1724254500,__unknown,66630,47995 +1724254500,Dropbox,284410,44242 +1724254500,HTTPS,359654,59735 +1724254500,SSL client,348542,50979 +1724254500,Dropbox Download,64132,6737 +1724254500,DNS over HTTPS,0,720 +1724254500,Google APIs,2027,7118 +1724254500,Gmail,22036,50076 +1724254500,HTTPS,909468,185814 +1724254500,SSL client,50602,85680 +1724254500,Yandex,4701,10245 +1724254500,Google Play,21838,18241 +1724254500,__unknown,138267,415226 +1724254500,Bing,3214,6051 +1724254500,Dropbox,7577,212740 +1724254500,Google APIs,2397,7436 +1724254500,Google,29541,136955 +1724254500,Google Translate,10069,254481 +1724254500,iTunes,11029,30092 +1724254500,SSL,56199,967432 +1724254500,TeamViewer,1499,9000 +1724254500,VKontakte,14647,20451 +1724254500,HTTPS,1726319,6166895 +1724254500,Apple sites,4143,21067 +1724254500,iCloud,621122,28455 +1724254500,Mozilla,7437,10742 +1724254500,Avast,1254,8524 +1724254500,SSL client,984594,1209917 +1724254500,Microsoft,30425,157532 +1724254500,Mail.Ru,165536,149518 +1724254500,Yandex,48685,114072 +1724254500,Nvidia,5890,14210 +1724254500,Office 365,2533,14987 +1724254500,Stripe,17596,13604 +1724254500,__unknown,884652,1127277 +1724254500,Apple Update,19321,535640 +1724254500,Bing,6703,22765 +1724254500,Dropbox,123120,8389 +1724254500,Google APIs,24321,118051 +1724254500,Google Drive,935,9700 +1724254500,Google,754623,597401 +1724254500,MSN,17453,86037 +1724254500,QQ,15099,45114 +1724254500,Windows Live,5403,8447 +1724254500,Adobe Software,130528,6974051 +1724254500,Apple Store,59442,533713 +1724254500,Gmail,11547,37026 +1724254500,Google Analytics,1311,972 +1724254500,HTTP,10706,8511 +1724254500,iTunes,15700,19381 +1724254500,SSL,25685,15253 +1724254500,YouTube,33715,61662 +1724254500,VKontakte,2295,4845 +1724254500,Advanced Packaging Tool,3584,3003 +1724254500,IMAPS,11411,36513 +1724254500,HTTPS,8726869,100618501 +1724254500,APNS,21830,5663 +1724254500,Apple sites,44660,1137150 +1724254500,iCloud,72365,242378 +1724254500,Mozilla,2177,5211 +1724254500,Avast,759,8688 +1724254500,SSL client,6010255,39956853 +1724254500,Amazon Web Services,3325,21542 +1724254500,Ubuntu Update Manager,2488,1969 +1724254500,Microsoft,166253,349763 +1724254500,Mail.Ru,342099,441788 +1724254500,Yandex,605833,17861836 +1724254500,GitHub,1349722,4146554 +1724254500,Ubuntu,1521,1429 +1724254500,Nvidia,139848,315949 +1724254500,Microsoft CryptoAPI,551,2250 +1724254500,Apple Maps,6326,24811 +1724254500,Pocket,2190,1331 +1724254500,Google Play,1751710,450622 +1724254500,Exchange Online,2483,14658 +1724254500,Office 365,33888,129295 +1724254500,Google Hangouts,3855,9590 +1724254500,Weborama,3231,7714 +1724254500,Sway,3406,7966 +1724254500,Office Mobile,9180,8217 +1724254500,Telegram,6926,9409 +1724254500,TikTok,183425,5607138 +1724254500,GISMETEO,2074,9236 +1724254500,Google Inbox,24880,67220 +1724254500,Grammarly,1924,6692 +1724254500,Stripe,6768,6582 +1724254500,DNS over HTTPS,16957,76697 +1724254500,Discord,1175,6582 +1724254500,Notion,9986,20616 +1724254500,__unknown,126,221 +1724254500,Google Drive,1107547,1448921 +1724254500,VKontakte,314285,1063151 +1724254500,HTTPS,1512751,2571281 +1724254500,SSL client,1512751,2571281 +1724254500,Google Play,90919,59209 +1724254500,__unknown,19549,932 +1724254500,__unknown,340495,163421 +1724254500,__unknown,17142,767 +1724254500,Google,54445,73512 +1724254500,HTTPS,54445,73512 +1724254500,SSL client,54445,73512 +1724254500,__unknown,9412,66 +1724254500,HTTPS,49793,28278 +1724254500,__unknown,9412,66 +1724254500,SSL,2555,9116 +1724254500,ICMP,1804,0 +1724254500,__unknown,304016,4418686 +1724254500,HTTPS,629929,126675 +1724254500,Apple sites,1935,9989 +1724254500,SSL client,1935,9989 +1724254500,__unknown,144871,105375 +1724254500,iTunes,1716,9460 +1724254500,HTTPS,39143,58028 +1724254500,Apple sites,5055,12735 +1724254500,SSL client,6771,22195 +1724254500,Apple Maps,1218,7059 +1724254500,ICMP,64813,0 +1724254500,__unknown,42293,17306 +1724254500,HTTP,621,348 +1724254500,HTTPS,18740,42351 +1724254500,ICMP,10562,0 +1724254500,__unknown,100241,2364624 +1724254500,Google,17947,40606 +1724254500,Gmail,12276,14088 +1724254500,VKontakte,11940,23093 +1724254500,HTTPS,108264,215791 +1724254500,SSL client,85691,174756 +1724254500,Google Accounts Authentication,10434,15821 +1724254500,ICMP,6388,148 +1724254500,Telegram,970,120 +1724254500,DNS over HTTPS,42806,92320 +1724254500,CoAP,2156,1584 +1724254500,__unknown,3079092,7929588 +1724254500,BitTorrent,463,496 +1724254500,DHCPv6,163,0 +1724254500,Google APIs,19744,55004 +1724254500,Google Drive,17416,45515 +1724254500,Google,111929,436723 +1724254500,BitTorrent tracker,153,0 +1724254500,Chrome,1462,3357 +1724254500,DNS,20464,0 +1724254500,Gmail,30516,61233 +1724254500,Google Analytics,2469,6727 +1724254500,HTTP,9196,12581 +1724254500,Microsoft Update,2534,2137 +1724254500,NTP,24490,6000 +1724254500,SSL,1705,1392 +1724254500,STUN,2132,1850 +1724254500,YouTube,10026,170662 +1724254500,VKontakte,5987,15436 +1724254500,Odnoklassniki,1988,6657 +1724254500,HTTPS,945056,2970960 +1724254500,WhatsApp,1852,7976 +1724254500,Mozilla,15058,17677 +1724254500,SSL client,248024,1820065 +1724254500,Box,1404,5023 +1724254500,Microsoft,2262,6545 +1724254500,Yandex,16221,891043 +1724254500,Microsoft CryptoAPI,7734,9224 +1724254500,CloudFlare,4506,83533 +1724254500,Google Hangouts,1705,1392 +1724254500,ICMP,55180,13824 +1724254500,ICMP for IPv6,206,302 +1724254500,Telegram,1179,904 +1724254500,DNS over HTTPS,4593,12638 +1724254500,Google Meet,4545,11944 +1724254500,__unknown,5053299,22264090 +1724254500,BitTorrent,153,0 +1724254500,Google APIs,11797,24100 +1724254500,Google,113891,1729769 +1724254500,Adobe Software,8248,257182 +1724254500,BitTorrent tracker,153,0 +1724254500,Chrome,1773,1452 +1724254500,DNS,51780,45914 +1724254500,Firefox,22445,69333 +1724254500,Gmail,13050,36794 +1724254500,Google Analytics,12169,31492 +1724254500,HTTP,152104,570828 +1724254500,iTunes,2225,7776 +1724254500,Launchpad,3200,2480 +1724254500,LiveJournal,75361,576201 +1724254500,Microsoft Update,16556,280451 +1724254500,NTP,540,540 +1724254500,Safari,2313,111580 +1724254500,SSL,11537,5307 +1724254500,VKontakte,2883,7306 +1724254500,Odnoklassniki,2609,7434 +1724254500,Advanced Packaging Tool,29971,27478 +1724254500,Windows Update,14631,278928 +1724254500,IMAPS,13050,36794 +1724254500,HTTPS,1401559,7616628 +1724254500,APNS,11537,5307 +1724254500,SSL client,344699,2901321 +1724254500,Box,1404,5023 +1724254500,Amazon Web Services,1133,6396 +1724254500,Ubuntu Update Manager,24375,22842 +1724254500,Microsoft,3599,23063 +1724254500,Mail.Ru,13844,30506 +1724254500,Yandex,46537,96586 +1724254500,Ubuntu,5438,5371 +1724254500,Microsoft CryptoAPI,7311,5820 +1724254500,Microsoft WNS,1266,15935 +1724254500,Rambler,4049,7299 +1724254500,ICMP,6387,3848 +1724254500,Telegram,18437,69710 +1724254500,Google Sign in,5444,7377 +1724254500,Edge Chromium,5103,16136 +1724254500,Grammarly,1922,7429 +1724254500,DNS over TLS,11147,52886 +1724254500,DNS over HTTPS,33091,122399 +1724254500,IPv6 No Next Header,196,0 +1724254799,__unknown,484815,713429 +1724254799,HTTPS,56153,40043 +1724254799,SSL client,56153,40043 +1724254799,Mail.Ru,56153,40043 +1724254799,Telegram,109032,135671 +1724254799,__unknown,2356,6417 +1724254799,Google,87801,117372 +1724254799,HTTPS,374277,485569 +1724254799,SSL client,298297,433440 +1724254799,Nvidia,153387,240114 +1724254799,Sharepoint Online,4878,7254 +1724254799,Telegram,52231,68700 +1724254799,HTTPS,13897,30135 +1724254799,SSL client,6046,10808 +1724254799,Exchange Online,6046,10808 +1724254799,HTTPS,54994,372955 +1724254799,SSL client,4930,7768 +1724254799,Sharepoint Online,4930,7768 +1724254799,__unknown,2583,8152 +1724254799,Google APIs,79520,67009 +1724254799,HTTPS,79520,67009 +1724254799,SSL client,79520,67009 +1724254799,Dropbox,114793,18957 +1724254799,Google APIs,5385,2482 +1724254799,HTTPS,502404,178405 +1724254799,SSL client,440179,75598 +1724254799,Mail.Ru,88977,29503 +1724254799,Yandex,7689,4887 +1724254799,Google Play,41008,9251 +1724254799,Dropbox Download,182327,10518 +1724254799,__unknown,1608,0 +1724254799,HTTPS,116882,308941 +1724254799,__unknown,805813,39848825 +1724254799,Dropbox,12361,3658 +1724254799,Google Drive,36808,22978 +1724254799,Google,24405,437721 +1724254799,Windows Live,2694,12497 +1724254799,Gmail,18320,114456 +1724254799,Google Analytics,5010,5771 +1724254799,HTTP,1203,2089 +1724254799,iTunes,3728,32060 +1724254799,TeamViewer,1510,8838 +1724254799,HTTPS,1228358,16983122 +1724254799,Apple sites,15504,39636 +1724254799,iCloud,2786,23966 +1724254799,Mozilla,8520,8856 +1724254799,SSL client,518465,2349959 +1724254799,Microsoft,47017,81991 +1724254799,Mail.Ru,125596,184919 +1724254799,Yandex,74579,103407 +1724254799,GitHub,67887,113239 +1724254799,Nvidia,1643,6028 +1724254799,Google Play,9484,14024 +1724254799,Office 365,2854,14688 +1724254799,Microsoft Windows Live Services Authentication,6245,15614 +1724254799,Battle.net site,3077,3973 +1724254799,Firebase Crashlytics,2059,6818 +1724254799,Telegram,868,318 +1724254799,TikTok,44285,1090150 +1724254799,Xiaomi,2093,4671 +1724254799,DNS over HTTPS,17069,50834 +1724254799,__unknown,615271,2255435 +1724254799,Apple Update,114547,5341308 +1724254799,Bing,14698,17187 +1724254799,Dropbox,8940,224422 +1724254799,Google APIs,38330,734504 +1724254799,Google,10702,43428 +1724254799,MSN,39766,355940 +1724254799,Yahoo!,2841,5647 +1724254799,Adobe Software,188785,7018864 +1724254799,Gmail,582530,2152480 +1724254799,Google Analytics,1296,1032 +1724254799,HTTP,13896,16833 +1724254799,iTunes,8165,10536 +1724254799,Launchpad,574,430 +1724254799,Microsoft Update,1445,1236 +1724254799,Skype,3025,8121 +1724254799,VKontakte,4284,13288 +1724254799,Advanced Packaging Tool,2453,2251 +1724254799,IMAPS,6841,27622 +1724254799,HTTPS,4713178,31509332 +1724254799,Apple sites,14032,54968 +1724254799,iCloud,10646,53299 +1724254799,Dictionary.com,1808,4395 +1724254799,Mozilla,2745,5279 +1724254799,Avast,382,391 +1724254799,Opera,27099,11066 +1724254799,SSL client,3416365,24103222 +1724254799,Ad Nexus,215477,64299 +1724254799,Amazon Web Services,2990,11260 +1724254799,CloudFront,2205,1681 +1724254799,Ubuntu Update Manager,1292,1288 +1724254799,Microsoft,271179,590825 +1724254799,Mail.Ru,990748,1313849 +1724254799,Yandex,172001,2541666 +1724254799,GitHub,152711,433162 +1724254799,Ubuntu,587,533 +1724254799,Microsoft Azure,4626,16863 +1724254799,Intel,1200,4770 +1724254799,Nvidia,24120,12635 +1724254799,Google Update,3648,8273 +1724254799,Microsoft CryptoAPI,4413,4644 +1724254799,Apple Maps,3002,6424 +1724254799,Google Play,25145,41844 +1724254799,AdGear,6627,24131 +1724254799,Smart AdServer,3790,5145 +1724254799,Exchange Online,1167,8552 +1724254799,Office 365,285744,158315 +1724254799,Sharepoint Online,926,5947 +1724254799,Microsoft Windows Live Services Authentication,12905,34620 +1724254799,Weborama,2859,6069 +1724254799,BlueStacks,1599,5046 +1724254799,Office Mobile,28731,26942 +1724254799,Telegram,10973,19649 +1724254799,TikTok,104993,2590973 +1724254799,Xiaomi,1706,4887 +1724254799,Google Inbox,48989,96922 +1724254799,DNS over TLS,1776,18232 +1724254799,Microsoft Teams,5509,41028 +1724254799,DNS over HTTPS,24322,137076 +1724254799,__unknown,17334,132 +1724254799,HTTPS,44771,64511 +1724254799,SSL client,44771,64511 +1724254799,Telegram,44771,64511 +1724254799,DNS over HTTPS,4101,12320 +1724254799,__unknown,7886,66 +1724254799,ICMP,4920,0 +1724254799,__unknown,8306,74 +1724254799,__unknown,60598,306793 +1724254799,HTTPS,51997,61855 +1724254799,SSL client,51997,61855 +1724254799,Telegram,51997,61855 +1724254799,__unknown,35904,6484 +1724254799,__unknown,748850,1033906 +1724254799,__unknown,20966,1062 +1724254799,HTTPS,3787,6364 +1724254799,__unknown,856979,13041100 +1724254799,HTTPS,16776,25432 +1724254799,ICMP,1501,0 +1724254799,__unknown,185947,2781088 +1724254799,Google,25439,51708 +1724254799,HTTPS,435951,834436 +1724254799,Apple sites,1404,5519 +1724254799,SSL client,31258,100718 +1724254799,Yandex,4415,43491 +1724254799,ICMP,29236,5106 +1724254799,DNS over HTTPS,7801,19189 +1724254799,__unknown,3546869,34576596 +1724254799,BitTorrent,310,496 +1724254799,DHCPv6,978,0 +1724254799,Google APIs,38887,96195 +1724254799,Google,134142,474679 +1724254799,Google Translate,4638,3505 +1724254799,Android browser,816,732 +1724254799,DNS,20553,0 +1724254799,Firefox,1481,1865 +1724254799,Gmail,5594,9069 +1724254799,HTTP,5130,5310 +1724254799,Microsoft Update,1006,887 +1724254799,NetBIOS-dgm,493,0 +1724254799,NTP,1620,1620 +1724254799,SSL,32418,33514 +1724254799,STUN,5920,5886 +1724254799,VKontakte,8932,21716 +1724254799,Odnoklassniki,2162,6771 +1724254799,HTTPS,927792,5126324 +1724254799,APNS,29161,22216 +1724254799,Mozilla,5485,10765 +1724254799,SSL client,282491,703428 +1724254799,Amazon Web Services,33427,24447 +1724254799,Microsoft CryptoAPI,2833,2713 +1724254799,Apple Maps,4757,36348 +1724254799,Google Play,10814,6433 +1724254799,CloudFlare,2401,11288 +1724254799,ICMP,78982,10508 +1724254799,Telegram,120,834 +1724254799,Google Sign in,6848,16344 +1724254799,DNS over HTTPS,28091,69940 +1724254799,__unknown,6027345,18656429 +1724254799,Bing,9031,15445 +1724254799,BitTorrent,459,515 +1724254799,DHCPv6,163,0 +1724254799,Google APIs,1416,6179 +1724254799,Google Drive,4133,11529 +1724254799,Google,65175,393283 +1724254799,Yahoo!,2651,14171 +1724254799,Android browser,750,666 +1724254799,BitTorrent tracker,459,515 +1724254799,Chrome,2828,2597 +1724254799,DNS,52771,45415 +1724254799,Gmail,14075,28767 +1724254799,Google Calendar,7857,6672 +1724254799,HTTP,102034,106526 +1724254799,Internet Explorer,822,660 +1724254799,iTunes,3113,9792 +1724254799,Launchpad,3200,2480 +1724254799,Microsoft Update,1933,1542 +1724254799,NTP,26040,6540 +1724254799,STUN,524,0 +1724254799,VKontakte,4500,9932 +1724254799,Odnoklassniki,5065,14617 +1724254799,Advanced Packaging Tool,31777,29041 +1724254799,HTTPS,1920610,11518763 +1724254799,Apple sites,4449,16845 +1724254799,iCloud,14200,25517 +1724254799,Mozilla,6931,7424 +1724254799,Avast,382,391 +1724254799,Opera,1897,4714 +1724254799,SSL client,330537,6542313 +1724254799,Box,1404,5023 +1724254799,Amazon Web Services,1139,6568 +1724254799,CloudFront,2254,12892 +1724254799,Taobao,44488,2397652 +1724254799,Ubuntu Update Manager,23689,22177 +1724254799,Microsoft,4787,19474 +1724254799,Mail.Ru,10235,21536 +1724254799,Yandex,76247,3374562 +1724254799,Akamai,7540,18294 +1724254799,Amazon Ads System,3357,8978 +1724254799,Ubuntu,6229,5767 +1724254799,Microsoft CryptoAPI,5111,5544 +1724254799,Microsoft NCSI,865,974 +1724254799,Microsoft WNS,633,7966 +1724254799,Apple Maps,2057,30795 +1724254799,Rubicon Project,2920,9166 +1724254799,Improve Digital,1083,5893 +1724254799,Google Play,3213,2575 +1724254799,Smart AdServer,5586,4075 +1724254799,Office 365,940,2318 +1724254799,SiteScout,4113,6925 +1724254799,ICMP,20034,5226 +1724254799,Telegram,18753,15019 +1724254799,Edge Chromium,6624,19581 +1724254799,Amp,6714,51402 +1724254799,DNS over TLS,8818,35162 +1724254799,DNS over HTTPS,37577,123962 +1724254799,IPv6 No Next Header,196,0 +1724255100,__unknown,119069,730080 +1724255100,Odnoklassniki,16681,29856 +1724255100,HTTPS,106353,157810 +1724255100,SSL client,106353,157810 +1724255100,Telegram,89672,127954 +1724255100,__unknown,9506,5367 +1724255100,HTTPS,94479,38686 +1724255100,SSL client,5337,5101 +1724255100,Yandex,5337,5101 +1724255100,HTTPS,19273,18889 +1724255100,SSL client,8623,12538 +1724255100,Yandex,8623,12538 +1724255100,DNS over HTTPS,84982,176391 +1724255100,HTTPS,15195,509992 +1724255100,__unknown,328,1419 +1724255100,HTTPS,1106900,1838144 +1724255100,SSL client,891608,1696282 +1724255100,Mail.Ru,891608,1696282 +1724255100,__unknown,42820,26854 +1724255100,Windows Live,60994,14005 +1724255100,HTTPS,190007,79088 +1724255100,SSL client,152433,49007 +1724255100,Google Play,91439,35002 +1724255100,ICMP,7954,0 +1724255100,Dropbox,17187,5312 +1724255100,Windows Live,5334,111247 +1724255100,HTTPS,802886,786831 +1724255100,SSL client,39169,119799 +1724255100,Google Play,16648,3240 +1724255100,__unknown,8589,3904 +1724255100,HTTPS,54091,80963 +1724255100,SSL client,21496,18191 +1724255100,Google Play,21496,18191 +1724255100,DNS over HTTPS,5528,15466 +1724255100,__unknown,326258,170132 +1724255100,Dropbox,2351,4100 +1724255100,Google APIs,3775,13020 +1724255100,Google,24420,282078 +1724255100,MSN,4667,6631 +1724255100,Yahoo!,2709,6505 +1724255100,Gmail,7555,10337 +1724255100,Google Analytics,1311,1032 +1724255100,HTTP,1288,1255 +1724255100,iTunes,3917,7043 +1724255100,Microsoft Update,1288,1255 +1724255100,TeamViewer,1509,8838 +1724255100,VKontakte,9581,15958 +1724255100,HTTPS,1146489,54325884 +1724255100,Apple sites,3359,15129 +1724255100,iCloud,42358,180137 +1724255100,SSL client,310605,3592364 +1724255100,Ad Nexus,9955,5021 +1724255100,Microsoft,24181,156045 +1724255100,Mail.Ru,19681,46228 +1724255100,Yandex,23054,30967 +1724255100,GitHub,34175,44308 +1724255100,Microsoft CryptoAPI,1288,1255 +1724255100,Office 365,706,6959 +1724255100,Battle.net site,2258,3741 +1724255100,Telegram,7409,11455 +1724255100,TikTok,84383,2739914 +1724255100,Google Sign in,4700,8373 +1724255100,DNS over HTTPS,1813,7696 +1724255100,__unknown,890389,965131 +1724255100,Apple Update,80484,5366454 +1724255100,Bing,4350,31336 +1724255100,Dropbox,3267,2486 +1724255100,Google APIs,460153,53080 +1724255100,Google,17765,758799 +1724255100,MSN,9555,24852 +1724255100,Yahoo!,2460,5547 +1724255100,Android browser,531,481 +1724255100,DNS,462,995 +1724255100,Gmail,28738,42870 +1724255100,HTTP,4572,6048 +1724255100,iTunes,5957,42922 +1724255100,LiveJournal,22084,179761 +1724255100,YouTube,2445,9776 +1724255100,VKontakte,7454,27798 +1724255100,Advanced Packaging Tool,527,473 +1724255100,IMAPS,42561,94155 +1724255100,HTTPS,2814327,16115629 +1724255100,Apple sites,50665,659601 +1724255100,iCloud,191233,280157 +1724255100,SSL client,1799919,9826885 +1724255100,Ad Nexus,131127,67396 +1724255100,Amazon Web Services,3265,21602 +1724255100,Microsoft,221047,470174 +1724255100,Mail.Ru,175805,265361 +1724255100,Siri,1427,7167 +1724255100,Yandex,136753,347774 +1724255100,GitHub,117201,939564 +1724255100,Ubuntu,820,613 +1724255100,Nvidia,30457,17012 +1724255100,Apple Maps,1781,10119 +1724255100,Google Play,9543,10871 +1724255100,AdGear,2352,8529 +1724255100,Rambler,3687,9728 +1724255100,Office 365,17966,71213 +1724255100,Sharepoint Online,3981,6383 +1724255100,Microsoft Windows Live Services Authentication,8450,22461 +1724255100,Mendeley,12377,6062 +1724255100,Office Mobile,23901,16581 +1724255100,Google Inbox,12430,19496 +1724255100,Zoom,6826,13238 +1724255100,Microsoft Teams,2071,34553 +1724255100,DNS over HTTPS,23047,101519 +1724255100,__unknown,21144,14234 +1724255100,HTTPS,31108,23965 +1724255100,__unknown,171034,50309 +1724255100,__unknown,9288,66 +1724255100,__unknown,19275,766 +1724255100,HTTPS,24757,55861 +1724255100,HTTPS,74700,313456 +1724255100,SSL client,52957,69704 +1724255100,Telegram,52957,69704 +1724255100,__unknown,18943,357 +1724255100,DNS over HTTPS,1055,4585 +1724255100,__unknown,191224,106735 +1724255100,SSL,2840,9116 +1724255100,HTTPS,37325,19888 +1724255100,__unknown,952558,81931663 +1724255100,HTTPS,6711,5803 +1724255100,__unknown,148923,278560 +1724255100,HTTPS,6538,45393 +1724255100,ICMP,10718,10478 +1724255100,__unknown,322424,16485870 +1724255100,Google,9958,18675 +1724255100,SSL,13200,5339 +1724255100,HTTPS,158492,693060 +1724255100,SSL client,9958,18675 +1724255100,ICMP,2142,370 +1724255100,Telegram,815,552 +1724255100,DNS over HTTPS,1283,4779 +1724255100,__unknown,2944438,11311719 +1724255100,Bing,4375,7670 +1724255100,BitTorrent,463,496 +1724255100,Google APIs,45440,47769 +1724255100,Google Drive,14702,33721 +1724255100,Google,239486,266112 +1724255100,BitTorrent tracker,153,0 +1724255100,DNS,21211,0 +1724255100,Google Analytics,15148,22445 +1724255100,HTTP,5252,6015 +1724255100,iTunes,3494,19286 +1724255100,Microsoft Update,1287,1035 +1724255100,NTP,13830,4080 +1724255100,STUN,3992,5150 +1724255100,VKontakte,4045,6396 +1724255100,Odnoklassniki,2108,6711 +1724255100,HTTPS,2474908,9349935 +1724255100,Mozilla,3097,2001 +1724255100,Opera,2594,5120 +1724255100,SSL client,437885,652282 +1724255100,Box,1404,5023 +1724255100,Microsoft,943,7251 +1724255100,Yandex,11116,27979 +1724255100,Atlassian,44137,9668 +1724255100,Microsoft CryptoAPI,4793,5215 +1724255100,Google Play,26252,39838 +1724255100,Google Accounts Authentication,10108,16371 +1724255100,ICMP,46968,11622 +1724255100,Telegram,895,504 +1724255100,Grammarly,4423,15776 +1724255100,Amp,5299,113255 +1724255100,DNS over HTTPS,35357,90187 +1724255100,__unknown,6202292,12662926 +1724255100,Apple Update,1642,4928 +1724255100,BitTorrent,306,0 +1724255100,DHCPv6,978,0 +1724255100,Google APIs,17757,80793 +1724255100,Google,52139,236209 +1724255100,Android browser,750,666 +1724255100,BitTorrent tracker,306,0 +1724255100,Chrome,565,484 +1724255100,DNS,46405,40078 +1724255100,Firefox,9024,11035 +1724255100,HTTP,131061,270669 +1724255100,Launchpad,3200,2480 +1724255100,NTP,11964,2820 +1724255100,SSL,1674,1392 +1724255100,Odnoklassniki,1880,6456 +1724255100,Steam,2093,16830 +1724255100,Advanced Packaging Tool,37590,166532 +1724255100,HTTPS,1551543,5080365 +1724255100,Apple sites,1601,8082 +1724255100,iCloud,5807,41340 +1724255100,SSL client,169415,2870880 +1724255100,Ubuntu Update Manager,28622,158578 +1724255100,Microsoft,573,7966 +1724255100,Mail.Ru,7799,10687 +1724255100,Yandex,52295,2410427 +1724255100,Linux Mint,928,996 +1724255100,Ubuntu,6181,5857 +1724255100,Microsoft CryptoAPI,2302,2381 +1724255100,Microsoft WNS,573,7966 +1724255100,Apple Maps,2164,4838 +1724255100,33Across,3708,2563 +1724255100,Google Play,1804,7898 +1724255100,Smart AdServer,1594,365 +1724255100,Google Hangouts,1674,1392 +1724255100,ICMP,7504,4928 +1724255100,Telegram,14341,44459 +1724255100,Google Sign in,5850,8418 +1724255100,DNS over TLS,12595,52470 +1724255100,DNS over HTTPS,31724,129013 +1724255100,IPv6 No Next Header,196,0 +1724255400,__unknown,1729829,1274564 +1724255400,HTTPS,1520554,2077061 +1724255400,SSL client,1520554,2077061 +1724255400,Yandex,1520554,2077061 +1724255400,HTTPS,27582,26384 +1724255400,HTTPS,4964,8585 +1724255400,SSL client,4964,8585 +1724255400,Yandex,4964,8585 +1724255400,HTTPS,722506,157949 +1724255400,SSL client,718962,149896 +1724255400,Yandex,718962,149896 +1724255400,HTTPS,28859,36626 +1724255400,SSL client,9181,6197 +1724255400,Google Play,9181,6197 +1724255400,Dropbox,273943,48362 +1724255400,Google,78019,83144 +1724255400,Gmail,82007,125851 +1724255400,HTTPS,539855,339230 +1724255400,SSL client,532612,331479 +1724255400,Yandex,1852,6544 +1724255400,Dropbox Download,42567,5662 +1724255400,Telegram,54224,61916 +1724255400,__unknown,3021,15950 +1724255400,HTTP,3583,32907 +1724255400,SSL,669366,854824 +1724255400,HTTPS,154935,816396 +1724255400,Dictionary.com,5701,10358 +1724255400,SSL client,116314,728484 +1724255400,Yandex,7880,14469 +1724255400,Google Play,22741,10339 +1724255400,Undertone,33898,11394 +1724255400,TikTok,24533,661861 +1724255400,Google Meet,21561,20063 +1724255400,__unknown,72332,45676 +1724255400,Dropbox,5188,8164 +1724255400,Google APIs,16020,34303 +1724255400,Google,23716,557848 +1724255400,Adobe Software,4256,6121 +1724255400,Chrome,6782,184405 +1724255400,HTTP,8988,187471 +1724255400,SSL,31636,7274 +1724255400,YouTube,11525,41837 +1724255400,TeamViewer,1173,7119 +1724255400,HTTPS,1138201,4454921 +1724255400,APNS,31636,7274 +1724255400,Apple sites,3279,16100 +1724255400,SSL client,244710,3084198 +1724255400,Ad Nexus,10024,2147 +1724255400,Microsoft,23992,60692 +1724255400,VeriSign,943,976 +1724255400,Mail.Ru,38079,98890 +1724255400,Disqus,7227,43114 +1724255400,Yandex,25906,1985222 +1724255400,Aliexpress,9747,105551 +1724255400,GitHub,1041,8443 +1724255400,Nvidia,7428,15067 +1724255400,Microsoft CryptoAPI,943,976 +1724255400,Alibaba,3998,14942 +1724255400,Google Play,3229,9468 +1724255400,Rambler,6614,7202 +1724255400,Office 365,4306,45819 +1724255400,Battle.net site,3696,4161 +1724255400,Xiaomi,2630,4714 +1724255400,Zoom,3215,8096 +1724255400,__unknown,764982,2456493 +1724255400,Apple Update,1797,5148 +1724255400,Bing,4546,10240 +1724255400,Dropbox,71166,237979 +1724255400,Google APIs,25560,184225 +1724255400,Google,70829,371172 +1724255400,MSN,13441,27139 +1724255400,Adobe Software,2322,5982 +1724255400,Android browser,908,2618 +1724255400,Chrome,14722,107813 +1724255400,Gmail,23532,31826 +1724255400,HTTP,50833,134139 +1724255400,iTunes,9485,41682 +1724255400,Launchpad,574,496 +1724255400,LiveJournal,15755,166348 +1724255400,Microsoft Update,4319,8850 +1724255400,Skype,14321,23472 +1724255400,SSL,53354,25180 +1724255400,YouTube,13696,45503 +1724255400,VKontakte,16337,35121 +1724255400,Advanced Packaging Tool,2037,2160 +1724255400,IMAPS,35146,75911 +1724255400,HTTPS,3738641,43611566 +1724255400,APNS,45445,11921 +1724255400,Apple sites,43285,237297 +1724255400,iCloud,69166,265914 +1724255400,Mozilla,5120,22216 +1724255400,Avast,1199,4454 +1724255400,SSL client,2197894,17995418 +1724255400,Ad Nexus,59840,31360 +1724255400,Ubuntu Update Manager,936,1131 +1724255400,Microsoft,266737,447098 +1724255400,Chartbeat,4518,8862 +1724255400,Mail.Ru,274785,526901 +1724255400,Yandex,748109,14287661 +1724255400,GitHub,189352,590093 +1724255400,Ubuntu,886,673 +1724255400,Microsoft CryptoAPI,4335,7504 +1724255400,Apple Maps,1668,5050 +1724255400,Google Play,17202,27799 +1724255400,Rambler,22064,25466 +1724255400,Office 365,22756,106266 +1724255400,Dropbox Download,39817,1678 +1724255400,Microsoft Windows Live Services Authentication,47739,115755 +1724255400,Google Hangouts,1540,1392 +1724255400,Weborama,2652,6213 +1724255400,Office Mobile,48001,42530 +1724255400,GISMETEO,908,2618 +1724255400,DNS over TLS,1013,4870 +1724255400,Microsoft Teams,2923,7530 +1724255400,DNS over HTTPS,43996,122527 +1724255400,__unknown,47199,11539 +1724255400,__unknown,1930,470 +1724255400,ICMP,15960,16200 +1724255400,__unknown,100170,68123 +1724255400,HTTPS,52163,22240 +1724255400,__unknown,519184,3484034 +1724255400,__unknown,290,294 +1724255400,HTTPS,6126,11381 +1724255400,ICMP,5094,0 +1724255400,HTTP,7129,13540 +1724255400,HTTPS,46547,67543 +1724255400,Telegram,7129,13540 +1724255400,__unknown,563783,1160825 +1724255400,HTTPS,66744,525865 +1724255400,ICMP,444,296 +1724255400,CoAP,2940,2160 +1724255400,__unknown,493351,1563954 +1724255400,Google,31767,157203 +1724255400,SSL,9402,4787 +1724255400,HTTPS,98444,649978 +1724255400,APNS,9402,4787 +1724255400,SSL client,44567,194654 +1724255400,ICMP,20961,5180 +1724255400,Font Awesome,3398,32664 +1724255400,DNS over HTTPS,3402,5813 +1724255400,__unknown,2783297,12312918 +1724255400,BitTorrent,310,496 +1724255400,DHCPv6,163,0 +1724255400,Google APIs,18877,40354 +1724255400,Google Drive,5970,9792 +1724255400,Google,155369,348778 +1724255400,Android browser,684,600 +1724255400,DNS,17320,0 +1724255400,Gmail,50117,61958 +1724255400,HTTP,6520,8858 +1724255400,Microsoft Update,646,506 +1724255400,NetBIOS-dgm,243,0 +1724255400,NTP,12840,3090 +1724255400,STUN,2844,2692 +1724255400,VKontakte,6281,13630 +1724255400,Odnoklassniki,4894,14712 +1724255400,HTTPS,716662,2484787 +1724255400,Mozilla,9718,4719 +1724255400,SSL client,469161,762777 +1724255400,Box,1404,5023 +1724255400,Atlassian,122540,21403 +1724255400,Microsoft CryptoAPI,2803,4959 +1724255400,CloudFlare,84950,223108 +1724255400,ICMP,112090,12216 +1724255400,Telegram,1972,1277 +1724255400,ScienceDirect,4740,6623 +1724255400,Grammarly,2053,7668 +1724255400,DNS over HTTPS,11342,31408 +1724255400,IPv6 No Next Header,196,0 +1724255400,__unknown,4794583,25266144 +1724255400,BITS,3666,6360 +1724255400,BitTorrent,459,515 +1724255400,DHCPv6,978,0 +1724255400,Google APIs,19368,62391 +1724255400,Google,61446,174831 +1724255400,BitTorrent tracker,459,515 +1724255400,Chrome,2759,2420 +1724255400,DNS,44138,40077 +1724255400,Gmail,6574,7757 +1724255400,Google Analytics,5997,13304 +1724255400,Google Calendar,7803,6773 +1724255400,HTTP,157843,1195985 +1724255400,Launchpad,3200,2480 +1724255400,Microsoft Update,2966,2356 +1724255400,NetBIOS-dgm,250,0 +1724255400,NTP,900,720 +1724255400,STUN,1148,1036 +1724255400,YouTube,6601,9742 +1724255400,VKontakte,7420,22113 +1724255400,Odnoklassniki,3660,8629 +1724255400,Advanced Packaging Tool,29304,27343 +1724255400,HTTPS,566488,2907633 +1724255400,Apple sites,3805,184560 +1724255400,Mozilla,6362,14204 +1724255400,Avast,937,4464 +1724255400,SSL client,174572,667325 +1724255400,Amazon Web Services,1626,8105 +1724255400,CloudFront,2690,40800 +1724255400,Ubuntu Update Manager,23073,22072 +1724255400,Microsoft,33459,1069491 +1724255400,VeriSign,1324,4282 +1724255400,Mail.Ru,6002,10733 +1724255400,Yandex,6992,27403 +1724255400,Amazon Ads System,7424,10339 +1724255400,Ubuntu,4731,4631 +1724255400,Microsoft CryptoAPI,20522,27434 +1724255400,Microsoft NCSI,454,487 +1724255400,Microsoft WNS,573,7943 +1724255400,Viber,1911,2622 +1724255400,Google Play,2708,2687 +1724255400,WeChat,4592,6564 +1724255400,ICMP,21753,3404 +1724255400,Weborama,5014,12735 +1724255400,Telegram,7812,23596 +1724255400,Edge Chromium,2695,6289 +1724255400,DNS over TLS,9843,42933 +1724255400,DNS over HTTPS,30403,105104 +1724255700,__unknown,677165,404265 +1724255700,HTTPS,7482,11590 +1724255700,SSL client,7482,11590 +1724255700,Mail.Ru,7482,11590 +1724255700,HTTPS,4849,9216 +1724255700,Google,280226,224539 +1724255700,HTTPS,1068088,602398 +1724255700,SSL client,280226,224539 +1724255700,HTTPS,1249508,727230 +1724255700,SSL client,779263,388429 +1724255700,Yandex,779263,388429 +1724255700,Dropbox,116207,22280 +1724255700,HTTPS,359040,43306 +1724255700,SSL client,293357,34455 +1724255700,Google Play,20626,2878 +1724255700,Dropbox Download,156524,9297 +1724255700,__unknown,403442604,432617122 +1724255700,Windows Live,35278,11232 +1724255700,HTTP,625,2838 +1724255700,HTTPS,808077,27680963 +1724255700,SSL client,205716,48637 +1724255700,DNS over HTTPS,4226,11704 +1724255700,Tableau,170438,37405 +1724255700,__unknown,214182,5150396 +1724255700,Bing,6989,11523 +1724255700,Dropbox,9234,1963 +1724255700,Google APIs,4164452,192226 +1724255700,Google,44062,63264 +1724255700,Gmail,14828,14433 +1724255700,Google Analytics,6525,6490 +1724255700,HTTP,499,402 +1724255700,iTunes,3333,15582 +1724255700,SSL,2704,8291 +1724255700,HTTPS,5525334,16740391 +1724255700,Apple sites,3786,13027 +1724255700,iCloud,21413,138939 +1724255700,Mozilla,11644,64601 +1724255700,Avast,2376,18419 +1724255700,SSL client,5067557,12608842 +1724255700,Ad Nexus,7985,5095 +1724255700,Microsoft,26763,161856 +1724255700,Mail.Ru,118572,100743 +1724255700,Yandex,517779,11517230 +1724255700,GitHub,5551,8212 +1724255700,Microsoft CryptoAPI,499,402 +1724255700,Google Play,32676,19816 +1724255700,Rambler,42885,202667 +1724255700,Office 365,1433,7262 +1724255700,Google Hangouts,2704,8291 +1724255700,Weborama,4367,7337 +1724255700,Google Sign in,4920,4105 +1724255700,Xiaomi,7089,9835 +1724255700,DNS over HTTPS,11701,37172 +1724255700,__unknown,3963898,1347298 +1724255700,Bing,10283,54262 +1724255700,BITS,3703,30065 +1724255700,Dropbox,735269,26298 +1724255700,Eset,2122,1252 +1724255700,Google APIs,2018117,96092 +1724255700,Google,272321,4580497 +1724255700,MSN,5560,13407 +1724255700,QQ,2222,6618 +1724255700,Chrome,500,543 +1724255700,Gmail,5909,7489 +1724255700,HTTP,19040,45103 +1724255700,iTunes,3845,36404 +1724255700,LiveJournal,26074,614181 +1724255700,Reddit,5097,23346 +1724255700,SSL,16351,6871 +1724255700,YouTube,3831,91205 +1724255700,TeamViewer,1524,8877 +1724255700,VKontakte,113049,185189 +1724255700,Advanced Packaging Tool,4123,3940 +1724255700,IMAPS,7048,27622 +1724255700,HTTPS,10207773,135252189 +1724255700,WhatsApp,1285,1216 +1724255700,APNS,16351,6871 +1724255700,Apple sites,44929,113802 +1724255700,iCloud,20733,51442 +1724255700,Mozilla,8252,47200 +1724255700,Avast,5669,24978 +1724255700,SSL client,6769299,21778703 +1724255700,Ad Nexus,88798,51679 +1724255700,CloudFront,8472,2960 +1724255700,Ubuntu Update Manager,4123,3940 +1724255700,Microsoft,248032,426254 +1724255700,Mail.Ru,271769,414920 +1724255700,Yandex,2557955,7443262 +1724255700,Aliexpress,6820,105997 +1724255700,Nvidia,25394,12824 +1724255700,Microsoft CryptoAPI,1190,3331 +1724255700,Apple Maps,3754,35556 +1724255700,Google Play,35138,27861 +1724255700,CloudFlare,3606,12396 +1724255700,Office 365,39453,314702 +1724255700,Sharepoint Online,3598,5530 +1724255700,Microsoft Windows Live Services Authentication,19232,48820 +1724255700,Weborama,2049,5339 +1724255700,OneDrive,8035,24083 +1724255700,Office Mobile,9114,8217 +1724255700,Telegram,1248,1965 +1724255700,AnyDesk,2839,2955 +1724255700,TikTok,107716,6768140 +1724255700,Google Inbox,21702,95995 +1724255700,Grammarly,12101,17019 +1724255700,DNS over TLS,989,4770 +1724255700,DNS over HTTPS,25973,95276 +1724255700,__unknown,2730,618 +1724255700,__unknown,111164,230682 +1724255700,__unknown,351873,3507142 +1724255700,Google,191790,98627 +1724255700,HTTPS,191790,98627 +1724255700,SSL client,191790,98627 +1724255700,Telegram,186,120 +1724255700,__unknown,170364841,4550768 +1724255700,HTTPS,35681,35538 +1724255700,__unknown,586929,588535 +1724255700,Google APIs,24042,141034 +1724255700,Chrome,1678,4042 +1724255700,HTTP,5526,12035 +1724255700,HTTPS,1057242,326130 +1724255700,SSL client,25589,148290 +1724255700,Microsoft,1547,7256 +1724255700,Telegram,3848,7993 +1724255700,__unknown,23059,156878 +1724255700,Google Translate,16615,19025 +1724255700,Gmail,28971,19969 +1724255700,SSL,16731,23256 +1724255700,VKontakte,58107,167813 +1724255700,HTTPS,227857,526518 +1724255700,APNS,11656,5302 +1724255700,SSL client,228968,521920 +1724255700,Yandex,97733,52519 +1724255700,New Relic,2170,6862 +1724255700,Google Hangouts,1856,8375 +1724255700,ICMP,9662,814 +1724255700,ResearchGate,5408,232067 +1724255700,DNS over HTTPS,134403,302895 +1724255700,__unknown,1862130,16873915 +1724255700,BitTorrent,248,496 +1724255700,DHCPv6,163,0 +1724255700,Google APIs,10820,64399 +1724255700,Google Drive,3208,9941 +1724255700,Google,75982,199879 +1724255700,QQ,1870,9846 +1724255700,Android browser,456,333 +1724255700,Chrome,1395,929 +1724255700,DNS,16206,0 +1724255700,Gmail,15732,66729 +1724255700,HTTP,6987,7049 +1724255700,Microsoft Update,646,506 +1724255700,NTP,23434,5550 +1724255700,STUN,4092,6580 +1724255700,YouTube,1337,7158 +1724255700,VKontakte,13939,748706 +1724255700,Odnoklassniki,2102,6755 +1724255700,HTTPS,435243,2687141 +1724255700,Mozilla,1988,4611 +1724255700,SSL client,148191,1172464 +1724255700,Box,1404,5023 +1724255700,Microsoft CryptoAPI,2020,1709 +1724255700,Google Play,10629,24816 +1724255700,CloudFlare,1810,4935 +1724255700,Google Accounts Authentication,4466,12255 +1724255700,ICMP,67167,9962 +1724255700,ICMP for IPv6,70,0 +1724255700,Firebase Crashlytics,2078,6605 +1724255700,QUIC,39800,952955 +1724255700,GISMETEO,1282,1139 +1724255700,DNS over HTTPS,13188,32947 +1724255700,IPv6 No Next Header,98,0 +1724255700,__unknown,6016717,14066921 +1724255700,Apple Update,126607,5257768 +1724255700,BitTorrent,306,198 +1724255700,Google APIs,11296,20794 +1724255700,Google,69853,121528 +1724255700,BitTorrent tracker,306,198 +1724255700,Chrome,3795,2334 +1724255700,DNS,43845,46790 +1724255700,Google Calendar,5920,4638 +1724255700,HTTP,102446,237097 +1724255700,Launchpad,3200,2480 +1724255700,Microsoft Update,5539,4951 +1724255700,NTP,720,720 +1724255700,SSL,1750,2242 +1724255700,STUN,2132,1776 +1724255700,VKontakte,3578,5819 +1724255700,Advanced Packaging Tool,39057,163740 +1724255700,HTTPS,901859,14376325 +1724255700,Apple sites,5947,7742 +1724255700,Mozilla,2503,5503 +1724255700,SSL client,508987,11857211 +1724255700,Box,1404,5023 +1724255700,Amazon Web Services,1133,6456 +1724255700,Ubuntu Update Manager,29558,155768 +1724255700,VeriSign,566,2141 +1724255700,Mail.Ru,5140,10337 +1724255700,Yandex,253547,6364377 +1724255700,Ubuntu,8490,7785 +1724255700,Microsoft CryptoAPI,11770,11977 +1724255700,Microsoft NCSI,454,487 +1724255700,Office 365,1634,498 +1724255700,Google Hangouts,1750,2242 +1724255700,ICMP,5689,3792 +1724255700,Weborama,2082,5558 +1724255700,Telegram,669,186 +1724255700,Google Sign in,6369,4595 +1724255700,Edge Chromium,7798,23598 +1724255700,DNS over TLS,8141,33891 +1724255700,DNS over HTTPS,39201,140327 +1724255700,IPv6 No Next Header,98,0 +1724256000,__unknown,20320,22088 +1724256000,HTTPS,296586,1321711 +1724256000,SSL client,296586,1321711 +1724256000,Mail.Ru,296586,1321711 +1724256000,HTTPS,319583,151117 +1724256000,SSL client,319583,151117 +1724256000,Yandex,319583,151117 +1724256000,HTTPS,5906,9892 +1724256000,SSL client,5906,9892 +1724256000,Yandex,5906,9892 +1724256000,HTTPS,1407286,1327550 +1724256000,HTTPS,4159,3381 +1724256000,__unknown,330766,67519 +1724256000,Dropbox,17373,5545 +1724256000,HTTPS,17373,5545 +1724256000,SSL client,17373,5545 +1724256000,Google APIs,2027,7201 +1724256000,Google,5009,10749 +1724256000,HTTPS,144382,375388 +1724256000,SSL client,65407,67699 +1724256000,Yandex,34541,17734 +1724256000,GitHub,22384,26102 +1724256000,Google Play,1446,5913 +1724256000,__unknown,781999,3157370 +1724256000,Dropbox,3350,3033 +1724256000,Google APIs,1617,29462 +1724256000,Google,15595,147141 +1724256000,MSN,1145,6316 +1724256000,Android browser,3387,12165 +1724256000,HTTP,3973,12986 +1724256000,iTunes,3809,5444 +1724256000,Microsoft Update,586,821 +1724256000,Skype,2973,9815 +1724256000,HTTPS,1190176,13918944 +1724256000,Apple sites,8586,11174 +1724256000,Mozilla,2314,1698 +1724256000,Avast,1254,9254 +1724256000,SSL client,609647,1254807 +1724256000,Microsoft,24533,49474 +1724256000,NIH,1522,7628 +1724256000,Mail.Ru,30565,102178 +1724256000,Yandex,484636,725725 +1724256000,Intel,1200,4768 +1724256000,Microsoft CryptoAPI,586,821 +1724256000,Sharepoint Online,3618,8539 +1724256000,TikTok,22930,133158 +1724256000,GISMETEO,3387,12165 +1724256000,DNS over HTTPS,7350,23423 +1724256000,__unknown,927924,7843938 +1724256000,Bing,12450,15810 +1724256000,Dropbox,3856,8804 +1724256000,Google APIs,12810,23279 +1724256000,Google,17873,354017 +1724256000,MSN,4194,4556 +1724256000,QQ,23752,48000 +1724256000,Dell,1051,4365 +1724256000,Gmail,48742,302830 +1724256000,HTTP,9634,11071 +1724256000,iTunes,2898,5429 +1724256000,Microsoft Update,1587,1897 +1724256000,YouTube,7384,12066 +1724256000,Advanced Packaging Tool,1621,1430 +1724256000,Windows Update,1587,1897 +1724256000,IMAPS,50091,315017 +1724256000,HTTPS,1735647,12907813 +1724256000,WhatsApp,8284,105927 +1724256000,Apple sites,31955,53380 +1724256000,iCloud,62191,169969 +1724256000,Mozilla,2254,1637 +1724256000,SSL client,958458,8090080 +1724256000,Ad Nexus,35002,36177 +1724256000,CloudFront,4148,55520 +1724256000,Ubuntu Update Manager,1621,1430 +1724256000,Microsoft,134792,281882 +1724256000,Mail.Ru,153773,203109 +1724256000,Yandex,309076,6307815 +1724256000,Microsoft CryptoAPI,461,1446 +1724256000,Microsoft NCSI,514,427 +1724256000,Google Play,3656,8914 +1724256000,Rambler,3927,7929 +1724256000,Office 365,25644,74820 +1724256000,Sharepoint Online,986,5948 +1724256000,AdRoll,3370,6973 +1724256000,Microsoft Windows Live Services Authentication,21057,55247 +1724256000,Weborama,4028,7189 +1724256000,Office Mobile,14241,8947 +1724256000,Telegram,6751,49598 +1724256000,Xiaomi,1957,4926 +1724256000,Google Inbox,6199,9610 +1724256000,Edge Chromium,467,1364 +1724256000,DNS over HTTPS,20629,71346 +1724256000,DeepL Translator,3703,7247 +1724256000,__unknown,252707,347625 +1724256000,__unknown,211030,181516 +1724256000,__unknown,188,229 +1724256000,HTTPS,200444,590481 +1724256000,DNS over HTTPS,11547,30768 +1724256000,__unknown,92801,88763 +1724256000,HTTPS,22070,35282 +1724256000,SSL client,22070,35282 +1724256000,Microsoft,6571,9847 +1724256000,Yandex,15499,25435 +1724256000,__unknown,68535,69340 +1724256000,HTTP,482,408 +1724256000,HTTPS,48885,40118 +1724256000,__unknown,123654,3389510 +1724256000,Google APIs,32602,88097 +1724256000,Google Analytics,58911,24704 +1724256000,HTTP,2413,3313 +1724256000,HTTPS,210229,2215693 +1724256000,SSL client,91513,112801 +1724256000,ICMP,9344,3404 +1724256000,Telegram,3867,4275 +1724256000,__unknown,3723081,10700658 +1724256000,BitTorrent,310,496 +1724256000,Google APIs,11292,29445 +1724256000,Google Drive,9522,11130 +1724256000,Google,65984,183241 +1724256000,Google Translate,4289,10507 +1724256000,DNS,20252,0 +1724256000,Firefox,1353,1602 +1724256000,Gmail,23753,64548 +1724256000,HTTP,4028,5918 +1724256000,NTP,630,630 +1724256000,STUN,3472,4758 +1724256000,Odnoklassniki,3950,7876 +1724256000,HTTPS,435165,1193535 +1724256000,Mozilla,6348,4047 +1724256000,SSL client,211802,374374 +1724256000,Box,1404,5023 +1724256000,Yandex,2455,34852 +1724256000,Microsoft Azure,72099,9708 +1724256000,Microsoft CryptoAPI,1188,2184 +1724256000,Google Play,4323,9769 +1724256000,ICMP,37089,11744 +1724256000,Telegram,853,564 +1724256000,Google Sign in,6383,4228 +1724256000,DNS over HTTPS,33680,86931 +1724256000,IPv6 No Next Header,196,0 +1724256000,__unknown,2726845,9443440 +1724256000,BITS,8281,176930 +1724256000,BitTorrent,1389,854 +1724256000,DHCPv6,1141,0 +1724256000,Google APIs,11446,18247 +1724256000,Google,46744,74574 +1724256000,MSN,577,501 +1724256000,BitTorrent tracker,459,854 +1724256000,Chrome,1905,1518 +1724256000,DNS,38299,44341 +1724256000,Firefox,2466,3084 +1724256000,Gmail,6335,7987 +1724256000,HTTP,111963,373603 +1724256000,iTunes,853,5875 +1724256000,Launchpad,3200,2480 +1724256000,Microsoft Update,1283,1016 +1724256000,NetBIOS-dgm,243,0 +1724256000,NTP,1530,1530 +1724256000,SSL,2153,12153 +1724256000,STUN,12498,1924 +1724256000,Odnoklassniki,1851,1190 +1724256000,Steam,6637,103394 +1724256000,Advanced Packaging Tool,29811,27320 +1724256000,HTTPS,439430,4764804 +1724256000,Apple sites,1733,5744 +1724256000,iCloud,11060,26265 +1724256000,Mozilla,5149,6257 +1724256000,Avast,382,391 +1724256000,SSL client,230077,3621080 +1724256000,Box,1404,4963 +1724256000,CloudFront,12931,312151 +1724256000,Ubuntu Update Manager,21088,19797 +1724256000,Microsoft,8281,176930 +1724256000,Mail.Ru,1084,5684 +1724256000,Yandex,97458,3062797 +1724256000,Ubuntu,7355,6887 +1724256000,Microsoft CryptoAPI,5386,4614 +1724256000,Microsoft NCSI,531,487 +1724256000,Microsoft WNS,577,501 +1724256000,Google Play,9968,14940 +1724256000,CloudFlare,2780,8642 +1724256000,Google Hangouts,1121,7913 +1724256000,ICMP,6550,3626 +1724256000,ICMP for IPv6,140,0 +1724256000,Telegram,17774,83280 +1724256000,Edge Chromium,5564,17501 +1724256000,DNS over TLS,3237,14312 +1724256000,DNS over HTTPS,38042,133814 +1724256300,__unknown,85856,104649 +1724256300,HTTPS,42747,18994 +1724256300,SSL client,42747,18994 +1724256300,Yandex,42747,18994 +1724256300,Google,2184554,822798 +1724256300,HTTPS,2615779,1287835 +1724256300,SSL client,2184554,822798 +1724256300,HTTPS,225779,41671 +1724256300,SSL client,225779,41671 +1724256300,Yandex,225779,41671 +1724256300,HTTPS,11349,12286 +1724256300,SSL client,11349,12286 +1724256300,Mail.Ru,11349,12286 +1724256300,HTTPS,1620068,1536401 +1724256300,SSL client,52809,63946 +1724256300,Telegram,52809,63946 +1724256300,SSL,3759,10574 +1724256300,SSL client,3759,10574 +1724256300,Google Hangouts,3759,10574 +1724256300,__unknown,1608,0 +1724256300,HTTPS,441662,342111 +1724256300,SSL client,161646,247019 +1724256300,Yandex,51393,36026 +1724256300,Lijit,110253,210993 +1724256300,__unknown,15315,17355 +1724256300,HTTPS,276074,259983 +1724256300,SSL client,4376,7389 +1724256300,Microsoft,4376,7389 +1724256300,__unknown,69892,56496 +1724256300,Dropbox,600538,71554 +1724256300,Google APIs,8218,31064 +1724256300,HTTPS,1576768,250370 +1724256300,SSL client,1565003,216313 +1724256300,Undertone,38170,11379 +1724256300,Dropbox Download,865551,38027 +1724256300,Telegram,52526,64289 +1724256300,__unknown,55174,55222 +1724256300,Google,4121,9702 +1724256300,McAfee,2636,9653 +1724256300,Adobe Software,71602,98776 +1724256300,HTTPS,910812,23422444 +1724256300,SSL client,142850,205088 +1724256300,Yandex,4701,10376 +1724256300,Google Play,20064,18294 +1724256300,Yandex Market,39726,58287 +1724256300,Telegram,6581,11004 +1724256300,__unknown,132259,720063 +1724256300,Dropbox,1653,1165 +1724256300,Google,11921,49252 +1724256300,MSN,3560,3486 +1724256300,Gmail,6130,5026 +1724256300,Google Analytics,16237,11164 +1724256300,iTunes,5429,46724 +1724256300,TeamViewer,1517,8778 +1724256300,VKontakte,4996,15519 +1724256300,TwitchTV,105042,11736 +1724256300,HTTPS,574451,11079036 +1724256300,SSL client,248580,540107 +1724256300,Microsoft,28175,261942 +1724256300,Mail.Ru,43319,30585 +1724256300,Yandex,10457,14063 +1724256300,Office 365,7952,76754 +1724256300,Battle.net site,2192,3913 +1724256300,DNS over HTTPS,5825,15512 +1724256300,__unknown,966517,1246759 +1724256300,Apple Update,1882,4898 +1724256300,Bing,8161,11755 +1724256300,Dropbox,31061,33719 +1724256300,Google APIs,9864,29635 +1724256300,Google,3178484,1676900 +1724256300,MSN,7859,14948 +1724256300,Yahoo!,3097,7354 +1724256300,Android browser,2851,911 +1724256300,Gmail,30871,54083 +1724256300,HTTP,54115,112529 +1724256300,Internet Explorer,548,1068 +1724256300,Microsoft Update,919,766 +1724256300,YouTube,17973,10584 +1724256300,VKontakte,1538,5772 +1724256300,Advanced Packaging Tool,3102,3178 +1724256300,IMAPS,42609,113020 +1724256300,HTTPS,5455183,11822816 +1724256300,WhatsApp,2615,3859 +1724256300,Apple sites,21944,85428 +1724256300,iCloud,80551,139400 +1724256300,Mozilla,5199,15179 +1724256300,Avast,1944,4342 +1724256300,SSL client,4719452,5366052 +1724256300,Ad Nexus,43796,26766 +1724256300,Ubuntu Update Manager,2575,2706 +1724256300,Microsoft,306058,379605 +1724256300,Mail.Ru,211459,376152 +1724256300,Yandex,175814,258562 +1724256300,GitHub,441912,1879222 +1724256300,Ubuntu,527,472 +1724256300,Splunk,7223,7736 +1724256300,Intel,1140,4769 +1724256300,Nvidia,33397,77949 +1724256300,Microsoft CryptoAPI,2859,4853 +1724256300,Microsoft NCSI,471,126 +1724256300,Apple Maps,1800,10596 +1724256300,Google Play,2120,8945 +1724256300,AdGear,4336,15260 +1724256300,Exchange Online,4680,29095 +1724256300,Office 365,13829,35681 +1724256300,Microsoft Windows Live Services Authentication,47395,128598 +1724256300,Weborama,3251,5150 +1724256300,Gmail attachment,1816,11216 +1724256300,Office Mobile,8706,7936 +1724256300,Telegram,4861,17456 +1724256300,Xiaomi,2654,5187 +1724256300,Stripe,17090,14286 +1724256300,DNS over HTTPS,15016,59831 +1724256300,_err_4655,7173,7565 +1724256300,__unknown,100568,76992 +1724256300,Google,422250,328563 +1724256300,HTTPS,422250,328563 +1724256300,SSL client,422250,328563 +1724256300,__unknown,310888,15654 +1724256300,__unknown,84115,65198 +1724256300,SSL,2842,9188 +1724256300,HTTPS,61737,44817 +1724256300,Apple Maps,2714,7161 +1724256300,__unknown,6833,34415 +1724256300,HTTP,1989,1356 +1724256300,HTTPS,61457,126194 +1724256300,ICMP,18180,17940 +1724256300,__unknown,105274,4451794 +1724256300,Google,3947,10297 +1724256300,HTTP,1022,1080 +1724256300,HTTPS,88559,374527 +1724256300,SSL client,19994,26574 +1724256300,Google Accounts Authentication,16047,16277 +1724256300,ICMP,7200,222 +1724256300,__unknown,1467872,2658935 +1724256300,BitTorrent,1612,496 +1724256300,Google APIs,15699,34756 +1724256300,Google Drive,7467,9969 +1724256300,Google,104775,110150 +1724256300,Google Translate,4794,3661 +1724256300,Kaspersky,548,541 +1724256300,Android browser,1231,859 +1724256300,DNS,16042,0 +1724256300,Firefox,1421,1854 +1724256300,HTTP,5444,15851 +1724256300,NetBIOS-dgm,250,0 +1724256300,NTP,14100,4350 +1724256300,STUN,5332,7984 +1724256300,VKontakte,3660,5228 +1724256300,Odnoklassniki,2162,6771 +1724256300,HTTPS,433100,2057070 +1724256300,SSL client,235995,792478 +1724256300,Box,1404,5023 +1724256300,Microsoft,969,11057 +1724256300,Mail.Ru,2563,5051 +1724256300,Yandex,12599,458438 +1724256300,Microsoft CryptoAPI,816,740 +1724256300,Microsoft WNS,969,11057 +1724256300,Google Play,59263,23796 +1724256300,Office 365,7452,89170 +1724256300,ICMP,97111,11026 +1724256300,Telegram,2558,1552 +1724256300,DNS over HTTPS,30504,89381 +1724256300,IPv6 No Next Header,196,0 +1724256300,__unknown,2408466,4313256 +1724256300,BITS,750,2620 +1724256300,BitTorrent,1980,198 +1724256300,DHCPv6,978,0 +1724256300,Google APIs,6229,10662 +1724256300,Google,42459,72343 +1724256300,QQ,609,942 +1724256300,BitTorrent tracker,306,198 +1724256300,Chrome,1197,1027 +1724256300,DNS,42922,44322 +1724256300,HTTP,120888,160199 +1724256300,iTunes,1032,7609 +1724256300,Launchpad,4622,2554 +1724256300,Microsoft Update,2263,1861 +1724256300,NTP,3060,3060 +1724256300,Skype,981,6722 +1724256300,STUN,2132,1924 +1724256300,Odnoklassniki,2549,7418 +1724256300,Advanced Packaging Tool,33362,28348 +1724256300,HTTPS,538870,3060890 +1724256300,Apple sites,3805,9055 +1724256300,Mozilla,5372,6684 +1724256300,Opera,23137,13225 +1724256300,SSL client,244341,2128631 +1724256300,Taobao,3756,778 +1724256300,Ubuntu Update Manager,24030,22495 +1724256300,Microsoft,573,8029 +1724256300,Mail.Ru,2496,5380 +1724256300,Yandex,164968,1957163 +1724256300,Ubuntu,5985,4678 +1724256300,Microsoft CryptoAPI,7402,6940 +1724256300,Microsoft WNS,573,8029 +1724256300,Apple Maps,2224,4773 +1724256300,Alibaba,3185,14312 +1724256300,WeChat,1208,3914 +1724256300,Garmin,4358,11665 +1724256300,ICMP,5475,2812 +1724256300,Telegram,102396,284343 +1724256300,Edge Chromium,2869,10034 +1724256300,DNS over TLS,7500,28866 +1724256300,DNS over HTTPS,26026,92836 +1724256600,__unknown,4871327,9910750 +1724256600,Telegram,1154131,2949239 +1724256600,HTTPS,92060,117446 +1724256600,DNS over HTTPS,276562,611112 +1724256600,__unknown,24405,39704 +1724256600,__unknown,1244,3176 +1724256600,Google,516759,7554484 +1724256600,HTTPS,516759,7554484 +1724256600,SSL client,516759,7554484 +1724256600,HTTPS,58701,73778 +1724256600,SSL client,51555,64488 +1724256600,Telegram,51555,64488 +1724256600,__unknown,804694,3972432 +1724256600,HTTPS,321716,889431 +1724256600,__unknown,271482,3249563 +1724256600,HTTPS,6346,14974 +1724256600,SSL client,6346,14974 +1724256600,Yandex,6346,14974 +1724256600,__unknown,47156,330 +1724256600,Dropbox,117182,21058 +1724256600,HTTPS,311014,64096 +1724256600,SSL client,269997,29434 +1724256600,Dropbox Download,152815,8376 +1724256600,__unknown,522,4809 +1724256600,VKontakte,46776,40253 +1724256600,HTTPS,172963,406475 +1724256600,SSL client,80420,87896 +1724256600,Microsoft,5970,11302 +1724256600,Yandex,26169,30388 +1724256600,Google Play,1505,5953 +1724256600,__unknown,4350886,4303524 +1724256600,Bing,2508,10284 +1724256600,Dropbox,6702453,60104 +1724256600,Google APIs,27280,55564 +1724256600,Google,89509,3307072 +1724256600,MSN,12093,19220 +1724256600,Adobe Software,2293,156523 +1724256600,HTTP,1042,1441 +1724256600,iTunes,12200,20455 +1724256600,TeamViewer,48597,63233 +1724256600,Odnoklassniki,15317,19658 +1724256600,HTTPS,7514727,11411182 +1724256600,Apple sites,8459,155625 +1724256600,Mozilla,18702,52402 +1724256600,SSL client,7088802,6098370 +1724256600,Microsoft,20910,79174 +1724256600,Mail.Ru,64240,52609 +1724256600,Yandex,84038,2059316 +1724256600,GitHub,9276,10779 +1724256600,Microsoft CryptoAPI,1042,1441 +1724256600,Rambler,6376,20642 +1724256600,Battle.net site,2198,3973 +1724256600,Google Sign in,6319,4579 +1724256600,DNS over HTTPS,8714,29077 +1724256600,Discord,2443,5518 +1724256600,__unknown,1114865,1564769 +1724256600,Dropbox,5249,4552 +1724256600,Google APIs,2640,4971 +1724256600,Google,1567530,1899419 +1724256600,MSN,4955,13747 +1724256600,Android browser,2019,3523 +1724256600,HTTP,10911,13294 +1724256600,Internet Explorer,764,594 +1724256600,iTunes,14631,28717 +1724256600,Launchpad,1214,918 +1724256600,SSL,13089,6921 +1724256600,YouTube,2917,7016 +1724256600,Advanced Packaging Tool,1214,918 +1724256600,IMAPS,6904,27428 +1724256600,HTTPS,12352593,16949346 +1724256600,APNS,11588,5529 +1724256600,Apple sites,34495,237796 +1724256600,iCloud,5223,8610 +1724256600,Mozilla,5327,14900 +1724256600,SSL client,2853714,12338137 +1724256600,CloudFront,2205,1687 +1724256600,Microsoft,269008,436750 +1724256600,NIH,45383,244027 +1724256600,Mail.Ru,262832,360948 +1724256600,Yandex,215857,5580739 +1724256600,GitHub,191846,1203783 +1724256600,Nvidia,8259,21812 +1724256600,Google Play,3263,8239 +1724256600,Rambler,39184,73095 +1724256600,Office 365,70718,2028483 +1724256600,Sharepoint Online,2705,5138 +1724256600,Microsoft Windows Live Services Authentication,56988,95556 +1724256600,Google Hangouts,1501,1392 +1724256600,Office Mobile,12231,9247 +1724256600,Telegram,621,493 +1724256600,GISMETEO,3090,11890 +1724256600,Xiaomi,505,433 +1724256600,Edge Chromium,467,1364 +1724256600,Stripe,6908,7511 +1724256600,DNS over TLS,1271,4836 +1724256600,Microsoft Teams,5968,15054 +1724256600,Apple News,1602,5843 +1724256600,DNS over HTTPS,11722,45976 +1724256600,__unknown,4161,6022 +1724256600,HTTPS,905,5090 +1724256600,HTTPS,44559,69791 +1724256600,SSL client,44559,69791 +1724256600,Telegram,44559,69791 +1724256600,__unknown,1140,24053 +1724256600,HTTPS,94615,40202 +1724256600,__unknown,215,225 +1724256600,SSL,3183,23558 +1724256600,HTTPS,26203,10320 +1724256600,ICMP,7034,0 +1724256600,CoAP,4116,2880 +1724256600,__unknown,360970,320485 +1724256600,HTTPS,39012,24539 +1724256600,Telegram,1206,180 +1724256600,__unknown,36260,47475 +1724256600,Google,19965,21221 +1724256600,HTTP,981,1201 +1724256600,HTTPS,389723,277030 +1724256600,SSL client,56914,45934 +1724256600,Google Play,35157,18568 +1724256600,ICMP,9410,8792 +1724256600,Telegram,91689,112945 +1724256600,DNS over HTTPS,1792,6145 +1724256600,__unknown,3509683,8161634 +1724256600,BitTorrent,682,496 +1724256600,DHCPv6,163,0 +1724256600,Google APIs,77080,413898 +1724256600,Google Drive,14261,30703 +1724256600,Google,52117,338545 +1724256600,Android browser,467,333 +1724256600,DNS,23008,0 +1724256600,Gmail,7034,9814 +1724256600,HTTP,10959,8789 +1724256600,Microsoft Update,1623,1358 +1724256600,NTP,13650,3900 +1724256600,SSL,4660,129313 +1724256600,STUN,1860,2760 +1724256600,HTTPS,404623,2083551 +1724256600,SSL client,242401,1245821 +1724256600,Box,1404,5023 +1724256600,Samsung,772,1985 +1724256600,Taobao,3748,778 +1724256600,Yandex,24507,372234 +1724256600,Amazon Ads System,8529,14894 +1724256600,Microsoft CryptoAPI,4547,3566 +1724256600,Google Play,27010,20358 +1724256600,ICMP,16459,8806 +1724256600,Trello,12528,15881 +1724256600,Google Sign in,10782,12522 +1724256600,DNS over HTTPS,37006,97691 +1724256600,IPv6 No Next Header,294,0 +1724256600,__unknown,1830907,3888878 +1724256600,Google APIs,26135,66821 +1724256600,Google,39936,213594 +1724256600,Google Translate,4506,10426 +1724256600,Android browser,740,769 +1724256600,DNS,35106,34277 +1724256600,Firefox,1478,1667 +1724256600,Gmail,632,4466 +1724256600,Google Calendar,7851,5285 +1724256600,HTTP,123423,168401 +1724256600,Launchpad,3200,2480 +1724256600,Microsoft Update,1287,1290 +1724256600,NTP,1080,990 +1724256600,SSL,1032,4240 +1724256600,STUN,2132,1924 +1724256600,Odnoklassniki,6339,15013 +1724256600,Steam,2331,43750 +1724256600,Advanced Packaging Tool,32466,29365 +1724256600,HTTPS,588717,7309382 +1724256600,Apple sites,5506,23687 +1724256600,iCloud,23711,80986 +1724256600,Avast,764,848 +1724256600,SSL client,206050,3429325 +1724256600,Box,1404,5023 +1724256600,Taobao,740,769 +1724256600,Ubuntu Update Manager,23851,22177 +1724256600,Microsoft,1326,16057 +1724256600,Siri,18298,14053 +1724256600,Yandex,60154,2957675 +1724256600,Ubuntu,7965,7466 +1724256600,Microsoft CryptoAPI,4270,5468 +1724256600,Microsoft WNS,1326,16057 +1724256600,Apple Maps,1806,5446 +1724256600,Google Play,5346,9998 +1724256600,ICMP,4912,3552 +1724256600,Telegram,19335,104037 +1724256600,Google Sign in,1259,5790 +1724256600,Edge Chromium,4109,14054 +1724256600,Grammarly,1963,7294 +1724256600,DNS over TLS,3305,14310 +1724256600,DNS over HTTPS,14405,56139 +1724256600,IPv6 No Next Header,294,0 +1724256900,__unknown,233971,151191 +1724256900,HTTPS,1133201,230611 +1724256900,SSL client,1133201,230611 +1724256900,Yandex,1133201,230611 +1724256900,HTTPS,875570,47452 +1724256900,SSL client,875570,47452 +1724256900,Yandex,875570,47452 +1724256900,HTTPS,43840,30563 +1724256900,SSL,232638,632062 +1724256900,__unknown,28686,10591 +1724256900,HTTPS,39198,16167 +1724256900,__unknown,5485,17710 +1724256900,Windows Live,7849,202386 +1724256900,SSL,107860,907464 +1724256900,HTTPS,154055,359070 +1724256900,SSL client,12450,219961 +1724256900,GitHub,4601,17575 +1724256900,HTTPS,96277,70764 +1724256900,SSL client,33530,62029 +1724256900,Mail.Ru,33530,62029 +1724256900,__unknown,65079,142937 +1724256900,Dropbox,22372,7712 +1724256900,Google,1942287,791090 +1724256900,Skype,5141,85124 +1724256900,HTTPS,3156091,2384309 +1724256900,SSL client,3126981,2365606 +1724256900,Yandex,1106417,355643 +1724256900,Telegram,0,660 +1724256900,Google Sign in,50764,1126037 +1724256900,McAfee,21892,504721 +1724256900,Adobe Software,1808,4500 +1724256900,HTTPS,290269,13444623 +1724256900,SSL client,66477,557098 +1724256900,Yandex,19083,18250 +1724256900,Intel,966,5682 +1724256900,Google Play,22728,23945 +1724256900,DNS over HTTPS,1585,6583 +1724256900,__unknown,66707,22164 +1724256900,Dropbox,2226,4100 +1724256900,Google APIs,9117,40403 +1724256900,Google Drive,2730,1541 +1724256900,Google,3109,12955 +1724256900,Windows Live,14019,8134 +1724256900,HTTP,580,447 +1724256900,Microsoft Update,580,447 +1724256900,SSL,16174,8511 +1724256900,TeamViewer,1508,8838 +1724256900,HTTPS,1588023,2231676 +1724256900,APNS,16174,8511 +1724256900,Mozilla,5989,15291 +1724256900,SSL client,704589,518083 +1724256900,Microsoft,34641,179762 +1724256900,Mail.Ru,11944,17388 +1724256900,Yandex,13322,26777 +1724256900,Nvidia,19374,11827 +1724256900,Microsoft CryptoAPI,580,447 +1724256900,Google Play,553195,157874 +1724256900,Rambler,3927,4242 +1724256900,Office 365,6090,9877 +1724256900,Stripe,5424,5535 +1724256900,DNS over HTTPS,2996,9078 +1724256900,Lenovo,1800,5028 +1724256900,__unknown,1165568,1857274 +1724256900,Bing,9130,12748 +1724256900,Google APIs,4341,9339 +1724256900,Google,148010,156861 +1724256900,Gmail,30475,44112 +1724256900,HTTP,103140,5571203 +1724256900,iTunes,4867,15445 +1724256900,Microsoft Update,2070,5433 +1724256900,YouTube,32641,932459 +1724256900,VKontakte,1936,4467 +1724256900,TwitchTV,20316,7747 +1724256900,Advanced Packaging Tool,4166,142942 +1724256900,IMAPS,48352,135934 +1724256900,HTTPS,2836663,24484715 +1724256900,WhatsApp,7413,9391 +1724256900,Apple sites,4102,64007 +1724256900,iCloud,3912,9396 +1724256900,Mozilla,6857,9615 +1724256900,Avast,6869,26987 +1724256900,Opera,1745,4429 +1724256900,SSL client,1905121,18050097 +1724256900,Ubuntu Update Manager,1214,1193 +1724256900,Microsoft,71461,97255 +1724256900,NIH,32185,50454 +1724256900,Mail.Ru,246121,378020 +1724256900,Yandex,598651,14089228 +1724256900,GitHub,492970,1860939 +1724256900,Nvidia,26011,25080 +1724256900,Microsoft CryptoAPI,1372,4815 +1724256900,Apple Maps,5683,25106 +1724256900,Rambler,23372,15240 +1724256900,Office 365,5615,16367 +1724256900,Microsoft Windows Live Services Authentication,49455,110502 +1724256900,Weborama,11382,12231 +1724256900,Mendeley,12479,6123 +1724256900,Telegram,95467,3808775 +1724256900,Sberbank of Russia,37075,42313 +1724256900,GISMETEO,1939,2901 +1724256900,Xiaomi,1846,4788 +1724256900,Google Inbox,5010,29233 +1724256900,Edge Chromium,1461,5376 +1724256900,Grammarly,12580,9676 +1724256900,DNS over HTTPS,14163,56088 +1724256900,_err_4655,841,605 +1724256900,Google,20112,19729 +1724256900,HTTPS,73260,89742 +1724256900,SSL client,73260,89742 +1724256900,Telegram,53148,70013 +1724256900,__unknown,102318,95023 +1724256900,DNS over HTTPS,414,222 +1724256900,VKontakte,924919,1705447 +1724256900,HTTPS,1037447,1802000 +1724256900,SSL client,978264,1772141 +1724256900,Telegram,53345,66694 +1724256900,__unknown,38424,35721 +1724256900,Google,89361,53079 +1724256900,HTTPS,89361,53079 +1724256900,SSL client,89361,53079 +1724256900,__unknown,118264,644875 +1724256900,Google,373949,171374 +1724256900,HTTPS,407678,348367 +1724256900,SSL client,373949,171374 +1724256900,ICMP,2270,222 +1724256900,Telegram,2266,1057 +1724256900,DNS over HTTPS,6072,15280 +1724256900,__unknown,918992,3836673 +1724256900,BitTorrent,868,496 +1724256900,Google APIs,4405,14878 +1724256900,Google Drive,9314,11196 +1724256900,Google,152753,141182 +1724256900,Google Translate,4446,10523 +1724256900,DNS,17008,0 +1724256900,Gmail,6440,8302 +1724256900,HTTP,6411,7849 +1724256900,Microsoft Update,701,645 +1724256900,NetBIOS-dgm,243,0 +1724256900,NTP,12346,3000 +1724256900,SSL,10834,6380 +1724256900,HTTPS,321931,1061814 +1724256900,APNS,10834,6380 +1724256900,Mozilla,3097,1935 +1724256900,SSL client,199119,219193 +1724256900,Box,1404,5023 +1724256900,Microsoft CryptoAPI,1848,1611 +1724256900,ICMP,50608,12284 +1724256900,Firebase Crashlytics,4238,14826 +1724256900,Telegram,4623,7718 +1724256900,DNS over HTTPS,24100,64470 +1724256900,CoAP,1176,864 +1724256900,__unknown,690117,920481 +1724256900,Bing,3427,16348 +1724256900,BitTorrent,864,537 +1724256900,DHCPv6,1141,0 +1724256900,Google APIs,20202,40841 +1724256900,Google,8831,27499 +1724256900,BitTorrent tracker,306,537 +1724256900,DNS,38081,37296 +1724256900,Google Calendar,6228,4381 +1724256900,HTTP,126778,391335 +1724256900,Launchpad,3208,2190 +1724256900,Microsoft Update,3517,2959 +1724256900,NetBIOS-dgm,250,0 +1724256900,NTP,1890,1890 +1724256900,STUN,3278,4166 +1724256900,YouTube,2085,6671 +1724256900,TwitchTV,1047,6104 +1724256900,Odnoklassniki,2610,7433 +1724256900,Advanced Packaging Tool,32868,30172 +1724256900,HTTPS,610943,1440890 +1724256900,Apple sites,5837,29825 +1724256900,iCloud,11935,32020 +1724256900,SSL client,130093,418331 +1724256900,Box,1404,5023 +1724256900,Amazon Web Services,1139,6568 +1724256900,Ubuntu Update Manager,24233,22954 +1724256900,Microsoft,4364,282784 +1724256900,VeriSign,441,2077 +1724256900,Mail.Ru,1641,10730 +1724256900,Yandex,26400,140072 +1724256900,Ubuntu,7127,6856 +1724256900,Microsoft CryptoAPI,4985,6913 +1724256900,33Across,2704,8155 +1724256900,Google Play,14016,20239 +1724256900,Criteo,2336,5202 +1724256900,ICMP,7833,1776 +1724256900,Telegram,3738,1370 +1724256900,Google Sign in,6204,4467 +1724256900,Edge Chromium,7271,21053 +1724256900,Grammarly,2241,7853 +1724256900,DNS over TLS,9160,38154 +1724256900,DNS over HTTPS,36259,130595 +1724256900,IPv6 No Next Header,294,0 +1724257200,__unknown,2378606,970488 +1724257200,Google,22484,28375 +1724257200,HTTPS,128728,75253 +1724257200,SSL client,22484,28375 +1724257200,__unknown,2644,4096 +1724257200,HTTPS,26338,40859 +1724257200,__unknown,37786,264 +1724257200,__unknown,65690,462 +1724257200,HTTPS,25280,13449 +1724257200,__unknown,46081,46915 +1724257200,Google,64448,48158 +1724257200,HTTPS,4487282,281929 +1724257200,SSL client,4487282,281929 +1724257200,Google Play,4422834,233771 +1724257200,HTTPS,6796,121133 +1724257200,Dropbox,539153,61758 +1724257200,Gmail,273026,511005 +1724257200,HTTPS,2149271,982214 +1724257200,SSL client,2084176,911318 +1724257200,Mail.Ru,40877,144428 +1724257200,Yandex,242456,105738 +1724257200,GitHub,10294,11735 +1724257200,Google Play,58921,35551 +1724257200,Dropbox Download,919449,41103 +1724257200,__unknown,47046,1791 +1724257200,Google APIs,3907,14446 +1724257200,Google,168751,114425 +1724257200,SSL,15776,11277 +1724257200,HTTPS,210325,181221 +1724257200,APNS,15776,11277 +1724257200,SSL client,222632,190335 +1724257200,Yandex,5479,7316 +1724257200,Nvidia,6145,18636 +1724257200,Google Play,22574,24235 +1724257200,__unknown,171259,957073 +1724257200,Dropbox,3177,1378 +1724257200,Google,7135,15070 +1724257200,McAfee,15378,334661 +1724257200,MSN,1049,5860 +1724257200,Windows Live,26817,10294 +1724257200,Gmail,1518,3474 +1724257200,iTunes,3780,36405 +1724257200,Skype,3161,8098 +1724257200,TeamViewer,1578,8847 +1724257200,IMAPS,1518,3474 +1724257200,HTTPS,1375933,7587928 +1724257200,Mozilla,16140,28664 +1724257200,SSL client,394705,1025659 +1724257200,Microsoft,17812,34114 +1724257200,Mail.Ru,16977,32635 +1724257200,Yandex,143973,241083 +1724257200,GitHub,125068,197871 +1724257200,Office 365,3506,47137 +1724257200,Sharepoint Online,3505,8619 +1724257200,Battle.net site,2258,3973 +1724257200,Grammarly,1873,7476 +1724257200,DNS over HTTPS,674,252 +1724257200,__unknown,1580937,2279657 +1724257200,Bing,9080,60557 +1724257200,Dropbox,10704,225441 +1724257200,Google APIs,6495,20935 +1724257200,Google,37234,31867 +1724257200,MSN,5634,13726 +1724257200,Adobe Software,2778,11277 +1724257200,Android browser,3635,13672 +1724257200,Gmail,5270,17872 +1724257200,Google Analytics,7791,13775 +1724257200,HTTP,13422,38552 +1724257200,iTunes,2106,6518 +1724257200,Skype,3254,8036 +1724257200,SSL,15010,5969 +1724257200,VKontakte,3971,6655 +1724257200,IMAPS,5270,17872 +1724257200,HTTPS,1692305,13228039 +1724257200,APNS,15010,5969 +1724257200,Apple sites,39079,252776 +1724257200,iCloud,9512,41941 +1724257200,Mozilla,8926,14572 +1724257200,SSL client,1053122,10823149 +1724257200,Microsoft,102286,300491 +1724257200,NIH,1755,7437 +1724257200,Mail.Ru,248447,346264 +1724257200,Yandex,305882,8688116 +1724257200,GitHub,3864,14464 +1724257200,Nvidia,183531,619205 +1724257200,Google Update,4341,10244 +1724257200,Microsoft CryptoAPI,589,619 +1724257200,Microsoft WNS,573,7966 +1724257200,Apple Maps,14984,56552 +1724257200,Exchange Online,1326,6463 +1724257200,Office 365,6673,20983 +1724257200,Sharepoint Online,746,5947 +1724257200,Battle.net site,3206,7482 +1724257200,Telegram,4193,7950 +1724257200,GISMETEO,3635,13672 +1724257200,Edge Chromium,1054,3954 +1724257200,Grammarly,2347,6888 +1724257200,Stripe,14520,9706 +1724257200,DNS over TLS,935,4769 +1724257200,Apple News,3575,51219 +1724257200,DNS over HTTPS,18134,59805 +1724257200,_err_4655,6928,9292 +1724257200,__unknown,362833,532774 +1724257200,HTTPS,15016,109188 +1724257200,ICMP,22499,0 +1724257200,__unknown,96724,131739 +1724257200,Google,21539,28593 +1724257200,HTTPS,107078,88306 +1724257200,SSL client,21539,28593 +1724257200,Apple Maps,1856,5949 +1724257200,ICMP,1066,0 +1724257200,DNS over HTTPS,10955,26844 +1724257200,__unknown,343943,390266 +1724257200,Google,11694,27628 +1724257200,Google Translate,7242,6259 +1724257200,HTTP,4353,108427 +1724257200,HTTPS,86011,148631 +1724257200,SSL client,18936,33887 +1724257200,ICMP,14716,13724 +1724257200,__unknown,757951,2172675 +1724257200,BITS,1917,4384 +1724257200,BitTorrent,310,496 +1724257200,Google APIs,44562,16613 +1724257200,Google Drive,9910,10842 +1724257200,Google,53319,75358 +1724257200,DNS,15593,0 +1724257200,Gmail,12043,12578 +1724257200,HTTP,4122,9272 +1724257200,NTP,12660,2910 +1724257200,SSL,3570,10082 +1724257200,STUN,2728,2442 +1724257200,VKontakte,2587,5579 +1724257200,HTTPS,594479,5181787 +1724257200,Apple sites,3257,15210 +1724257200,Mozilla,10453,8316 +1724257200,SSL client,264334,4290041 +1724257200,Pubmatic,5062,5612 +1724257200,Box,1404,5023 +1724257200,Microsoft,1315,7650 +1724257200,Yandex,112030,4109923 +1724257200,Microsoft CryptoAPI,610,2433 +1724257200,Google Hangouts,1802,4604 +1724257200,ICMP,34955,10064 +1724257200,QUIC,4339,11349 +1724257200,Telegram,875,572 +1724257200,Google Sign in,4402,7782 +1724257200,DNS over HTTPS,11115,35220 +1724257200,__unknown,736005,3164702 +1724257200,DHCPv6,978,0 +1724257200,Google APIs,16670,51708 +1724257200,Google,32113,87551 +1724257200,MSN,578,502 +1724257200,Chrome,566,543 +1724257200,DNS,38080,34633 +1724257200,Gmail,15991,20001 +1724257200,Google Analytics,2161,6704 +1724257200,HTTP,166448,1842832 +1724257200,Launchpad,3200,2480 +1724257200,Microsoft Update,1292,1000 +1724257200,NTP,2340,2340 +1724257200,SSL,2320,8484 +1724257200,STUN,984,814 +1724257200,VKontakte,627,3533 +1724257200,Advanced Packaging Tool,34891,258159 +1724257200,HTTPS,643785,4082759 +1724257200,Apple sites,5567,45983 +1724257200,iCloud,10882,134541 +1724257200,Mozilla,7640,8280 +1724257200,Avast,382,391 +1724257200,SSL client,177694,1489123 +1724257200,Box,1404,5023 +1724257200,Ubuntu Update Manager,27438,251781 +1724257200,Microsoft,30975,1352113 +1724257200,Siri,9679,8258 +1724257200,Yandex,58267,1055989 +1724257200,Ubuntu,5169,4812 +1724257200,Microsoft CryptoAPI,13223,147975 +1724257200,Microsoft WNS,578,502 +1724257200,Smart AdServer,2518,2285 +1724257200,Google Hangouts,2320,8484 +1724257200,ICMP,6491,3996 +1724257200,Telegram,3327,1032 +1724257200,Edge Chromium,5103,16769 +1724257200,Grammarly,2221,7886 +1724257200,DNS over TLS,9367,47117 +1724257200,DNS over HTTPS,35949,129614 +1724257200,IPv6 No Next Header,196,0 +1724257500,__unknown,17580,31327 +1724257500,HTTPS,89093,158037 +1724257500,HTTPS,525177,1045832 +1724257500,SSL client,525177,1045832 +1724257500,DNS over HTTPS,525177,1045832 +1724257500,HTTPS,4527705,644721 +1724257500,__unknown,18760,132 +1724257500,HTTPS,9820,6879 +1724257500,SSL client,9820,6879 +1724257500,Yandex,9820,6879 +1724257500,__unknown,18824,132 +1724257500,HTTPS,29791,41700 +1724257500,SSL client,29791,41700 +1724257500,Telegram,29791,41700 +1724257500,__unknown,73163,18777 +1724257500,__unknown,18792,132 +1724257500,HTTPS,24152,42343 +1724257500,__unknown,2968569,467526 +1724257500,HTTPS,168543,195288 +1724257500,SSL client,55911,68003 +1724257500,Yandex,2691,7069 +1724257500,Telegram,53220,60934 +1724257500,__unknown,108363,32984 +1724257500,Dropbox,118690,20925 +1724257500,Google APIs,3522,12615 +1724257500,HTTPS,306136,186261 +1724257500,SSL client,253251,41523 +1724257500,Dropbox Download,131039,7983 +1724257500,__unknown,13383,25293 +1724257500,Google APIs,2429,1599 +1724257500,HTTP,7313,370296 +1724257500,Advanced Packaging Tool,7313,370296 +1724257500,HTTPS,178511,231350 +1724257500,SSL client,133461,99540 +1724257500,Google Play,131032,97941 +1724257500,__unknown,224559,215582 +1724257500,Dropbox,122872,231894 +1724257500,Google APIs,5055,14032 +1724257500,Google,13199,17354 +1724257500,MSN,4912,6221 +1724257500,Wikipedia,8160,240020 +1724257500,Adobe Software,19889,6154 +1724257500,iTunes,5433,10344 +1724257500,Microsoft Update,1735,5433 +1724257500,Skype,2593,8336 +1724257500,YouTube,13936,61109 +1724257500,VKontakte,1650,12963 +1724257500,HTTPS,467130,2377695 +1724257500,SSL client,327641,987795 +1724257500,Microsoft,22349,63918 +1724257500,Mail.Ru,26518,87744 +1724257500,Yandex,33830,29207 +1724257500,Nvidia,2359,5735 +1724257500,Google Play,31557,21589 +1724257500,Office 365,5047,30998 +1724257500,ResearchGate,6547,134744 +1724257500,DNS over HTTPS,2326,7746 +1724257500,__unknown,1486221,6231279 +1724257500,Bing,16040,206983 +1724257500,Eset,12207,35251 +1724257500,Google APIs,15509,49802 +1724257500,Google Drive,22997,857764 +1724257500,Google,57463,147972 +1724257500,MSN,2576,14607 +1724257500,Chrome,3847,1027 +1724257500,Google Analytics,38855,12645 +1724257500,HTTP,16962,16172 +1724257500,Launchpad,574,422 +1724257500,Microsoft Update,666,768 +1724257500,Skype,4014,14238 +1724257500,TeamViewer,2099,12534 +1724257500,VKontakte,1871,4467 +1724257500,Steam,573220,54761687 +1724257500,Advanced Packaging Tool,2725,2686 +1724257500,HTTPS,14870622,83111639 +1724257500,Apple sites,12531,44692 +1724257500,iCloud,28807,79076 +1724257500,Avast,1122,8783 +1724257500,SSL client,2263247,73029828 +1724257500,Taobao,4466,53280 +1724257500,Ubuntu Update Manager,2151,2264 +1724257500,Microsoft,255587,427806 +1724257500,NIH,166360,7161557 +1724257500,Mail.Ru,247885,360778 +1724257500,Yandex,189159,506946 +1724257500,GitHub,455892,7768553 +1724257500,Intel,1677,7138 +1724257500,Nvidia,46544,73275 +1724257500,Microsoft CryptoAPI,1399,5008 +1724257500,Apple Maps,1945,7362 +1724257500,Office 365,55035,169076 +1724257500,Sharepoint Online,2683,5509 +1724257500,Microsoft Windows Live Services Authentication,25757,66812 +1724257500,Alipay,1898,1510 +1724257500,Office Mobile,8766,8112 +1724257500,Telegram,6703,33620 +1724257500,TikTok,2780,11093 +1724257500,Xiaomi,1712,4887 +1724257500,Edge Chromium,527,1938 +1724257500,Grammarly,4818,13267 +1724257500,Microsoft Teams,5916,142790 +1724257500,DNS over HTTPS,24421,90505 +1724257500,Tableau,746,1608 +1724257500,Google,109467,155952 +1724257500,HTTPS,1333710,491163 +1724257500,SSL client,1333710,491163 +1724257500,Google Play,1224243,335211 +1724257500,HTTPS,37072,45062 +1724257500,DNS over HTTPS,1073,5392 +1724257500,SSL,2711,9189 +1724257500,HTTPS,27248,40833 +1724257500,HTTPS,11651846,523985320 +1724257500,Windows Live,3303,19587 +1724257500,SSL,2670,11729 +1724257500,VKontakte,21426,23990 +1724257500,HTTPS,45738,84442 +1724257500,SSL client,27399,55306 +1724257500,Google Hangouts,2670,11729 +1724257500,__unknown,36956,72824 +1724257500,Google,36333,39027 +1724257500,Gmail,8943,21858 +1724257500,Google Analytics,43694,22906 +1724257500,HTTP,4572,3718 +1724257500,IMAPS,8943,21858 +1724257500,HTTPS,114541,142595 +1724257500,SSL client,88970,83791 +1724257500,ICMP,3838,592 +1724257500,Telegram,5747,4258 +1724257500,__unknown,1698109,69492532 +1724257500,BitTorrent,310,496 +1724257500,DHCPv6,163,0 +1724257500,Google APIs,15680,39205 +1724257500,Google Drive,10044,4895 +1724257500,Google,602484,1999241 +1724257500,DNS,14895,0 +1724257500,Gmail,14471,23817 +1724257500,Google Calendar,7784,7201 +1724257500,HTTP,2268,2039 +1724257500,NTP,13290,3540 +1724257500,Odnoklassniki,2669,7544 +1724257500,HTTPS,928187,3679004 +1724257500,Mozilla,5119,3362 +1724257500,SSL client,691608,2233437 +1724257500,Box,1404,5023 +1724257500,CloudFront,4356,86494 +1724257500,Microsoft CryptoAPI,1761,1509 +1724257500,Google Play,13502,23953 +1724257500,ICMP,67566,12284 +1724257500,Google Sign in,1193,5737 +1724257500,Grammarly,2251,7887 +1724257500,DNS over HTTPS,39631,97552 +1724257500,IPv6 No Next Header,98,0 +1724257500,__unknown,734925,1193781 +1724257500,Bing,2914,13116 +1724257500,BitTorrent,616,570 +1724257500,Google APIs,3031,3834 +1724257500,Google,36901,177573 +1724257500,BitTorrent tracker,306,198 +1724257500,Chrome,581,488 +1724257500,DNS,43683,40840 +1724257500,Firefox,943,907 +1724257500,HTTP,135389,942466 +1724257500,Launchpad,3200,2480 +1724257500,Microsoft Update,981,815 +1724257500,NetBIOS-dgm,243,0 +1724257500,NetBIOS-ns,276,0 +1724257500,NTP,3330,3330 +1724257500,Reddit,4700,26015 +1724257500,STUN,2132,1924 +1724257500,Odnoklassniki,56304,246281 +1724257500,Steam,3365,18831 +1724257500,Advanced Packaging Tool,51672,841205 +1724257500,HTTPS,837039,4542112 +1724257500,Apple sites,17690,53160 +1724257500,iCloud,10884,17549 +1724257500,SSL client,223254,3480855 +1724257500,Box,1404,5023 +1724257500,Ubuntu Update Manager,44219,834774 +1724257500,VeriSign,566,2140 +1724257500,Yandex,69505,2896623 +1724257500,Ubuntu,4253,3951 +1724257500,Microsoft CryptoAPI,5716,8627 +1724257500,Google Play,3786,2590 +1724257500,WeChat,3571,2212 +1724257500,Google Accounts Authentication,4441,11518 +1724257500,ICMP,5483,2664 +1724257500,Telegram,4433,8054 +1724257500,Google Sign in,5706,8000 +1724257500,Edge Chromium,7211,21604 +1724257500,DNS over TLS,4448,19079 +1724257500,DNS over HTTPS,33051,114366 +1724257500,IPv6 No Next Header,196,0 +1724257800,__unknown,51967,34531 +1724257800,HTTPS,15251,20324 +1724257800,SSL client,15251,20324 +1724257800,Yandex,15251,20324 +1724257800,__unknown,410,1392 +1724257800,HTTPS,204266,3084469 +1724257800,Google APIs,3715,1703 +1724257800,Google,1167992,667103 +1724257800,HTTPS,1251421,778197 +1724257800,SSL client,1171707,668806 +1724257800,__unknown,15932,132 +1724257800,HTTPS,199634,72290 +1724257800,__unknown,19876,1902 +1724257800,__unknown,18696,132 +1724257800,SSL,8001,15483 +1724257800,SSL client,8001,15483 +1724257800,Google Hangouts,8001,15483 +1724257800,__unknown,63592,462 +1724257800,__unknown,18696,132 +1724257800,__unknown,39014,264 +1724257800,__unknown,87564,594 +1724257800,__unknown,969027,225391 +1724257800,Dropbox,161176,29916 +1724257800,Google APIs,1448,1022 +1724257800,HTTPS,219905,43760 +1724257800,SSL client,162624,30938 +1724257800,__unknown,26373,27002 +1724257800,McAfee,8266,236225 +1724257800,HTTPS,528195,817666 +1724257800,SSL client,517649,602942 +1724257800,Yandex,488536,348508 +1724257800,Google Play,20847,18209 +1724257800,__unknown,569535,569231 +1724257800,Dropbox,1631,1475 +1724257800,Google Drive,243315,592626 +1724257800,Google,66707,503853 +1724257800,Skype,2710,7814 +1724257800,TeamViewer,1559,9000 +1724257800,Steam,383016,32115233 +1724257800,HTTPS,1355363,36473369 +1724257800,iCloud,2409,6258 +1724257800,Avast,1055,9486 +1724257800,SSL client,1124698,34185446 +1724257800,Microsoft,25591,61371 +1724257800,Mail.Ru,29167,45233 +1724257800,Yandex,82708,525215 +1724257800,GitHub,213932,177796 +1724257800,Nvidia,46252,17377 +1724257800,Office 365,18947,102106 +1724257800,Alipay,3441,6630 +1724257800,Battle.net site,2258,3973 +1724257800,DNS over HTTPS,3733,10546 +1724257800,__unknown,636209,845411 +1724257800,Bing,1809,9271 +1724257800,Dropbox,7627,195066 +1724257800,Google APIs,19172,68494 +1724257800,Google,135728,345197 +1724257800,Dell,1051,4365 +1724257800,Google Analytics,1839,1709 +1724257800,HTTP,19333,269006 +1724257800,Microsoft Update,2052,1837 +1724257800,Skype,3257,8002 +1724257800,SSL,1320,7853 +1724257800,Odnoklassniki,3315,12747 +1724257800,Advanced Packaging Tool,13262,262225 +1724257800,HTTPS,2613959,28225893 +1724257800,WhatsApp,1405,1216 +1724257800,Apple sites,20261,824298 +1724257800,iCloud,42923,212488 +1724257800,Mozilla,4247,10769 +1724257800,Avast,3539,11985 +1724257800,Opera,719,3472 +1724257800,SSL client,1975246,19333280 +1724257800,Amazon Web Services,3265,21542 +1724257800,Ubuntu Update Manager,12166,261129 +1724257800,Microsoft,68962,229738 +1724257800,NIH,4820,18186 +1724257800,Mail.Ru,429698,636024 +1724257800,Siri,1796,6179 +1724257800,Yandex,735665,6918957 +1724257800,GitHub,11025,14543 +1724257800,Ubuntu,1096,1096 +1724257800,Nvidia,359662,7689238 +1724257800,Microsoft CryptoAPI,3696,3483 +1724257800,Microsoft NCSI,274,479 +1724257800,Apple Maps,2014,4697 +1724257800,Office 365,28109,1894577 +1724257800,Microsoft Windows Live Services Authentication,14017,20036 +1724257800,Google Hangouts,1320,7853 +1724257800,Yandex Market,42763,141618 +1724257800,Office Mobile,13910,8948 +1724257800,Telegram,1374,926 +1724257800,Google Inbox,1752,6924 +1724257800,Grammarly,12569,9888 +1724257800,DNS over TLS,1487,9408 +1724257800,DNS over HTTPS,91701,229443 +1724257800,__unknown,188,229 +1724257800,SSL,1061,7852 +1724257800,HTTPS,168265,55061 +1724257800,SSL client,168265,55061 +1724257800,Google Play,168265,55061 +1724257800,ICMP,7620,7680 +1724257800,ICMP,8190,0 +1724257800,__unknown,170363,67475 +1724257800,HTTP,3158,2326 +1724257800,SSL,1547,1392 +1724257800,SSL client,1547,1392 +1724257800,Google Hangouts,1547,1392 +1724257800,ICMP,6720,6720 +1724257800,Telegram,3158,2326 +1724257800,CoAP,2940,2160 +1724257800,__unknown,31659,12210 +1724257800,Google,14480,19625 +1724257800,Chrome,1466,2448 +1724257800,Gmail,14535,11681 +1724257800,HTTP,2736,3264 +1724257800,SSL,1563,1392 +1724257800,HTTPS,89729,666693 +1724257800,Apple sites,4421,60003 +1724257800,SSL client,45586,117255 +1724257800,Yandex,8703,18031 +1724257800,Google Hangouts,1563,1392 +1724257800,ICMP,10708,4958 +1724257800,Telegram,1806,1181 +1724257800,DNS over HTTPS,3350,8971 +1724257800,__unknown,1007788,8757596 +1724257800,DHCPv6,978,0 +1724257800,Google APIs,39552,41234 +1724257800,Google Drive,64995,34511 +1724257800,Google,37334,94845 +1724257800,Google Translate,8820,12041 +1724257800,Android browser,459,333 +1724257800,DNS,14751,0 +1724257800,Google Analytics,55973,22853 +1724257800,HTTP,2239,4104 +1724257800,Microsoft Update,612,501 +1724257800,NetBIOS-dgm,250,0 +1724257800,NTP,24826,5730 +1724257800,STUN,1860,3080 +1724257800,YouTube,7282,4948 +1724257800,VKontakte,2802,6042 +1724257800,Odnoklassniki,10324,3222 +1724257800,HTTPS,442575,2290318 +1724257800,WhatsApp,1797,7919 +1724257800,Mozilla,3031,1935 +1724257800,SSL client,274635,544093 +1724257800,Box,1404,5023 +1724257800,VeriSign,566,2140 +1724257800,Yandex,9396,292420 +1724257800,MDNS,364,0 +1724257800,Microsoft CryptoAPI,1780,3771 +1724257800,Google Play,34181,25352 +1724257800,ICMP,47588,13060 +1724257800,Telegram,1705,1004 +1724257800,DNS over HTTPS,42656,106939 +1724257800,__unknown,706538,1360779 +1724257800,DHCPv6,163,0 +1724257800,Google APIs,54293,100628 +1724257800,Google Drive,2796,1673 +1724257800,Google,24650,73071 +1724257800,MSN,577,501 +1724257800,DNS,42488,41757 +1724257800,Gmail,6076,37397 +1724257800,HTTP,128179,433410 +1724257800,Launchpad,3200,2480 +1724257800,Microsoft Update,2198,1515 +1724257800,NTP,990,990 +1724257800,SSL,855,7033 +1724257800,STUN,3992,5224 +1724257800,Advanced Packaging Tool,38003,34602 +1724257800,HTTPS,616832,5672190 +1724257800,Apple sites,3503,15303 +1724257800,Mozilla,4101,2634 +1724257800,Avast,764,782 +1724257800,Opera,2981,10968 +1724257800,SSL client,186038,3090030 +1724257800,Box,1404,5023 +1724257800,Amazon Web Services,2151,7553 +1724257800,Ubuntu Update Manager,30550,28106 +1724257800,Yandex,85041,2846230 +1724257800,Ubuntu,7579,7680 +1724257800,Microsoft CryptoAPI,4831,4648 +1724257800,Microsoft WNS,577,501 +1724257800,WeChat,25452,317362 +1724257800,Office 365,1952,7717 +1724257800,Google Hangouts,855,7033 +1724257800,ICMP,14827,4662 +1724257800,QUIC,7286,8104 +1724257800,Telegram,5292,8886 +1724257800,Google Inbox,1323,583 +1724257800,Edge Chromium,8385,25539 +1724257800,DNS over HTTPS,20573,59365 +1724258100,__unknown,44913,26299 +1724258100,__unknown,28233,33368 +1724258100,Google,156003,144022 +1724258100,HTTPS,156003,144022 +1724258100,SSL client,156003,144022 +1724258100,DNS over HTTPS,27569,71323 +1724258100,__unknown,1432,3247 +1724258100,Google,47603,71687 +1724258100,HTTPS,18583472,2678856 +1724258100,SSL client,18150026,1953579 +1724258100,Google Play,18100685,1875548 +1724258100,Firebase Crashlytics,1738,6344 +1724258100,__unknown,60842,21347 +1724258100,HTTPS,4853,2615 +1724258100,HTTPS,45311,62599 +1724258100,SSL client,45311,62599 +1724258100,Telegram,45311,62599 +1724258100,__unknown,105828,726 +1724258100,HTTPS,5843,8827 +1724258100,SSL client,5843,8827 +1724258100,Yandex,5843,8827 +1724258100,__unknown,76474,528 +1724258100,HTTPS,4210,6382 +1724258100,SSL client,4210,6382 +1724258100,Sharepoint Online,4210,6382 +1724258100,__unknown,491935,1871556 +1724258100,HTTPS,595122,165779 +1724258100,SSL client,546827,125248 +1724258100,Google Play,546827,125248 +1724258100,__unknown,37616,264 +1724258100,SSL,96763,21662 +1724258100,HTTPS,597794,1172742 +1724258100,APNS,96763,21662 +1724258100,SSL client,694557,1194404 +1724258100,Mail.Ru,10135,11595 +1724258100,DNS over HTTPS,587659,1161147 +1724258100,__unknown,18792,132 +1724258100,__unknown,20222,132 +1724258100,Dropbox,546828,63375 +1724258100,Google APIs,2702,22651 +1724258100,HTTPS,1626955,2814666 +1724258100,SSL client,1466357,207587 +1724258100,Yandex,125620,89319 +1724258100,Dropbox Download,791207,32242 +1724258100,__unknown,18081,20712 +1724258100,Google,290289,519461 +1724258100,SSL,3568,17572 +1724258100,HTTPS,540262,703973 +1724258100,SSL client,522285,694869 +1724258100,Yandex,165578,103674 +1724258100,Google Play,62850,54162 +1724258100,Google Hangouts,3568,17572 +1724258100,DNS over HTTPS,29047,73754 +1724258100,__unknown,128145,35164 +1724258100,Bing,44033,42797 +1724258100,Dropbox,4628,2503 +1724258100,Google APIs,5106,6237 +1724258100,Google,191254,220481 +1724258100,MSN,1049,5861 +1724258100,Chrome,1137,930 +1724258100,Gmail,8566,15428 +1724258100,HTTP,1137,930 +1724258100,SSL,18027,17983 +1724258100,VKontakte,13358,21248 +1724258100,HTTPS,771089,5381551 +1724258100,WhatsApp,1828,17993 +1724258100,APNS,15681,5248 +1724258100,Mozilla,2200,1458 +1724258100,Avast,1194,8165 +1724258100,SSL client,530139,1705060 +1724258100,Microsoft,26566,35603 +1724258100,Mail.Ru,28285,37171 +1724258100,Siri,5779,6213 +1724258100,Yandex,157728,1152443 +1724258100,Office 365,9221,70039 +1724258100,Sharepoint Online,3240,42052 +1724258100,Google Hangouts,2346,12735 +1724258100,Mendeley,3671,8037 +1724258100,Google Sign in,5083,3851 +1724258100,Grammarly,2288,8420 +1724258100,DNS over HTTPS,2648,7823 +1724258100,__unknown,889984,198736 +1724258100,Bing,10714,66207 +1724258100,Dropbox,107946,218444 +1724258100,Google APIs,4178,14450 +1724258100,Google Drive,7100,35224 +1724258100,Google,260878,278075 +1724258100,MSN,3045,8383 +1724258100,Adobe Software,87643,793353 +1724258100,Chrome,565,206 +1724258100,Gmail,3194,8084 +1724258100,Google Analytics,1832,1709 +1724258100,HTTP,3687,3647 +1724258100,iTunes,2397,12016 +1724258100,LiveJournal,106246,46804 +1724258100,Microsoft Update,46116,76991 +1724258100,Reddit,7445,11599 +1724258100,SSL,89094,601804 +1724258100,VKontakte,8499,8181 +1724258100,RuTube,413477,29329185 +1724258100,Advanced Packaging Tool,1561,1488 +1724258100,IMAPS,3194,8084 +1724258100,HTTPS,3031460,40196784 +1724258100,APNS,34987,11974 +1724258100,Apple sites,2982,17087 +1724258100,iCloud,50059,108869 +1724258100,Mozilla,12369,13668 +1724258100,SSL client,2174613,33951131 +1724258100,Ad Nexus,2163,4576 +1724258100,Ubuntu Update Manager,1561,1488 +1724258100,Microsoft,107336,193825 +1724258100,Mail.Ru,559350,761710 +1724258100,Yandex,211974,1630994 +1724258100,Intel,1200,4769 +1724258100,Apple Maps,2146,7494 +1724258100,Rambler,23143,34956 +1724258100,Exchange Online,1168,8065 +1724258100,Office 365,23269,66219 +1724258100,Microsoft Windows Live Services Authentication,28261,77099 +1724258100,Google Hangouts,1725,14788 +1724258100,Google Inbox,13206,60705 +1724258100,Edge Chromium,467,1304 +1724258100,Grammarly,12312,10067 +1724258100,Stripe,15988,17216 +1724258100,DNS over HTTPS,19680,86029 +1724258100,HTTPS,54960,23530 +1724258100,HTTPS,6510,67972 +1724258100,__unknown,638,660 +1724258100,HTTPS,61492,81412 +1724258100,SSL client,61492,81412 +1724258100,Telegram,61492,81412 +1724258100,__unknown,76105,71358 +1724258100,HTTPS,31983,41517 +1724258100,SSL client,31983,41517 +1724258100,Telegram,31983,41517 +1724258100,__unknown,2781,23955 +1724258100,HTTPS,34748,159341 +1724258100,SSL client,27039,35311 +1724258100,Apple Maps,2804,11002 +1724258100,ICMP,44318,1850 +1724258100,Telegram,27039,35311 +1724258100,DNS over HTTPS,51543,103965 +1724258100,__unknown,207244,287512 +1724258100,Google Translate,7047,5946 +1724258100,HTTPS,44534,52810 +1724258100,SSL client,17318,23820 +1724258100,ICMP,1174,518 +1724258100,Telegram,10271,17874 +1724258100,__unknown,2383670,6536267 +1724258100,BitTorrent,310,496 +1724258100,Google APIs,11593,23270 +1724258100,Google Drive,22471,53816 +1724258100,Google,88677,232283 +1724258100,Google Translate,17883,26314 +1724258100,DNS,18377,0 +1724258100,Gmail,8566,15363 +1724258100,Google Calendar,11529,16201 +1724258100,HTTP,21351,1338134 +1724258100,Microsoft Update,642,503 +1724258100,NetBIOS-ns,92,0 +1724258100,NTP,1620,1620 +1724258100,SSL,797,7092 +1724258100,VKontakte,19426,378162 +1724258100,Odnoklassniki,2610,7499 +1724258100,HTTPS,410774,1491141 +1724258100,Mozilla,17286,17070 +1724258100,SSL client,252952,877520 +1724258100,Box,1404,5023 +1724258100,CloudFront,1524,1886 +1724258100,Microsoft CryptoAPI,4146,3541 +1724258100,Google Play,11318,18278 +1724258100,Google Hangouts,797,7092 +1724258100,ICMP,41294,15430 +1724258100,Telegram,25857,38713 +1724258100,Google Inbox,5038,9675 +1724258100,Grammarly,4402,15817 +1724258100,DNS over HTTPS,15856,28777 +1724258100,Google Meet,4549,12355 +1724258100,__unknown,960168,5896945 +1724258100,BITS,3031,168093 +1724258100,BitTorrent,306,537 +1724258100,DHCPv6,978,0 +1724258100,Google APIs,20260,63133 +1724258100,Google,43998,505769 +1724258100,Apple Mail,3193,36450 +1724258100,BitTorrent tracker,306,537 +1724258100,Chrome,4434,4886 +1724258100,DNS,59707,53994 +1724258100,Gmail,6745,7933 +1724258100,Google Analytics,1589,5989 +1724258100,HTTP,194912,2537458 +1724258100,Launchpad,3200,2480 +1724258100,Microsoft Update,79129,1344373 +1724258100,NTP,37350,8100 +1724258100,STUN,2132,1850 +1724258100,YouTube,5377,13464 +1724258100,Advanced Packaging Tool,26737,24582 +1724258100,Windows Update,76863,1342545 +1724258100,IMAPS,3193,36450 +1724258100,HTTPS,723572,5583031 +1724258100,Apple sites,853,4058 +1724258100,iCloud,3229,8424 +1724258100,Mozilla,2369,4784 +1724258100,Opera,779,3526 +1724258100,SSL client,138989,1636173 +1724258100,Outbrain,2186,4880 +1724258100,Amazon Web Services,2512,12964 +1724258100,Ubuntu Update Manager,19332,18254 +1724258100,Microsoft,26042,1103864 +1724258100,Mail.Ru,5098,5981 +1724258100,Yandex,30322,946140 +1724258100,Ubuntu,6136,5832 +1724258100,Microsoft CryptoAPI,7471,9032 +1724258100,Microsoft WNS,1206,8154 +1724258100,Apple Maps,1727,10118 +1724258100,ICMP,10947,3478 +1724258100,Telegram,9617,16973 +1724258100,Google Sign in,9412,9837 +1724258100,Edge Chromium,5163,16771 +1724258100,DNS over TLS,1509,9538 +1724258100,DNS over HTTPS,11463,44505 +1724258400,__unknown,434758,1006667 +1724258400,Telegram,375306,965159 +1724258400,__unknown,32052,41765 +1724258400,__unknown,25867,31208 +1724258400,__unknown,24923,27658 +1724258400,__unknown,201961,36489 +1724258400,__unknown,125962,924 +1724258400,__unknown,36026,264 +1724258400,HTTPS,295163,95735 +1724258400,__unknown,84708,1128 +1724258400,__unknown,53706,1236 +1724258400,HTTPS,21644,37358 +1724258400,SSL client,21644,37358 +1724258400,Yandex,21644,37358 +1724258400,__unknown,18856,132 +1724258400,HTTPS,66577,42978 +1724258400,SSL client,7946,9960 +1724258400,Yandex,7946,9960 +1724258400,__unknown,99645,15043 +1724258400,HTTP,25253,23525 +1724258400,HTTPS,204408,83161 +1724258400,SSL client,204408,83161 +1724258400,Google Play,204408,83161 +1724258400,__unknown,18696,132 +1724258400,HTTPS,52996,68639 +1724258400,SSL client,52996,68639 +1724258400,Telegram,52996,68639 +1724258400,__unknown,388,10189 +1724258400,__unknown,217623,38730 +1724258400,HTTPS,9998,17778 +1724258400,SSL client,9998,17778 +1724258400,Yandex,9998,17778 +1724258400,__unknown,28502,198 +1724258400,Dropbox,122853,20114 +1724258400,HTTPS,758521,397236 +1724258400,SSL client,623629,328317 +1724258400,Mail.Ru,155354,205167 +1724258400,Yandex,104396,31993 +1724258400,Dropbox Download,186557,9432 +1724258400,Telegram,54469,61611 +1724258400,__unknown,79537,593678 +1724258400,McAfee,6402,240006 +1724258400,HTTPS,1323248,553702 +1724258400,SSL client,1289186,507080 +1724258400,Yandex,1282784,267074 +1724258400,__unknown,183125,433910 +1724258400,Dropbox,5129,7000 +1724258400,Google APIs,6488,10018 +1724258400,Google Drive,9338,10753 +1724258400,Google,108100,1537390 +1724258400,MSN,4959,6316 +1724258400,Gmail,5919,8139 +1724258400,Google Analytics,5340,7073 +1724258400,iTunes,4632,9506 +1724258400,VKontakte,25127,75729 +1724258400,HTTPS,757709,5233308 +1724258400,iCloud,7458,19092 +1724258400,Mozilla,1957,4564 +1724258400,SSL client,592658,3399139 +1724258400,Taobao,11107,898426 +1724258400,Microsoft,20385,77714 +1724258400,Mail.Ru,263442,428734 +1724258400,Yandex,68933,172304 +1724258400,Office 365,4876,76189 +1724258400,Battle.net site,3143,4161 +1724258400,Yandex Market,24082,14303 +1724258400,Xiaomi,2832,4671 +1724258400,Google Inbox,7358,19231 +1724258400,Grammarly,2053,7826 +1724258400,DNS over HTTPS,11717,28024 +1724258400,__unknown,1040391,515782 +1724258400,Bing,48135,50622 +1724258400,Dropbox,448203,34384 +1724258400,Google APIs,21496,51845 +1724258400,Google,33506,1527645 +1724258400,Zoho,3093,5613 +1724258400,Gmail,3949,2778 +1724258400,Google Analytics,1372,6399 +1724258400,HTTP,3414,5696 +1724258400,Reddit,230767,393827 +1724258400,SSL,49383,37722 +1724258400,VKontakte,9404,18481 +1724258400,IMAPS,6916,27622 +1724258400,HTTPS,2809744,17957630 +1724258400,APNS,23717,7220 +1724258400,Apple sites,7863,33343 +1724258400,iCloud,26195,53232 +1724258400,Mozilla,6700,13163 +1724258400,SSL client,1836242,13365044 +1724258400,Ad Nexus,2800,24395 +1724258400,Pubmatic,4003,6765 +1724258400,Taobao,43794,2619238 +1724258400,Microsoft,322173,548693 +1724258400,Mail.Ru,206610,311081 +1724258400,Yandex,249814,7360805 +1724258400,Akamai,1030,4146 +1724258400,Ubuntu,425,461 +1724258400,Microsoft CryptoAPI,542,2374 +1724258400,Rubicon Project,2255,5619 +1724258400,Criteo,2218,5083 +1724258400,Smart AdServer,34457,38644 +1724258400,Exchange Online,2646,15019 +1724258400,Office 365,38416,103246 +1724258400,Sharepoint Online,3003,5633 +1724258400,Microsoft Windows Live Services Authentication,50103,111218 +1724258400,Google Inbox,4936,3654 +1724258400,Edge Chromium,994,2131 +1724258400,Stripe,4111,5198 +1724258400,DNS over HTTPS,15174,53984 +1724258400,HTTPS,7934,27565 +1724258400,SSL client,7934,27565 +1724258400,Yandex,7934,27565 +1724258400,HTTPS,725798,1376692 +1724258400,SSL client,725798,1376692 +1724258400,ICMP,13920,13980 +1724258400,DNS over HTTPS,725798,1376692 +1724258400,DNS over HTTPS,15908,43176 +1724258400,HTTPS,275771,287465 +1724258400,__unknown,6536,1521 +1724258400,DNS over HTTPS,14068,29239 +1724258400,__unknown,156244,50433 +1724258400,HTTPS,6661,16053 +1724258400,SSL client,6661,16053 +1724258400,ICMP,1230,0 +1724258400,DNS over HTTPS,6661,16053 +1724258400,__unknown,19210,40862 +1724258400,Google,23554,28859 +1724258400,HTTPS,279586,756630 +1724258400,SSL client,23554,28859 +1724258400,ICMP,9146,8120 +1724258400,DNS over HTTPS,26972,67520 +1724258400,__unknown,1283893,4045556 +1724258400,BitTorrent,310,496 +1724258400,DHCPv6,163,0 +1724258400,Google APIs,51728,37871 +1724258400,Google Drive,9427,11604 +1724258400,Google,41014,77739 +1724258400,Android browser,590,399 +1724258400,DNS,27216,0 +1724258400,Gmail,15126,58385 +1724258400,Google Analytics,11164,42534 +1724258400,HTTP,58100,2798514 +1724258400,Microsoft Update,1248,693 +1724258400,NetBIOS-dgm,493,0 +1724258400,NTP,1710,1620 +1724258400,Odnoklassniki,2609,7485 +1724258400,HTTPS,413225,1072053 +1724258400,Mozilla,1876,4611 +1724258400,SSL client,228608,389964 +1724258400,Pubmatic,5096,6025 +1724258400,Microsoft,23766,797730 +1724258400,Yandex,9297,10420 +1724258400,Microsoft CryptoAPI,1248,693 +1724258400,Google Play,3168,2474 +1724258400,Casale,2840,6377 +1724258400,ICMP,15135,10524 +1724258400,Telegram,74438,121337 +1724258400,DNS over HTTPS,16328,44119 +1724258400,Google Meet,4548,11910 +1724258400,__unknown,1066389,6549793 +1724258400,BITS,8031,187475 +1724258400,DHCPv6,978,0 +1724258400,Google APIs,47904,368617 +1724258400,Google,220845,1707878 +1724258400,Kaspersky,478,974 +1724258400,Chrome,1069,4238 +1724258400,DNS,43298,39286 +1724258400,Firefox,2478,6816 +1724258400,Gmail,28835,74325 +1724258400,HTTP,121452,351781 +1724258400,Launchpad,3126,2480 +1724258400,Microsoft Update,1623,1328 +1724258400,NTP,1710,1710 +1724258400,OpenSSH,11009,43091 +1724258400,SSH,11009,43091 +1724258400,STUN,2100,1554 +1724258400,YouTube,4162,12121 +1724258400,VKontakte,5960,10720 +1724258400,Steam,3605,35040 +1724258400,Advanced Packaging Tool,25060,22700 +1724258400,HTTPS,844607,4982562 +1724258400,Apple sites,5222,28767 +1724258400,iCloud,4684,9938 +1724258400,Avast,764,782 +1724258400,SSL client,416017,3601210 +1724258400,Box,2808,10046 +1724258400,Ubuntu Update Manager,19013,17536 +1724258400,Microsoft,12582,210239 +1724258400,VeriSign,566,2141 +1724258400,Mail.Ru,2617,5451 +1724258400,Yandex,45493,1320663 +1724258400,Ubuntu,4196,4063 +1724258400,Microsoft CryptoAPI,7703,9850 +1724258400,Microsoft WNS,1326,16058 +1724258400,33Across,2831,8791 +1724258400,Google Play,30701,12095 +1724258400,Office 365,940,2318 +1724258400,Microsoft Windows Live Services Authentication,599,11597 +1724258400,ICMP,9630,5254 +1724258400,Telegram,8881,21682 +1724258400,Google Sign in,10320,15756 +1724258400,Edge Chromium,4576,14770 +1724258400,DNS over TLS,1145,4771 +1724258400,DNS over HTTPS,8223,28525 +1724258700,__unknown,80105,134887 +1724258700,HTTPS,65278,72183 +1724258700,SSL client,23905,20933 +1724258700,Yandex,23905,20933 +1724258700,__unknown,28236,198 +1724258700,Google,163041,142628 +1724258700,HTTPS,163041,142628 +1724258700,SSL client,163041,142628 +1724258700,__unknown,65756,462 +1724258700,HTTPS,44196,60665 +1724258700,SSL client,44196,60665 +1724258700,DNS over HTTPS,44196,60665 +1724258700,__unknown,38082,264 +1724258700,__unknown,37520,264 +1724258700,HTTPS,21199,197431 +1724258700,__unknown,38042,264 +1724258700,HTTPS,100876,1196411 +1724258700,__unknown,178390,1254 +1724258700,__unknown,568,2640 +1724258700,HTTPS,26981,35295 +1724258700,__unknown,46932,330 +1724258700,Gmail,670063,3638771 +1724258700,HTTPS,690472,3662078 +1724258700,SSL client,670063,3638771 +1724258700,__unknown,16940,132 +1724258700,Dropbox,105339,25834 +1724258700,Google APIs,3819,1440 +1724258700,HTTPS,153386,86879 +1724258700,SSL client,109158,27274 +1724258700,__unknown,58816,1414 +1724258700,HTTPS,329768,3146088 +1724258700,SSL client,266512,227997 +1724258700,Yandex,266512,227997 +1724258700,__unknown,180257,60722 +1724258700,Google APIs,20647,225581 +1724258700,Google,281877,168113 +1724258700,HTTP,2613,2749 +1724258700,Microsoft Update,2075,1772 +1724258700,TeamViewer,1448,8838 +1724258700,HTTPS,1365692,69846138 +1724258700,Mozilla,11193,24023 +1724258700,Opera,3996,9440 +1724258700,SSL client,567623,1388286 +1724258700,Taobao,27965,24251 +1724258700,Microsoft,8577,19732 +1724258700,Mail.Ru,10921,17007 +1724258700,Yandex,187548,866308 +1724258700,Microsoft CryptoAPI,2613,2749 +1724258700,Google Play,4395,9684 +1724258700,Smart AdServer,7274,5880 +1724258700,Office 365,3460,13442 +1724258700,Battle.net site,2318,5427 +1724258700,DNS over HTTPS,8071,13386 +1724258700,__unknown,879574,1090016 +1724258700,Bing,7798,26223 +1724258700,Dropbox,10315,226131 +1724258700,Google APIs,19269,169437 +1724258700,Google Drive,2904,15467 +1724258700,Google,18638,54440 +1724258700,MSN,1049,5862 +1724258700,Gmail,10421,12176 +1724258700,HTTP,2423,2243 +1724258700,iTunes,3491,38691 +1724258700,IMAPS,10421,12176 +1724258700,HTTPS,2677327,11238856 +1724258700,Apple sites,9335,39244 +1724258700,iCloud,20073,39372 +1724258700,Mozilla,19103,33439 +1724258700,Avast,1122,9494 +1724258700,SSL client,1394229,7743898 +1724258700,Ad Nexus,2608,5564 +1724258700,Pubmatic,1493,1045 +1724258700,Amazon Web Services,606705,48283 +1724258700,Microsoft,89367,131225 +1724258700,Mail.Ru,263315,279227 +1724258700,Yandex,195641,5331884 +1724258700,GitHub,12315,905243 +1724258700,Apple Maps,5871,19470 +1724258700,33Across,11452,26504 +1724258700,Criteo,2783,1390 +1724258700,Smart AdServer,12620,9348 +1724258700,Office 365,22078,107879 +1724258700,Sharepoint Online,4104,101321 +1724258700,Microsoft Windows Live Services Authentication,33866,83186 +1724258700,Telegram,240,240 +1724258700,GISMETEO,2194,9182 +1724258700,Google Inbox,4966,21151 +1724258700,Grammarly,3632,7017 +1724258700,DNS over HTTPS,33771,96720 +1724258700,DNS over HTTPS,552,444 +1724258700,__unknown,191281,173639 +1724258700,__unknown,1454,412 +1724258700,HTTPS,5703,5204 +1724258700,ICMP,7034,0 +1724258700,__unknown,106520,5826684 +1724258700,Google,20854,30544 +1724258700,HTTP,28595,102887 +1724258700,HTTPS,25087,37590 +1724258700,SSL client,20854,30544 +1724258700,Telegram,28595,102887 +1724258700,__unknown,292043,7573844 +1724258700,HTTP,18779,87330 +1724258700,HTTPS,26389,31385 +1724258700,SSL client,16714,19678 +1724258700,Google Accounts Authentication,16714,19678 +1724258700,ICMP,1458,518 +1724258700,Telegram,18779,87330 +1724258700,__unknown,788802,28191152 +1724258700,Google,30579,40023 +1724258700,HTTP,386,992 +1724258700,HTTPS,71028,194404 +1724258700,SSL client,30579,40023 +1724258700,Samsung,386,992 +1724258700,ICMP,476,148 +1724258700,Telegram,935,512 +1724258700,__unknown,2569832,43121468 +1724258700,BitTorrent,310,496 +1724258700,DHCPv6,163,0 +1724258700,Google APIs,10659,30251 +1724258700,Google Drive,21846,35975 +1724258700,Google,192588,440209 +1724258700,Google Translate,5557,11758 +1724258700,Chrome,3748,1928 +1724258700,DNS,13246,0 +1724258700,Firefox,2058,2858 +1724258700,Gmail,5470,7909 +1724258700,HTTP,9012,7511 +1724258700,Microsoft Update,646,505 +1724258700,NTP,12660,2910 +1724258700,SSL,797,7092 +1724258700,VKontakte,1673,6035 +1724258700,Odnoklassniki,2520,7304 +1724258700,HTTPS,504765,1707222 +1724258700,Mozilla,1988,4611 +1724258700,SSL client,254604,637517 +1724258700,Box,1404,5023 +1724258700,Yandex,7854,76398 +1724258700,Microsoft CryptoAPI,3206,2725 +1724258700,Google Hangouts,797,7092 +1724258700,ICMP,21462,18082 +1724258700,Telegram,625,295 +1724258700,DNS over HTTPS,18483,47261 +1724258700,__unknown,1463075,20026658 +1724258700,Apple Update,2082759,96840784 +1724258700,BitTorrent,459,198 +1724258700,Eset,507,553 +1724258700,Google APIs,6481,18427 +1724258700,Google,149413,211459 +1724258700,BitTorrent tracker,459,198 +1724258700,Chrome,20418,11646 +1724258700,DNS,62818,55780 +1724258700,HTTP,477629,11025452 +1724258700,Launchpad,3200,2480 +1724258700,Microsoft Update,2269,1836 +1724258700,NTP,12660,2910 +1724258700,SSL,1265,7911 +1724258700,STUN,3362,2738 +1724258700,VKontakte,19457,41136 +1724258700,Odnoklassniki,1924,6167 +1724258700,Advanced Packaging Tool,31610,29301 +1724258700,HTTPS,3409695,103012724 +1724258700,Apple sites,12705,40571 +1724258700,iCloud,14865,48493 +1724258700,SSL client,2327895,97351670 +1724258700,Pubmatic,1339,4953 +1724258700,Amazon Web Services,1139,6508 +1724258700,Ubuntu Update Manager,22300,21077 +1724258700,Microsoft,322729,10898668 +1724258700,NIH,2539,6651 +1724258700,Mail.Ru,6478,20646 +1724258700,Siri,8063,7259 +1724258700,Yandex,15444,83461 +1724258700,Ubuntu,7810,7588 +1724258700,Microsoft CryptoAPI,6346,5389 +1724258700,Microsoft NCSI,411,487 +1724258700,Apple Maps,2917,10719 +1724258700,Google Hangouts,1265,7911 +1724258700,ICMP,11077,3404 +1724258700,Telegram,4851,10155 +1724258700,Edge Chromium,2108,5458 +1724258700,DNS over TLS,3303,14310 +1724258700,DNS over HTTPS,29348,97721 +1724259000,__unknown,111351,118733 +1724259000,HTTPS,49656,1056279 +1724259000,SSL client,49656,1056279 +1724259000,Yandex,49656,1056279 +1724259000,__unknown,27423,14160 +1724259000,__unknown,37637,26115 +1724259000,HTTPS,17895,17171 +1724259000,SSL client,17895,17171 +1724259000,Yandex,17895,17171 +1724259000,__unknown,837698,476192 +1724259000,HTTPS,1453939,362148 +1724259000,HTTPS,313764,125780 +1724259000,SSL client,313764,125780 +1724259000,Yandex,313764,125780 +1724259000,Google,64617,47240 +1724259000,HTTPS,111206,100802 +1724259000,SSL client,111206,100802 +1724259000,Mail.Ru,46589,53562 +1724259000,ICMP,9546,0 +1724259000,HTTPS,85961,48002 +1724259000,ICMP,10148,0 +1724259000,__unknown,3903,21313 +1724259000,Dropbox,563778,56218 +1724259000,HTTPS,1416540,478863 +1724259000,SSL client,1390947,262324 +1724259000,Mail.Ru,79996,24992 +1724259000,Yandex,41491,151668 +1724259000,Dropbox Download,705682,29446 +1724259000,__unknown,112903,356559 +1724259000,Google,31005,31982 +1724259000,Gmail,31460,46935 +1724259000,Google Analytics,7291,7596 +1724259000,TwitchTV,250423,18753 +1724259000,HTTPS,587555,3690513 +1724259000,SSL client,381068,240546 +1724259000,Mail.Ru,25819,97408 +1724259000,Yandex,13191,33127 +1724259000,Google Play,21879,4745 +1724259000,__unknown,67991,23449 +1724259000,Bing,5116,30539 +1724259000,Dropbox,3342,2538 +1724259000,Google APIs,9017,18980 +1724259000,Google,13153,28642 +1724259000,Android browser,974,2635 +1724259000,Gmail,10991,17128 +1724259000,HTTP,1917,3611 +1724259000,VKontakte,20802,16229 +1724259000,HTTPS,414354,2841820 +1724259000,iCloud,1556,6125 +1724259000,Mozilla,14166,14977 +1724259000,SSL client,206184,329678 +1724259000,Microsoft,20276,38527 +1724259000,VeriSign,943,976 +1724259000,Mail.Ru,53502,52818 +1724259000,Yandex,36042,59730 +1724259000,GitHub,996,8376 +1724259000,Microsoft CryptoAPI,943,976 +1724259000,Office 365,12070,22062 +1724259000,Battle.net site,3445,5881 +1724259000,GISMETEO,974,2635 +1724259000,Xiaomi,1710,7126 +1724259000,__unknown,1095982,3278399 +1724259000,Bing,10112,15540 +1724259000,Dropbox,16203,4554 +1724259000,Google APIs,9646,31439 +1724259000,Google,173817,246744 +1724259000,MSN,10886,24029 +1724259000,Android browser,618,1062 +1724259000,Chrome,565,140 +1724259000,HTTP,10069,139383 +1724259000,Skype,3305,7922 +1724259000,SSL,1543,1392 +1724259000,VKontakte,23325,37497 +1724259000,TwitchTV,24726,8209 +1724259000,Advanced Packaging Tool,4385,134907 +1724259000,IMAPS,7266,27553 +1724259000,HTTPS,3848706,24639946 +1724259000,Apple sites,4052,17100 +1724259000,iCloud,34262,62228 +1724259000,Mozilla,9562,15369 +1724259000,Avast,12074,29973 +1724259000,SSL client,2756093,9261414 +1724259000,Ad Nexus,60437,46989 +1724259000,Pubmatic,7787,12430 +1724259000,Amazon Web Services,4909,30016 +1724259000,Ubuntu Update Manager,4385,134907 +1724259000,Microsoft,367170,829455 +1724259000,Mail.Ru,1224251,1783727 +1724259000,Yandex,530450,5657144 +1724259000,Ubuntu,425,140 +1724259000,Microsoft CryptoAPI,2059,1842 +1724259000,uTorrent,21864,39168 +1724259000,Viber,18788,26185 +1724259000,Apple Maps,2074,4713 +1724259000,33Across,10770,14926 +1724259000,Criteo,5059,6604 +1724259000,Mixpanel,53733,8662 +1724259000,WeChat,1027,663 +1724259000,Exchange Online,1247,6467 +1724259000,Office 365,21742,72848 +1724259000,Microsoft Windows Live Services Authentication,22411,39584 +1724259000,Yandex Market,52000,166572 +1724259000,Office Mobile,19431,10795 +1724259000,Telegram,4611,8534 +1724259000,GISMETEO,2074,9238 +1724259000,DNS over HTTPS,25029,83698 +1724259000,SSL,11805,6869 +1724259000,APNS,11805,6869 +1724259000,SSL client,11805,6869 +1724259000,HTTPS,13773,20415 +1724259000,SSL client,13773,20415 +1724259000,DNS over HTTPS,13773,20415 +1724259000,__unknown,859,338 +1724259000,__unknown,76260,55347 +1724259000,Google,19010,17369 +1724259000,HTTPS,141629,95273 +1724259000,SSL client,19010,17369 +1724259000,ICMP,3116,0 +1724259000,__unknown,122,4999 +1724259000,CoAP,3528,2592 +1724259000,__unknown,4485438,113099242 +1724259000,Google Drive,480828,558149 +1724259000,HTTPS,497744,572409 +1724259000,Mozilla,14202,7041 +1724259000,SSL client,495030,565190 +1724259000,Apple Maps,2714,7219 +1724259000,ICMP,1316,0 +1724259000,__unknown,3011292,209689 +1724259000,Google,59479,29393 +1724259000,SSL,70523,28339 +1724259000,HTTPS,429559,601905 +1724259000,APNS,70523,28339 +1724259000,SSL client,233992,217271 +1724259000,ICMP,5346,5346 +1724259000,Telegram,102889,154201 +1724259000,DNS over HTTPS,2328,5898 +1724259000,__unknown,1739365,4622489 +1724259000,BitTorrent,248,496 +1724259000,Google APIs,74320,23632 +1724259000,Google Drive,15662,21441 +1724259000,Google,37646,184598 +1724259000,Skype Auth,700,398 +1724259000,DNS,20406,0 +1724259000,Gmail,14535,13764 +1724259000,Google Analytics,1996,6356 +1724259000,HTTP,6817,296781 +1724259000,NetBIOS-dgm,243,0 +1724259000,NTP,37980,8730 +1724259000,Skype,700,398 +1724259000,STUN,1550,2750 +1724259000,VKontakte,6892,51426 +1724259000,Odnoklassniki,4383,13824 +1724259000,HTTPS,466940,1385789 +1724259000,WhatsApp,5474,23803 +1724259000,Mozilla,1607,4671 +1724259000,SSL client,185219,392475 +1724259000,Pubmatic,5291,8800 +1724259000,Box,1530,5023 +1724259000,Amazon Web Services,1259,6568 +1724259000,Microsoft,5062,294389 +1724259000,Mail.Ru,9050,14730 +1724259000,Yandex,2443,17621 +1724259000,Microsoft CryptoAPI,1755,2392 +1724259000,Google Play,1120,5029 +1724259000,Google Accounts Authentication,7485,14992 +1724259000,ICMP,21991,10508 +1724259000,DNS over HTTPS,4980,16427 +1724259000,__unknown,1000548,2892593 +1724259000,DHCPv6,978,0 +1724259000,Google APIs,14888,30471 +1724259000,Google,72085,118204 +1724259000,Kaspersky,513,541 +1724259000,MSN,578,502 +1724259000,Chrome,13780,9950 +1724259000,DNS,42982,40766 +1724259000,Gmail,17405,45743 +1724259000,HTTP,352850,6834280 +1724259000,Launchpad,3200,2480 +1724259000,Microsoft Update,1287,1003 +1724259000,NetBIOS-dgm,250,0 +1724259000,NTP,990,990 +1724259000,SSL,797,7092 +1724259000,STUN,7100,9380 +1724259000,Odnoklassniki,3759,2734 +1724259000,Advanced Packaging Tool,35284,163089 +1724259000,HTTPS,786300,8462416 +1724259000,Apple sites,2042,9250 +1724259000,iCloud,997,6560 +1724259000,Mozilla,2303,4784 +1724259000,Avast,382,391 +1724259000,SSL client,215438,2381940 +1724259000,Box,1404,5023 +1724259000,Ubuntu Update Manager,28466,157291 +1724259000,Microsoft,221294,6593983 +1724259000,Mail.Ru,15571,32967 +1724259000,Yandex,54280,2083174 +1724259000,Ubuntu,5462,5224 +1724259000,Microsoft CryptoAPI,3250,2709 +1724259000,Microsoft NCSI,411,487 +1724259000,Microsoft WNS,1151,8532 +1724259000,33Across,4771,9738 +1724259000,Google Play,12162,1682 +1724259000,Microsoft Windows Live Services Authentication,571,4306 +1724259000,Google Hangouts,797,7092 +1724259000,ICMP,9382,5328 +1724259000,Telegram,11115,25373 +1724259000,Edge Chromium,3222,8831 +1724259000,DNS over TLS,1145,4770 +1724259000,DNS over HTTPS,10914,38097 +1724259300,__unknown,245760,76403 +1724259300,HTTPS,15836,21979 +1724259300,SSL client,15836,21979 +1724259300,Yandex,15836,21979 +1724259300,HTTPS,3125030,2584104 +1724259300,Zoom,2986360,2457258 +1724259300,__unknown,62083,33712 +1724259300,DNS over HTTPS,254971,574260 +1724259300,__unknown,38968,29353 +1724259300,HTTPS,18333,72352 +1724259300,HTTPS,105253,110467 +1724259300,HTTPS,63141,13268 +1724259300,HTTPS,21377,150623 +1724259300,SSL client,7392,124990 +1724259300,Microsoft,7392,124990 +1724259300,Dropbox,137191,27428 +1724259300,Skype,5587,17594 +1724259300,HTTPS,1415885,325388 +1724259300,SSL client,361281,115107 +1724259300,Dropbox Download,164154,8103 +1724259300,Telegram,54349,61982 +1724259300,__unknown,780,0 +1724259300,Google Drive,153387,189788 +1724259300,Gmail,9937,32421 +1724259300,IMAPS,9937,32421 +1724259300,HTTPS,168878,213348 +1724259300,SSL client,173695,235808 +1724259300,Yandex,10371,13599 +1724259300,__unknown,48302,32565 +1724259300,Dropbox,3143,1367 +1724259300,Google,1710,1548 +1724259300,McAfee,9562,242440 +1724259300,MSN,4886,6046 +1724259300,Gmail,10195,5674 +1724259300,HTTP,559,1148 +1724259300,TeamViewer,2969,17694 +1724259300,HTTPS,1424849,24875909 +1724259300,Mozilla,2408,5267 +1724259300,SSL client,1103205,17586279 +1724259300,Ad Nexus,7540,6208 +1724259300,Microsoft,9336,24558 +1724259300,Mail.Ru,310484,174138 +1724259300,Yandex,93370,267786 +1724259300,Microsoft CryptoAPI,559,1148 +1724259300,Office 365,637467,16812792 +1724259300,Battle.net site,2258,3973 +1724259300,Google Inbox,8436,17936 +1724259300,__unknown,764601,224579 +1724259300,Bing,11098,53257 +1724259300,Dropbox,9872,2770 +1724259300,Google APIs,13776,27577 +1724259300,Google,122749,209095 +1724259300,HTTP,9028,15878 +1724259300,SSL,4719,11432 +1724259300,VKontakte,28926,38132 +1724259300,TwitchTV,7797,6974 +1724259300,Advanced Packaging Tool,1214,1193 +1724259300,IMAPS,14069,55147 +1724259300,HTTPS,2374782,18645522 +1724259300,WhatsApp,2286,7672 +1724259300,Mozilla,15491,13577 +1724259300,Avast,4370,18430 +1724259300,SSL client,1370946,4883291 +1724259300,Ad Nexus,15033,12450 +1724259300,Pubmatic,3541,6190 +1724259300,Box,1344,4957 +1724259300,Amazon Web Services,3565,21542 +1724259300,Ubuntu Update Manager,1214,1193 +1724259300,Microsoft,66086,135146 +1724259300,Mail.Ru,736526,925231 +1724259300,Yandex,257483,2593068 +1724259300,GitHub,19144,679298 +1724259300,Ubuntu,425,391 +1724259300,Microsoft CryptoAPI,1904,2724 +1724259300,Apple Maps,5909,23450 +1724259300,33Across,6404,22817 +1724259300,Criteo,7842,8119 +1724259300,Exchange Online,2385,14199 +1724259300,Office 365,13310,48690 +1724259300,Microsoft Windows Live Services Authentication,14283,28035 +1724259300,Google Hangouts,1812,2242 +1724259300,Weborama,8456,17655 +1724259300,Telegram,14434,50243 +1724259300,GISMETEO,1939,2783 +1724259300,Edge Chromium,994,3303 +1724259300,DNS over HTTPS,21708,63854 +1724259300,_err_4655,841,603 +1724259300,__unknown,727,206 +1724259300,__unknown,1898,526 +1724259300,__unknown,291490,2901059 +1724259300,__unknown,188,229 +1724259300,HTTPS,33188,106474 +1724259300,SSL client,6715,62892 +1724259300,Yandex,6715,62892 +1724259300,__unknown,403720,138156 +1724259300,__unknown,60,66 +1724259300,HTTPS,36765,59806 +1724259300,SSL client,18570,33759 +1724259300,Lijit,18570,33759 +1724259300,__unknown,9334,88242 +1724259300,VKontakte,34214,37046 +1724259300,HTTPS,85380,274347 +1724259300,SSL client,34214,37046 +1724259300,ICMP,550,222 +1724259300,__unknown,1050483,2278384 +1724259300,BITS,1913,4479 +1724259300,BitTorrent,496,496 +1724259300,Google APIs,13487,28581 +1724259300,Google,55944,166060 +1724259300,Google Translate,4154,7495 +1724259300,Chrome,1335,869 +1724259300,DNS,15137,0 +1724259300,Google Analytics,14676,8785 +1724259300,HTTP,7573,9076 +1724259300,NTP,12840,3090 +1724259300,STUN,2210,2950 +1724259300,VKontakte,2684,5805 +1724259300,HTTPS,411608,2774330 +1724259300,Mozilla,1607,4671 +1724259300,SSL client,112159,273292 +1724259300,Box,1404,5023 +1724259300,Microsoft CryptoAPI,4325,3728 +1724259300,Google Accounts Authentication,4465,12205 +1724259300,ICMP,45913,11618 +1724259300,Telegram,2742,1453 +1724259300,Google Inbox,6250,20643 +1724259300,Grammarly,2941,1914 +1724259300,DNS over HTTPS,15003,38467 +1724259300,Google Meet,4547,12110 +1724259300,CoAP,1274,1008 +1724259300,__unknown,852405,3223832 +1724259300,Apple Update,12333,329012 +1724259300,BitTorrent,2258,1756 +1724259300,DHCPv6,978,0 +1724259300,Google APIs,2084,6662 +1724259300,Google,14832,54011 +1724259300,BitTorrent tracker,306,537 +1724259300,DNS,42464,45788 +1724259300,HTTP,148535,1400464 +1724259300,Launchpad,3200,2480 +1724259300,Microsoft Update,641,501 +1724259300,NTP,14032,4319 +1724259300,SSL,31709,13485 +1724259300,STUN,2132,1776 +1724259300,Steam,6616,71145 +1724259300,Advanced Packaging Tool,32458,134251 +1724259300,HTTPS,350057,3422448 +1724259300,APNS,30677,9245 +1724259300,Apple sites,16548,47351 +1724259300,iCloud,11120,22504 +1724259300,SSL client,135043,559966 +1724259300,Amazon Web Services,1319,6568 +1724259300,Ubuntu Update Manager,23244,126363 +1724259300,Microsoft,40462,1127477 +1724259300,VeriSign,566,2141 +1724259300,Mail.Ru,13342,14806 +1724259300,Yandex,13180,29732 +1724259300,Ubuntu,7792,7310 +1724259300,Microsoft CryptoAPI,2354,3608 +1724259300,Microsoft NCSI,1905,2080 +1724259300,Google Accounts Authentication,4554,9911 +1724259300,ICMP,19933,3404 +1724259300,ICMP for IPv6,70,0 +1724259300,Telegram,4514,1547 +1724259300,Google Sign in,6050,1935 +1724259300,Edge Chromium,7211,21594 +1724259300,Grammarly,2182,7633 +1724259300,DNS over TLS,5054,19259 +1724259300,DNS over HTTPS,17606,54468 +1724259600,__unknown,372340,462505 +1724259600,Google,37321,50953 +1724259600,HTTPS,266889,1392042 +1724259600,SSL client,266889,1392042 +1724259600,Mail.Ru,229568,1341089 +1724259600,DNS over HTTPS,47157,103327 +1724259600,HTTPS,109749,121114 +1724259600,Google,146390,829975 +1724259600,HTTPS,146390,829975 +1724259600,SSL client,146390,829975 +1724259600,Google,192119,117127 +1724259600,HTTPS,192119,117127 +1724259600,SSL client,192119,117127 +1724259600,HTTPS,602380,545321 +1724259600,__unknown,1140,0 +1724259600,HTTPS,768151,2857054 +1724259600,SSL client,94986,70543 +1724259600,Yandex,8068,8265 +1724259600,Google Play,79921,50214 +1724259600,Sharepoint Online,6997,12064 +1724259600,__unknown,0,1428 +1724259600,Gmail,5539,15112 +1724259600,IMAPS,5539,15112 +1724259600,HTTPS,80670,49489 +1724259600,SSL client,9875,23940 +1724259600,Yandex,4336,8828 +1724259600,__unknown,4323,8153 +1724259600,Google Translate,6617,10004 +1724259600,HTTPS,3404915,16463200 +1724259600,Google Play Music,433978,147392 +1724259600,SSL client,815128,424197 +1724259600,Mail.Ru,353745,248300 +1724259600,Google Play,20788,18501 +1724259600,__unknown,78081,61511 +1724259600,Dropbox,3341,5268 +1724259600,Google APIs,2871,8927 +1724259600,Google,37527,439927 +1724259600,HTTP,2871,8927 +1724259600,Skype,3033,9860 +1724259600,SSL,1689,1484 +1724259600,HTTPS,820983,17095286 +1724259600,Mozilla,2118,5150 +1724259600,SSL client,552938,11336763 +1724259600,Pubmatic,3182,5711 +1724259600,Microsoft,8302,29358 +1724259600,Mail.Ru,63284,79081 +1724259600,Yandex,407931,10719111 +1724259600,Google Play,12418,12303 +1724259600,Google Hangouts,1689,1484 +1724259600,OneDrive,7795,24083 +1724259600,Battle.net site,2318,5427 +1724259600,DNS over HTTPS,12481,46347 +1724259600,__unknown,600919,1338457 +1724259600,Bing,6770,11181 +1724259600,Dropbox,28679,45969 +1724259600,Google APIs,68560,192905 +1724259600,Google,1050938,571935 +1724259600,MSN,2053,7111 +1724259600,Dell,1111,4306 +1724259600,Gmail,4861,6671 +1724259600,HTTP,4519,8635 +1724259600,Advanced Packaging Tool,527,533 +1724259600,IMAPS,6865,27622 +1724259600,HTTPS,6584387,18482080 +1724259600,Apple sites,5476,21411 +1724259600,iCloud,2931250,68324 +1724259600,Mozilla,4022,10622 +1724259600,Avast,1685,5969 +1724259600,Opera,1279,3742 +1724259600,SSL client,4950454,2146707 +1724259600,Ad Nexus,22847,17828 +1724259600,Pubmatic,5250,7235 +1724259600,CloudFront,3455,17761 +1724259600,Microsoft,118209,244018 +1724259600,Mail.Ru,505835,506468 +1724259600,Yandex,94591,227559 +1724259600,GitHub,2331,6380 +1724259600,Ubuntu,527,533 +1724259600,Microsoft Azure,4469,17588 +1724259600,Viber,1456,7698 +1724259600,33Across,7295,11752 +1724259600,Criteo,5566,2780 +1724259600,Office 365,15819,35484 +1724259600,Microsoft Windows Live Services Authentication,23073,52942 +1724259600,Office Mobile,33818,45876 +1724259600,Telegram,252,252 +1724259600,Stripe,2860,5986 +1724259600,DNS over HTTPS,6666,28428 +1724259600,_err_4655,661,538 +1724259600,HTTPS,71587,38733 +1724259600,__unknown,124617,120499 +1724259600,HTTPS,38477,19458 +1724259600,__unknown,57158,51611 +1724259600,HTTPS,52805,26704 +1724259600,__unknown,12724,273142 +1724259600,Google,18635,19859 +1724259600,HTTPS,71090,87626 +1724259600,SSL client,22244,28776 +1724259600,ICMP,16836,5106 +1724259600,DNS over HTTPS,3609,8917 +1724259600,__unknown,869411,2026144 +1724259600,BitTorrent,1240,496 +1724259600,DHCPv6,163,0 +1724259600,Google APIs,84013,46268 +1724259600,Google,205066,150508 +1724259600,Google Translate,10814,15918 +1724259600,DNS,19016,0 +1724259600,Gmail,12884,10879 +1724259600,HTTP,2902,3346 +1724259600,NTP,810,810 +1724259600,STUN,4152,888 +1724259600,VKontakte,3027,6260 +1724259600,HTTPS,511903,1672827 +1724259600,WhatsApp,5318,20703 +1724259600,Avast,857,8616 +1724259600,SSL client,336427,547811 +1724259600,Yandex,15220,297383 +1724259600,Microsoft CryptoAPI,1924,1746 +1724259600,ICMP,18347,11160 +1724259600,ICMP for IPv6,70,0 +1724259600,Zoom,4271,9864 +1724259600,DNS over HTTPS,24998,67163 +1724259600,Google Meet,4546,11979 +1724259600,__unknown,730037,2603998 +1724259600,Google APIs,4078,12313 +1724259600,Google,35574,122996 +1724259600,Kaspersky,1099,1082 +1724259600,MSN,577,501 +1724259600,Android browser,740,932 +1724259600,Apple Mail,5928,16636 +1724259600,Chrome,9777,5818 +1724259600,DNS,39170,40518 +1724259600,Firefox,822,1130 +1724259600,HTTP,95582,119082 +1724259600,Launchpad,3200,2480 +1724259600,Microsoft Update,2264,1845 +1724259600,NetBIOS-dgm,243,0 +1724259600,NTP,540,540 +1724259600,STUN,2132,1850 +1724259600,YouTube,6358,7314 +1724259600,VKontakte,1319,3859 +1724259600,Odnoklassniki,3790,7513 +1724259600,Advanced Packaging Tool,33101,30868 +1724259600,IMAPS,5928,16636 +1724259600,HTTPS,395736,3007535 +1724259600,Apple sites,6363,25773 +1724259600,iCloud,21098,47945 +1724259600,Avast,764,782 +1724259600,SSL client,119758,1418618 +1724259600,Taobao,740,932 +1724259600,Ubuntu Update Manager,23935,22950 +1724259600,Mail.Ru,1144,5244 +1724259600,Yandex,29749,1153387 +1724259600,Ubuntu,6816,6356 +1724259600,Microsoft CryptoAPI,13680,30279 +1724259600,Microsoft WNS,577,501 +1724259600,Office 365,1650,2919 +1724259600,ICMP,12244,4736 +1724259600,Edge Chromium,6217,19515 +1724259600,Grammarly,4492,15628 +1724259600,DNS over TLS,2158,9541 +1724259600,DNS over HTTPS,8555,24581 +1724259900,__unknown,1966937,1153270 +1724259900,__unknown,44393,83405 +1724259900,HTTPS,70159553,3332939397 +1724259900,Gmail,18588,27640 +1724259900,IMAPS,18588,27640 +1724259900,SSL client,18588,27640 +1724259900,HTTPS,78029,31362 +1724259900,Google,165966,184297 +1724259900,HTTPS,1187716,1064320 +1724259900,SSL client,165966,184297 +1724259900,HTTPS,3205,9787 +1724259900,SSL client,3205,9787 +1724259900,Yandex,3205,9787 +1724259900,__unknown,1490,0 +1724259900,HTTPS,120428,70718 +1724259900,SSL client,5121,3316 +1724259900,Yandex,5121,3316 +1724259900,Dropbox,532339,74683 +1724259900,HTTPS,19868416,652687 +1724259900,SSL client,19844424,642468 +1724259900,Mail.Ru,85469,26906 +1724259900,Yandex,18567346,509930 +1724259900,Dropbox Download,659270,30949 +1724259900,Google APIs,7269,5752 +1724259900,HTTPS,39447,36348 +1724259900,SSL client,39447,36348 +1724259900,Google Play,32178,30596 +1724259900,__unknown,639855,678566 +1724259900,Bing,12564,12870 +1724259900,Dropbox,1631,1475 +1724259900,Google,13246,28017 +1724259900,Google Analytics,15992,16601 +1724259900,HTTP,919,1187 +1724259900,Microsoft Update,580,447 +1724259900,SSL,46654,12168 +1724259900,VKontakte,8312,10983 +1724259900,HTTPS,748151,8119061 +1724259900,APNS,46654,12168 +1724259900,Apple sites,1829,8420 +1724259900,Mozilla,5556,5914 +1724259900,SSL client,393657,1247680 +1724259900,Pubmatic,1772,4773 +1724259900,CloudFront,6228,115028 +1724259900,Microsoft,15520,36317 +1724259900,Mail.Ru,152492,108382 +1724259900,Yandex,50493,442660 +1724259900,Microsoft CryptoAPI,580,447 +1724259900,33Across,2711,2527 +1724259900,Office 365,26714,141044 +1724259900,GISMETEO,2074,9256 +1724259900,Google Inbox,28665,286958 +1724259900,Stripe,1204,4287 +1724259900,DNS over HTTPS,5537,16447 +1724259900,__unknown,613106,625584 +1724259900,Bing,1986,9329 +1724259900,Dropbox,2817,4511 +1724259900,Google APIs,18275,18938 +1724259900,Google,223866,142448 +1724259900,MSN,7301,18728 +1724259900,QQ,2673,6160 +1724259900,HTTP,14203,148301 +1724259900,iTunes,1092,7772 +1724259900,Reddit,5554,26657 +1724259900,SSL,14359,6717 +1724259900,TeamViewer,1584,8893 +1724259900,Advanced Packaging Tool,3375,3658 +1724259900,IMAPS,7108,27525 +1724259900,HTTPS,1974520,22040332 +1724259900,WhatsApp,4953,144172 +1724259900,Apple sites,8299,46062 +1724259900,iCloud,12773,33021 +1724259900,Mozilla,5449,13710 +1724259900,Avast,2004,4402 +1724259900,SSL client,1181206,1629497 +1724259900,Ad Nexus,51794,42816 +1724259900,Pubmatic,7202,12380 +1724259900,Box,1344,5023 +1724259900,Taobao,1928,6703 +1724259900,Ubuntu Update Manager,2279,2556 +1724259900,Microsoft,140650,162702 +1724259900,Mail.Ru,318585,368447 +1724259900,Yandex,180472,204324 +1724259900,Ubuntu,1096,1102 +1724259900,Microsoft CryptoAPI,3221,9260 +1724259900,Alibaba,4215,132339 +1724259900,33Across,13272,28267 +1724259900,Garmin,2188,5774 +1724259900,Exchange Online,11412,16019 +1724259900,Office 365,133270,249639 +1724259900,Sharepoint Online,3325,8190 +1724259900,Microsoft Windows Live Services Authentication,17235,45383 +1724259900,Alipay,1898,1431 +1724259900,Telegram,342862,15244756 +1724259900,GISMETEO,2194,9238 +1724259900,DNS over HTTPS,10936,48419 +1724259900,HTTPS,73639,32290 +1724259900,__unknown,727,206 +1724259900,__unknown,1454,412 +1724259900,HTTP,42170,1793129 +1724259900,__unknown,4827,3270 +1724259900,HTTP,8258,5718 +1724259900,HTTPS,2896,5999 +1724259900,HTTP,23782,18403 +1724259900,HTTPS,13570,19510 +1724259900,SSL client,13570,19510 +1724259900,Yandex,13570,19510 +1724259900,Telegram,5665,5011 +1724259900,__unknown,215,107 +1724259900,HTTPS,23789,9910 +1724259900,ICMP,7216,0 +1724259900,__unknown,73421,107795 +1724259900,VKontakte,30349,103536 +1724259900,HTTPS,39651,119275 +1724259900,SSL client,30349,103536 +1724259900,ICMP,2134,1954 +1724259900,Telegram,1007,516 +1724259900,__unknown,2130485,4253262 +1724259900,BITS,1917,4522 +1724259900,BitTorrent,868,496 +1724259900,DHCPv6,815,0 +1724259900,Google APIs,45156,37853 +1724259900,Google Drive,18248,21421 +1724259900,Google,60745,340365 +1724259900,Google Translate,9762,14200 +1724259900,Kaspersky,517,1445 +1724259900,DNS,14651,0 +1724259900,Gmail,6029,9987 +1724259900,HTTP,5481,9938 +1724259900,NetBIOS-dgm,250,0 +1724259900,NTP,810,810 +1724259900,STUN,11740,962 +1724259900,VKontakte,8538,15940 +1724259900,HTTPS,351744,1042321 +1724259900,iCloud,5980,12980 +1724259900,SSL client,179933,806580 +1724259900,Mail.Ru,6089,15073 +1724259900,Yandex,12650,321622 +1724259900,ICMP,42663,16010 +1724259900,ICMP for IPv6,70,0 +1724259900,Telegram,1354,1371 +1724259900,DNS over HTTPS,22309,56893 +1724259900,Google Meet,4548,12189 +1724259900,__unknown,959562,3086429 +1724259900,BITS,3423,19955 +1724259900,BitTorrent,1455,0 +1724259900,DHCPv6,163,0 +1724259900,Google APIs,68262,16744 +1724259900,Google,19742,55332 +1724259900,QQ,540,2976 +1724259900,BitTorrent tracker,153,0 +1724259900,Chrome,1141,1143 +1724259900,DNS,52047,48900 +1724259900,HTTP,117224,122241 +1724259900,iTunes,853,5875 +1724259900,Launchpad,3496,2480 +1724259900,Microsoft Update,1282,1014 +1724259900,NTP,24690,5190 +1724259900,SSL,1496,7913 +1724259900,STUN,2132,1924 +1724259900,VKontakte,16417,27838 +1724259900,Advanced Packaging Tool,30627,27250 +1724259900,HTTPS,471192,2541499 +1724259900,Apple sites,14206,25414 +1724259900,iCloud,17391,32485 +1724259900,SSL client,260454,1441449 +1724259900,Ubuntu Update Manager,19960,18700 +1724259900,Microsoft,3423,19955 +1724259900,Yandex,22794,1176819 +1724259900,Ubuntu,7596,6531 +1724259900,Microsoft CryptoAPI,5019,8384 +1724259900,Google Play,82499,51667 +1724259900,Google Hangouts,3116,15958 +1724259900,ICMP,6596,3330 +1724259900,Telegram,5127,2035 +1724259900,Google Sign in,6200,4231 +1724259900,Edge Chromium,2635,6821 +1724259900,DNS over TLS,4538,19281 +1724259900,DNS over HTTPS,21014,74551 +1724260200,__unknown,15540,17357 +1724260200,__unknown,97011,93096 +1724260200,Skype,26636,23121 +1724260200,HTTPS,48001,52695 +1724260200,SSL client,48001,52695 +1724260200,Yandex,21365,29574 +1724260200,HTTPS,134205,4428019 +1724260200,__unknown,1698,6406 +1724260200,HTTPS,443754,507314 +1724260200,__unknown,391502,224482 +1724260200,Google,50174,61775 +1724260200,HTTPS,76547,97210 +1724260200,SSL client,50174,61775 +1724260200,DNS over HTTPS,246139,536483 +1724260200,Windows Live,9807,9929 +1724260200,HTTPS,9807,9929 +1724260200,SSL client,9807,9929 +1724260200,HTTPS,10284,12445 +1724260200,SSL client,10284,12445 +1724260200,Yandex,10284,12445 +1724260200,Windows Live,32687,8170 +1724260200,SSL,5475,12175 +1724260200,HTTPS,36931,124956 +1724260200,SSL client,36931,124956 +1724260200,Microsoft,4244,116786 +1724260200,HTTPS,70940,75834 +1724260200,SSL client,70940,75834 +1724260200,Microsoft,18332,8496 +1724260200,Telegram,52608,67338 +1724260200,HTTPS,74151,53090 +1724260200,HTTPS,3362,1804 +1724260200,Dropbox,141121,25164 +1724260200,Skype,3977,8741 +1724260200,HTTPS,724850,6416335 +1724260200,SSL client,322566,118335 +1724260200,Microsoft,8268,68890 +1724260200,Dropbox Download,166364,8347 +1724260200,Microsoft Teams,2836,7193 +1724260200,TwitchTV,232689,16939 +1724260200,HTTPS,858118,7031554 +1724260200,SSL client,232689,16939 +1724260200,__unknown,94789,107175 +1724260200,Dropbox,6967,1403 +1724260200,Google APIs,6992,9649 +1724260200,Google,4594,21816 +1724260200,Gmail,21141,89683 +1724260200,Google Analytics,4088,7127 +1724260200,iTunes,3487,18504 +1724260200,HTTPS,2408834,12642118 +1724260200,Mozilla,13548,35905 +1724260200,SSL client,156896,538033 +1724260200,CloudFront,3578,51473 +1724260200,Microsoft,21527,33998 +1724260200,Mail.Ru,24809,47331 +1724260200,Yandex,12293,52263 +1724260200,GitHub,996,8377 +1724260200,Apple Maps,3282,40993 +1724260200,Alibaba,4012,134437 +1724260200,Office 365,27026,24676 +1724260200,Alipay,1838,1391 +1724260200,Telegram,18084,79452 +1724260200,DNS over HTTPS,2360,3756 +1724260200,__unknown,580698,775878 +1724260200,Dropbox,2176,5111 +1724260200,Google APIs,22100,81690 +1724260200,Google,591429,3257335 +1724260200,MSN,1272,7350 +1724260200,Gmail,2985,14081 +1724260200,HTTP,3881,43057 +1724260200,iTunes,6895,93088 +1724260200,SSL,3385,16026 +1724260200,YouTube,3566,6525 +1724260200,VKontakte,18895,35854 +1724260200,Odnoklassniki,985,4951 +1724260200,Steam,1237,41810 +1724260200,HTTPS,3008677,16084085 +1724260200,Apple sites,21111,80698 +1724260200,iCloud,124991,308849 +1724260200,Mozilla,26531,36788 +1724260200,SSL client,1726116,5507089 +1724260200,Ad Nexus,75424,62595 +1724260200,Pubmatic,7268,12446 +1724260200,Microsoft,103192,154515 +1724260200,Mail.Ru,163891,204092 +1724260200,Yandex,396466,739832 +1724260200,Apple Maps,9750,61143 +1724260200,33Across,7355,11708 +1724260200,Criteo,2216,5197 +1724260200,Smart AdServer,2607,5489 +1724260200,Office 365,61154,185773 +1724260200,Sharepoint Online,6830,25595 +1724260200,Microsoft Windows Live Services Authentication,23565,59088 +1724260200,Google Hangouts,735,6971 +1724260200,Office Mobile,22246,38228 +1724260200,GISMETEO,2260,9181 +1724260200,Google Inbox,12294,34313 +1724260200,Grammarly,12611,10032 +1724260200,DNS over HTTPS,18238,74828 +1724260200,__unknown,5474,824 +1724260200,HTTP,18607,151322 +1724260200,ICMP,12240,12360 +1724260200,Telegram,18607,151322 +1724260200,__unknown,215,225 +1724260200,ICMP,7620,7740 +1724260200,SSL,3183,23556 +1724260200,SSL client,3183,23556 +1724260200,Google Hangouts,3183,23556 +1724260200,ICMP,21566,0 +1724260200,__unknown,216,132 +1724260200,ICMP,820,0 +1724260200,CoAP,2842,2160 +1724260200,__unknown,23558,1191277 +1724260200,Google,3916,10274 +1724260200,HTTPS,39710,193888 +1724260200,Apple sites,2893,13047 +1724260200,SSL client,6809,23321 +1724260200,ICMP,7114,5784 +1724260200,Zoom,5585,10558 +1724260200,__unknown,1277529,2836880 +1724260200,BitTorrent,1579,496 +1724260200,Google APIs,45505,25044 +1724260200,Google Drive,9570,10949 +1724260200,Google,81362,176174 +1724260200,BitTorrent tracker,153,0 +1724260200,DNS,19217,190 +1724260200,Gmail,41539,39525 +1724260200,HTTP,3078,3662 +1724260200,Microsoft Update,641,507 +1724260200,NTP,13560,3810 +1724260200,VKontakte,38899,12999 +1724260200,Odnoklassniki,2609,7559 +1724260200,HTTPS,330990,543056 +1724260200,WhatsApp,1712,4834 +1724260200,Apple sites,3171,16113 +1724260200,Mozilla,5543,7557 +1724260200,SSL client,233891,310749 +1724260200,Microsoft,922,7532 +1724260200,Siri,1688,5022 +1724260200,Microsoft CryptoAPI,1815,1573 +1724260200,Google Play,3083,2275 +1724260200,ICMP,36689,12506 +1724260200,Telegram,525,309 +1724260200,DNS over HTTPS,13822,42916 +1724260200,__unknown,985868,1873951 +1724260200,DHCPv6,978,0 +1724260200,Dropbox,667,304 +1724260200,Google APIs,8316,17951 +1724260200,Google Drive,2017,8220 +1724260200,Google,23794,77637 +1724260200,DNS,49076,44780 +1724260200,Gmail,7791,8641 +1724260200,HTTP,171079,3874081 +1724260200,Launchpad,2560,1984 +1724260200,Microsoft Update,11416,655243 +1724260200,NTP,450,450 +1724260200,SSL,855,7033 +1724260200,STUN,2132,1776 +1724260200,YouTube,1627,9526 +1724260200,VKontakte,3207,6285 +1724260200,Steam,697,4246 +1724260200,Advanced Packaging Tool,32508,30207 +1724260200,HTTPS,369805,1400056 +1724260200,Apple sites,3681,26469 +1724260200,iCloud,9923,16918 +1724260200,Mozilla,2058,4535 +1724260200,Avast,764,782 +1724260200,SSL client,133564,295077 +1724260200,Ubuntu Update Manager,23203,22177 +1724260200,Microsoft,53460,3128114 +1724260200,NIH,2807,6651 +1724260200,Mail.Ru,30298,40480 +1724260200,Siri,6394,6962 +1724260200,Yandex,7216,40281 +1724260200,Ubuntu,8870,8347 +1724260200,Microsoft CryptoAPI,15145,13249 +1724260200,Microsoft NCSI,925,974 +1724260200,Microsoft WNS,1326,15986 +1724260200,Dropbox Download,16264,827 +1724260200,Google Hangouts,855,7033 +1724260200,ICMP,24264,5106 +1724260200,Firebase Crashlytics,1983,6707 +1724260200,Telegram,5944,2365 +1724260200,Edge Chromium,587,2005 +1724260200,DNS over HTTPS,11315,30422 +1724260500,__unknown,11880,12870 +1724260500,HTTPS,15900,20338 +1724260500,SSL client,15900,20338 +1724260500,Yandex,15900,20338 +1724260500,HTTPS,19047,23493 +1724260500,HTTPS,9283,12531 +1724260500,SSL client,9283,12531 +1724260500,Yandex,9283,12531 +1724260500,HTTPS,7357,39052 +1724260500,SSL client,7357,39052 +1724260500,Yandex,7357,39052 +1724260500,ICMP,18942,0 +1724260500,HTTPS,46969,109730 +1724260500,SSL client,46969,109730 +1724260500,Microsoft,46969,109730 +1724260500,STUN,20664,18722 +1724260500,HTTPS,50632,40969 +1724260500,__unknown,1817,20716 +1724260500,HTTPS,43088,23395 +1724260500,HTTPS,1447811,1164715 +1724260500,HTTPS,10694,10298 +1724260500,__unknown,41735,36409 +1724260500,Dropbox,5936,222534 +1724260500,Google APIs,5530,10205 +1724260500,Google,3929,10064 +1724260500,MSN,5269,29405 +1724260500,Gmail,6060,3412 +1724260500,iTunes,12007,164123 +1724260500,VKontakte,1305,4577 +1724260500,HTTPS,343485,1608866 +1724260500,Apple sites,5964,36700 +1724260500,Mozilla,2474,1738 +1724260500,Avast,1122,8470 +1724260500,SSL client,231712,1418509 +1724260500,Ad Nexus,5037,2394 +1724260500,Microsoft,6061,12856 +1724260500,Mail.Ru,72048,56771 +1724260500,Siri,5555,8750 +1724260500,Yandex,82078,791856 +1724260500,Battle.net site,2318,5821 +1724260500,Firebase Crashlytics,4515,39954 +1724260500,Xiaomi,4504,8879 +1724260500,__unknown,298039,315748 +1724260500,Dropbox,2913,1343 +1724260500,Google APIs,27497,40886 +1724260500,Google Drive,3324,15646 +1724260500,Google,2100167,894872 +1724260500,HTTP,5848,4628 +1724260500,iTunes,20993,11889 +1724260500,Microsoft Update,142994,18071 +1724260500,SSL,5764,7963 +1724260500,TeamViewer,1449,8898 +1724260500,IMAPS,6784,27622 +1724260500,HTTPS,4306303,10980476 +1724260500,WhatsApp,1345,1216 +1724260500,Apple sites,5962,21511 +1724260500,iCloud,4622,10838 +1724260500,Mozilla,4661,8523 +1724260500,SSL client,3419446,8188092 +1724260500,Ad Nexus,9267,6950 +1724260500,Pubmatic,5430,7235 +1724260500,Amazon Web Services,3385,21624 +1724260500,Microsoft,289735,593979 +1724260500,Mail.Ru,234195,323492 +1724260500,Yandex,411752,4445653 +1724260500,GitHub,22564,696358 +1724260500,Microsoft CryptoAPI,1428,1014 +1724260500,33Across,21476,41847 +1724260500,Criteo,5566,2840 +1724260500,Smart AdServer,30656,26183 +1724260500,Exchange Online,1208,8065 +1724260500,Office 365,4184,25591 +1724260500,Microsoft Windows Live Services Authentication,7681,11629 +1724260500,Google Hangouts,1568,1392 +1724260500,Office Mobile,11356,7930 +1724260500,Mail.ru Attachment,23157,890922 +1724260500,Telegram,120,714 +1724260500,GISMETEO,2194,9238 +1724260500,Xiaomi,1629,4983 +1724260500,Google Inbox,19289,30718 +1724260500,Edge Chromium,527,1304 +1724260500,DNS over HTTPS,8259,40770 +1724260500,__unknown,5408,618 +1724260500,HTTPS,30758,28253 +1724260500,DNS over HTTPS,995,4585 +1724260500,__unknown,1872912,62488 +1724260500,Google,10461,13964 +1724260500,Windows Live,3303,19587 +1724260500,HTTPS,17659,40239 +1724260500,SSL client,13764,33551 +1724260500,ICMP,518,518 +1724260500,__unknown,15285,343744 +1724260500,Google,11065,21852 +1724260500,SSL,1534,1392 +1724260500,HTTPS,64657,438179 +1724260500,SSL client,12599,23244 +1724260500,Google Hangouts,1534,1392 +1724260500,ICMP,836,0 +1724260500,Telegram,341,60 +1724260500,DNS over HTTPS,33112,80317 +1724260500,__unknown,2122611,9878511 +1724260500,BitTorrent,682,496 +1724260500,DHCPv6,163,0 +1724260500,Google APIs,34876,54408 +1724260500,Google Drive,9740,4779 +1724260500,Google,52135,134786 +1724260500,IKE,860,660 +1724260500,DNS,19422,0 +1724260500,Google Calendar,11515,7507 +1724260500,HTTP,3636,7969 +1724260500,iTunes,2540,12665 +1724260500,LiveJournal,591615,1112248 +1724260500,NetBIOS-dgm,243,0 +1724260500,NTP,540,540 +1724260500,STUN,1550,2750 +1724260500,VKontakte,14519,17048 +1724260500,HTTPS,875826,2201424 +1724260500,SSL client,757439,1378030 +1724260500,Samsung,632,1985 +1724260500,Microsoft CryptoAPI,587,503 +1724260500,Google Play,5926,2594 +1724260500,Rambler,30124,20408 +1724260500,ICMP,23645,15318 +1724260500,Firebase Crashlytics,2201,6636 +1724260500,Telegram,1115,572 +1724260500,DNS over HTTPS,64377,186313 +1724260500,CoAP,588,432 +1724260500,__unknown,879389,6453402 +1724260500,BitTorrent,153,537 +1724260500,Google APIs,5876,19057 +1724260500,Google,40514,85917 +1724260500,IKE,1720,1320 +1724260500,BitTorrent tracker,153,537 +1724260500,DNS,34327,37932 +1724260500,HTTP,110050,106986 +1724260500,Launchpad,2560,1984 +1724260500,LiveJournal,78270,1115333 +1724260500,NetBIOS-dgm,250,0 +1724260500,NTP,14280,4620 +1724260500,YouTube,5772,37306 +1724260500,Steam,421933,41587063 +1724260500,Advanced Packaging Tool,24077,22535 +1724260500,HTTPS,1103986,47796525 +1724260500,Apple sites,3472,17532 +1724260500,SSL client,599175,42961073 +1724260500,Amazon Web Services,2446,12852 +1724260500,Ubuntu Update Manager,17324,17075 +1724260500,NIH,2775,6651 +1724260500,Mail.Ru,979,5192 +1724260500,Yandex,23064,42639 +1724260500,Ubuntu,5534,4859 +1724260500,Microsoft CryptoAPI,1162,1591 +1724260500,Microsoft NCSI,799,974 +1724260500,Apple Maps,1986,5402 +1724260500,ICMP,10440,4056 +1724260500,Telegram,2532,954 +1724260500,Google Sign in,6202,4289 +1724260500,Edge Chromium,3563,9487 +1724260500,Grammarly,2195,7820 +1724260500,DNS over TLS,3369,14411 +1724260500,DNS over HTTPS,7381,26259 +1724260800,__unknown,580365,256401 +1724260800,HTTPS,65098,45019 +1724260800,HTTPS,98755,54665 +1724260800,__unknown,2288,3864 +1724260800,__unknown,37329,28454 +1724260800,__unknown,1036,0 +1724260800,HTTPS,10250,18997 +1724260800,SSL client,10250,18997 +1724260800,Yandex,10250,18997 +1724260800,HTTPS,222662,125922 +1724260800,SSL client,222662,125922 +1724260800,Google Play,169464,62539 +1724260800,Telegram,53198,63383 +1724260800,__unknown,13902,2687 +1724260800,Dropbox,16494,5316 +1724260800,HTTPS,50822,20807 +1724260800,SSL client,42684,19244 +1724260800,Google Play,26190,13928 +1724260800,HTTPS,35258,33717 +1724260800,SSL client,31608,30080 +1724260800,Google Play,31608,30080 +1724260800,__unknown,51450,14743 +1724260800,Bing,98884,253276 +1724260800,Google APIs,2435,1627 +1724260800,SSL,28154,6291 +1724260800,TeamViewer,1518,8847 +1724260800,HTTPS,1826726,8691418 +1724260800,APNS,28154,6291 +1724260800,Apple sites,1740,6887 +1724260800,iCloud,252779,123603 +1724260800,Mozilla,16001,30020 +1724260800,SSL client,560559,801395 +1724260800,Pubmatic,1772,5145 +1724260800,Microsoft,2127,3725 +1724260800,Mail.Ru,23597,15895 +1724260800,Yandex,87830,301165 +1724260800,Microsoft Azure,5397,8477 +1724260800,Google Play,28907,3519 +1724260800,Office 365,3093,18775 +1724260800,Battle.net site,2378,5821 +1724260800,Sberbank of Russia,3947,8322 +1724260800,DNS over HTTPS,4250,26820 +1724260800,__unknown,220828,72561 +1724260800,Apple Update,3586,12496 +1724260800,Bing,9786,20955 +1724260800,Dropbox,8065,9433 +1724260800,Google APIs,14034,31368 +1724260800,Google,2458,2186 +1724260800,MSN,6659,18998 +1724260800,QQ,2699,6160 +1724260800,Android browser,896,2498 +1724260800,HTTP,9488,24920 +1724260800,iTunes,1051,7368 +1724260800,Microsoft Update,2760,7132 +1724260800,Skype,4466,27770 +1724260800,VKontakte,181575,337010 +1724260800,Advanced Packaging Tool,527,532 +1724260800,IMAPS,5302,21763 +1724260800,HTTPS,1508741,14533089 +1724260800,Apple sites,6116,18963 +1724260800,iCloud,8195,22533 +1724260800,Mozilla,14201,23500 +1724260800,SSL client,1029149,9186937 +1724260800,Microsoft,296928,493315 +1724260800,Mail.Ru,145892,175956 +1724260800,Yandex,184151,6698658 +1724260800,GitHub,29630,1113703 +1724260800,Ubuntu,527,532 +1724260800,Google Update,4341,10370 +1724260800,Microsoft WNS,513,7969 +1724260800,uTorrent,21834,39094 +1724260800,Apple Maps,2237,7976 +1724260800,33Across,5168,9692 +1724260800,Criteo,7842,7977 +1724260800,Smart AdServer,42937,55529 +1724260800,Rambler,15442,7624 +1724260800,Office 365,1749,7788 +1724260800,OneDrive,3134,10722 +1724260800,Telegram,60,120 +1724260800,GISMETEO,2775,5369 +1724260800,Xiaomi,1924,4922 +1724260800,Google Inbox,5501,21183 +1724260800,DNS over HTTPS,14251,60950 +1724260800,__unknown,1310,140 +1724260800,TeamViewer,141587,155615 +1724260800,__unknown,1940,670 +1724260800,HTTPS,10937,239320 +1724260800,DNS over HTTPS,24715,54815 +1724260800,ICMP,4264,0 +1724260800,__unknown,215,107 +1724260800,HTTPS,765,8226 +1724260800,__unknown,13654,53377 +1724260800,Google APIs,3945,16594 +1724260800,HTTP,833,491 +1724260800,HTTPS,131361,352807 +1724260800,SSL client,3945,16594 +1724260800,ICMP,9087,6444 +1724260800,Telegram,525,309 +1724260800,__unknown,1282007,4783303 +1724260800,BitTorrent,401,496 +1724260800,DHCPv6,978,0 +1724260800,Google APIs,58281,57006 +1724260800,Google Drive,6039,9894 +1724260800,Google,55546,183804 +1724260800,IKE,860,660 +1724260800,Android browser,458,333 +1724260800,BitTorrent tracker,153,0 +1724260800,DNS,16508,0 +1724260800,HTTP,2954,11545 +1724260800,LiveJournal,373162,1089742 +1724260800,NTP,720,720 +1724260800,STUN,2318,2146 +1724260800,YouTube,8413,28869 +1724260800,Odnoklassniki,2162,6771 +1724260800,HTTPS,7303026,491897678 +1724260800,WhatsApp,3408,15867 +1724260800,SSL client,582596,1627478 +1724260800,Microsoft,633,7992 +1724260800,Mail.Ru,6600,10509 +1724260800,Microsoft CryptoAPI,600,1129 +1724260800,Microsoft WNS,633,7992 +1724260800,Viber,7792,171961 +1724260800,Google Play,5205,14465 +1724260800,Rambler,40804,25305 +1724260800,ICMP,47290,12176 +1724260800,Firebase Crashlytics,4148,13023 +1724260800,Google Sign in,12609,8575 +1724260800,Grammarly,2293,7887 +1724260800,DNS over HTTPS,12103,35544 +1724260800,CoAP,882,648 +1724260800,__unknown,702068,1827100 +1724260800,BITS,6918,137649 +1724260800,DHCPv6,163,0 +1724260800,Google APIs,10562,27375 +1724260800,Google,36389,49975 +1724260800,DNS,35815,34069 +1724260800,Firefox,822,977 +1724260800,Gmail,18610,15913 +1724260800,HTTP,109810,331977 +1724260800,Launchpad,3274,2124 +1724260800,LiveJournal,34394,57097 +1724260800,Microsoft Update,2208,1520 +1724260800,NTP,1530,1530 +1724260800,SSL,855,7031 +1724260800,Odnoklassniki,3790,7529 +1724260800,Advanced Packaging Tool,32412,124743 +1724260800,HTTPS,690394,1776634 +1724260800,WhatsApp,1968,8000 +1724260800,Apple sites,1964,9172 +1724260800,Mozilla,6472,14808 +1724260800,Avast,448,457 +1724260800,SSL client,143595,294294 +1724260800,Ubuntu Update Manager,24232,118205 +1724260800,Microsoft,7611,145642 +1724260800,Mail.Ru,10485,24481 +1724260800,Yandex,9286,60549 +1724260800,Ubuntu,5756,5332 +1724260800,Microsoft CryptoAPI,4166,3285 +1724260800,Microsoft WNS,693,7993 +1724260800,Google Play,6654,7147 +1724260800,Google Hangouts,855,7031 +1724260800,ICMP,7428,4662 +1724260800,Telegram,2376,846 +1724260800,Edge Chromium,4216,10916 +1724260800,DNS over TLS,2092,9719 +1724260800,DNS over HTTPS,12546,38183 +1724261100,__unknown,23824,35688 +1724261100,HTTPS,77649,58819 +1724261100,SSL client,77649,58819 +1724261100,Yandex,77649,58819 +1724261100,HTTPS,795736,361014 +1724261100,SSL client,795736,361014 +1724261100,Yandex,795736,361014 +1724261100,HTTPS,28403,20421 +1724261100,SSL client,28403,20421 +1724261100,Yandex,28403,20421 +1724261100,__unknown,45999,70035 +1724261100,HTTPS,43614,160918 +1724261100,SSL client,13243,21262 +1724261100,Yandex,13243,21262 +1724261100,Gmail,6282,18603 +1724261100,IMAPS,6282,18603 +1724261100,SSL client,6282,18603 +1724261100,DNS over HTTPS,104218,199380 +1724261100,HTTPS,99159,214312 +1724261100,Dropbox,20422,6113 +1724261100,HTTPS,68705,11754 +1724261100,SSL client,68705,11754 +1724261100,Dropbox Download,48283,5641 +1724261100,__unknown,4939,44459 +1724261100,Windows Live,28072,7872 +1724261100,HTTP,1665,3494 +1724261100,HTTPS,119702,219675 +1724261100,SSL client,90502,156515 +1724261100,Microsoft,33069,133132 +1724261100,Yandex,3401,6683 +1724261100,Google Play,25960,8828 +1724261100,__unknown,1836,14958 +1724261100,Google APIs,4754,58315 +1724261100,Google,2314,1523 +1724261100,HTTPS,321102,725259 +1724261100,SSL client,301640,683638 +1724261100,Yandex,285160,622243 +1724261100,Google Play,9412,1557 +1724261100,__unknown,156465,208659 +1724261100,Bing,13401,248854 +1724261100,Google,21382,19053 +1724261100,McAfee,8028,386181 +1724261100,VKontakte,2034,4469 +1724261100,HTTPS,575675,5480896 +1724261100,Apple sites,1472,6802 +1724261100,Mozilla,2375,1487 +1724261100,Avast,1122,8952 +1724261100,SSL client,401853,3356933 +1724261100,Ad Nexus,1212,6323 +1724261100,Pubmatic,1829,1045 +1724261100,Microsoft,24316,38763 +1724261100,Mail.Ru,14777,16913 +1724261100,Yandex,301061,2600262 +1724261100,Intel,1146,4768 +1724261100,Battle.net site,2378,5821 +1724261100,Xiaomi,5320,7240 +1724261100,DNS over HTTPS,8228,15007 +1724261100,__unknown,277790,81988 +1724261100,Bing,2530,10713 +1724261100,Dropbox,11093,225768 +1724261100,Google APIs,10723,32698 +1724261100,Google,98984,71652 +1724261100,MSN,1486,7460 +1724261100,Android browser,962,2620 +1724261100,HTTP,3730,8142 +1724261100,iTunes,4616,23330 +1724261100,YouTube,4978,7244 +1724261100,Odnoklassniki,2227,6379 +1724261100,IMAPS,6916,27622 +1724261100,HTTPS,2102682,18044849 +1724261100,Apple sites,8861,34456 +1724261100,iCloud,47608,40756 +1724261100,Mozilla,2593,5101 +1724261100,Avast,1122,8228 +1724261100,SSL client,818370,9406750 +1724261100,Pubmatic,7028,8220 +1724261100,CloudFront,2265,1747 +1724261100,Microsoft,62414,102672 +1724261100,Mail.Ru,159687,241858 +1724261100,Yandex,173224,6572033 +1724261100,GitHub,38637,1734550 +1724261100,33Across,10223,14040 +1724261100,Google Play,31668,3484 +1724261100,Criteo,10124,13114 +1724261100,Smart AdServer,48665,42592 +1724261100,WeChat,1287,2576 +1724261100,Exchange Online,1108,8065 +1724261100,Office 365,12153,39845 +1724261100,Microsoft Windows Live Services Authentication,56396,121804 +1724261100,Telegram,120,120 +1724261100,GISMETEO,962,2620 +1724261100,Xiaomi,1923,7412 +1724261100,Google Inbox,6561,23535 +1724261100,Edge Chromium,527,2006 +1724261100,DNS over HTTPS,6393,44017 +1724261100,__unknown,4464,824 +1724261100,TeamViewer,37213,41628 +1724261100,Google,73147,238137 +1724261100,HTTPS,73147,238137 +1724261100,SSL client,73147,238137 +1724261100,HTTPS,53113,64614 +1724261100,SSL client,53113,64614 +1724261100,Telegram,53113,64614 +1724261100,__unknown,188,229 +1724261100,HTTPS,434194,229268 +1724261100,HTTPS,29278,530454 +1724261100,HTTPS,25349,533971 +1724261100,__unknown,23456,14454 +1724261100,SSL,1480,1392 +1724261100,HTTPS,42701,347610 +1724261100,Pinterest,2859,7960 +1724261100,Mozilla,7755,7283 +1724261100,SSL client,13579,20034 +1724261100,Microsoft,1708,7830 +1724261100,Apple Maps,2782,6937 +1724261100,Google Play,2636,3529 +1724261100,Google Hangouts,1480,1392 +1724261100,ICMP,1956,518 +1724261100,Telegram,1517,3008 +1724261100,__unknown,847221,2364030 +1724261100,BitTorrent,310,496 +1724261100,Google APIs,15338,61533 +1724261100,Google,220990,232133 +1724261100,IKE,860,660 +1724261100,Android browser,1240,859 +1724261100,Chrome,1974,1432 +1724261100,DNS,12505,0 +1724261100,Gmail,47683,237876 +1724261100,HTTP,6910,8956 +1724261100,Internet Explorer,1655,3593 +1724261100,NTP,1440,1440 +1724261100,STUN,3728,4782 +1724261100,YouTube,3508,9847 +1724261100,TeamViewer,132259,148334 +1724261100,VKontakte,5964,14033 +1724261100,Odnoklassniki,2102,6831 +1724261100,HTTPS,688222,2800477 +1724261100,WhatsApp,3683,16360 +1724261100,Apple sites,2003,31980 +1724261100,Google Play Music,120403,26483 +1724261100,Mozilla,7635,8266 +1724261100,SSL client,442445,764573 +1724261100,CloudFront,1873,2744 +1724261100,Yandex,2261,12666 +1724261100,ICMP,24820,14652 +1724261100,Shopify,7590,109916 +1724261100,DNS over HTTPS,39612,102264 +1724261100,CoAP,1372,936 +1724261100,__unknown,882091,1393081 +1724261100,BitTorrent,153,0 +1724261100,DHCPv6,978,0 +1724261100,Google APIs,10070,24937 +1724261100,Google Drive,1115,7775 +1724261100,Google,39975,178490 +1724261100,BitTorrent tracker,153,0 +1724261100,DNS,60812,54196 +1724261100,HTTP,121805,507658 +1724261100,Launchpad,2560,1984 +1724261100,Microsoft Update,642,511 +1724261100,NetBIOS-dgm,243,0 +1724261100,NTP,20496,5175 +1724261100,Steam,2055,54938 +1724261100,Advanced Packaging Tool,42024,359520 +1724261100,HTTPS,313211,1752749 +1724261100,Apple sites,5574,19228 +1724261100,iCloud,7926,23424 +1724261100,Mozilla,4104,2625 +1724261100,Avast,437,1261 +1724261100,SSL client,86449,305572 +1724261100,Amazon Web Services,1139,6568 +1724261100,Ubuntu Update Manager,34686,353188 +1724261100,Microsoft,693,7992 +1724261100,VeriSign,566,2141 +1724261100,Mail.Ru,11011,31865 +1724261100,Yandex,4787,12692 +1724261100,Ubuntu,6053,5727 +1724261100,Microsoft CryptoAPI,4676,5588 +1724261100,Microsoft WNS,693,7992 +1724261100,ICMP,14820,3552 +1724261100,Telegram,3437,1310 +1724261100,Edge Chromium,6097,18867 +1724261100,Grammarly,2213,7948 +1724261100,DNS over HTTPS,12816,49969 +1724261400,__unknown,46614,39130 +1724261400,HTTPS,237951,92862 +1724261400,SSL client,237951,92862 +1724261400,Yandex,231678,81289 +1724261400,Sharepoint Online,6273,11573 +1724261400,HTTPS,81709,28055 +1724261400,SSL client,81709,28055 +1724261400,Yandex,81709,28055 +1724261400,HTTPS,302047,40792 +1724261400,SSL client,302047,40792 +1724261400,Yandex,302047,40792 +1724261400,HTTPS,6669,16196 +1724261400,SSL client,6669,16196 +1724261400,Yandex,6669,16196 +1724261400,HTTPS,404676,447694 +1724261400,SSL client,30887,29948 +1724261400,Mail.Ru,23280,19322 +1724261400,Yandex,7607,10626 +1724261400,__unknown,15573,16771 +1724261400,HTTPS,16276,19705 +1724261400,SSL client,7105,13124 +1724261400,Yandex,7105,13124 +1724261400,HTTPS,45885,63317 +1724261400,SSL client,45885,63317 +1724261400,Telegram,45885,63317 +1724261400,HTTPS,19570,22244 +1724261400,SSL client,19570,22244 +1724261400,Mail.Ru,10187,11120 +1724261400,Yandex,9383,11124 +1724261400,HTTPS,6429,9006 +1724261400,AnyDesk,6429,9006 +1724261400,HTTPS,140783,6575 +1724261400,SSL client,140783,6575 +1724261400,Dropbox Download,140783,6575 +1724261400,__unknown,46083,51716 +1724261400,Dropbox,123068,20036 +1724261400,HTTPS,2051073,2875845 +1724261400,SSL client,1884344,2835523 +1724261400,Yandex,1695948,2746527 +1724261400,Google Play,11379,2494 +1724261400,Telegram,53949,66466 +1724261400,__unknown,19062,13413 +1724261400,HTTP,701,1867 +1724261400,HTTPS,158396,503238 +1724261400,SSL client,139327,485249 +1724261400,Mail.Ru,78853,73144 +1724261400,Yandex,59028,406138 +1724261400,Google Play,1446,5967 +1724261400,__unknown,60645,33462 +1724261400,Google APIs,7012,19072 +1724261400,Google,72837,589264 +1724261400,Gmail,7728,4646 +1724261400,HTTPS,492498,1220840 +1724261400,Opera,4863,4331 +1724261400,SSL client,156140,821521 +1724261400,CloudFront,3202,50345 +1724261400,Microsoft,6090,18305 +1724261400,Mail.Ru,22692,54000 +1724261400,Yandex,25367,67526 +1724261400,Office 365,2597,7787 +1724261400,Xiaomi,2309,4842 +1724261400,Google Inbox,6306,5734 +1724261400,DNS over HTTPS,69477,175777 +1724261400,__unknown,735004,1004492 +1724261400,Bing,3466,6546 +1724261400,Dropbox,6319,222580 +1724261400,Google APIs,9612,24980 +1724261400,Google,1563,6810 +1724261400,MSN,7667,22694 +1724261400,Dell,1111,4307 +1724261400,DNS,674,2822 +1724261400,HTTP,16294,25982 +1724261400,Microsoft Update,611,636 +1724261400,Skype,4641,16434 +1724261400,SSL,14029,24074 +1724261400,Advanced Packaging Tool,1283,1352 +1724261400,IMAPS,6850,27622 +1724261400,HTTPS,2441304,11854799 +1724261400,WhatsApp,3224,6767 +1724261400,APNS,1682,4214 +1724261400,Apple sites,5377,21315 +1724261400,iCloud,8184,21997 +1724261400,Mozilla,3039,2255 +1724261400,Opera,3355,5046 +1724261400,SSL client,670802,3181680 +1724261400,Pubmatic,1838,5211 +1724261400,Amazon Web Services,3379,21490 +1724261400,CloudFront,3062,37736 +1724261400,Taobao,63152,38720 +1724261400,Ubuntu Update Manager,1283,1352 +1724261400,Microsoft,122389,336816 +1724261400,VeriSign,566,2080 +1724261400,Mail.Ru,177938,242902 +1724261400,Yandex,102902,523950 +1724261400,GitHub,36068,1470783 +1724261400,Microsoft CryptoAPI,1177,2716 +1724261400,33Across,9422,19789 +1724261400,Google Play,23361,2926 +1724261400,Smart AdServer,31108,33680 +1724261400,WeChat,10895,17984 +1724261400,Exchange Online,1321,6471 +1724261400,Office 365,12114,41279 +1724261400,Microsoft Windows Live Services Authentication,12948,17521 +1724261400,Hola,12347,19860 +1724261400,Telegram,384,384 +1724261400,Google Sign in,4792,8414 +1724261400,DNS over HTTPS,82161,201648 +1724261400,__unknown,805,206 +1724261400,HTTPS,64794,141688 +1724261400,SSL client,64794,141688 +1724261400,DNS over HTTPS,64794,141688 +1724261400,ICMP,4018,0 +1724261400,ICMP,5640,5760 +1724261400,HTTP,691,408 +1724261400,__unknown,11975,268879 +1724261400,Google,5018,10184 +1724261400,SSL,1703,5604 +1724261400,HTTPS,55204,229790 +1724261400,Spotify,2119,7980 +1724261400,SSL client,14755,44418 +1724261400,Yandex,5915,20650 +1724261400,Google Hangouts,1703,5604 +1724261400,ICMP,7292,5478 +1724261400,__unknown,732171,1079623 +1724261400,BitTorrent,401,496 +1724261400,DHCPv6,163,0 +1724261400,Google APIs,13177,36124 +1724261400,Google Drive,55473,30265 +1724261400,Google,40408,99894 +1724261400,Wikipedia,22242,486967 +1724261400,BitTorrent tracker,153,0 +1724261400,DNS,18825,0 +1724261400,Google Analytics,4011,7648 +1724261400,HTTP,4844,5669 +1724261400,Microsoft Update,1587,1394 +1724261400,NetBIOS-dgm,250,0 +1724261400,NTP,18700,4995 +1724261400,SSL,3330,127719 +1724261400,STUN,4240,4894 +1724261400,VKontakte,2683,6042 +1724261400,Odnoklassniki,2609,7440 +1724261400,HTTPS,284385,1181243 +1724261400,Apple sites,1964,9394 +1724261400,iCloud,1715,5303 +1724261400,SSL client,163085,743374 +1724261400,Samsung,386,992 +1724261400,Mail.Ru,1264,5432 +1724261400,Yandex,1251,6151 +1724261400,Microsoft CryptoAPI,3195,2586 +1724261400,Google Play,10061,38368 +1724261400,ICMP,84893,11132 +1724261400,Telegram,959,496 +1724261400,Google Sign in,6227,4346 +1724261400,DNS over HTTPS,19708,62565 +1724261400,__unknown,555498,1345125 +1724261400,DHCPv6,978,0 +1724261400,Google APIs,4203,12617 +1724261400,Google Drive,7524,10235 +1724261400,Google,38289,76843 +1724261400,IKE,860,660 +1724261400,MSN,2211,7279 +1724261400,Wikipedia,2715,9822 +1724261400,Apple Mail,12284,92529 +1724261400,DNS,38113,40226 +1724261400,HTTP,79023,93103 +1724261400,Launchpad,2560,1984 +1724261400,Microsoft Update,2919,2345 +1724261400,NTP,24422,5730 +1724261400,SSL,797,7092 +1724261400,VKontakte,7921,14883 +1724261400,Advanced Packaging Tool,29172,26434 +1724261400,IMAPS,12284,92529 +1724261400,HTTPS,281576,1752408 +1724261400,WhatsApp,2891,12253 +1724261400,Apple sites,28470,538631 +1724261400,Avast,382,391 +1724261400,Opera,3895,17660 +1724261400,SSL client,125996,1119288 +1724261400,Ubuntu Update Manager,21934,20600 +1724261400,Yandex,21282,347233 +1724261400,Ubuntu,7653,7057 +1724261400,Microsoft CryptoAPI,5511,7469 +1724261400,Microsoft WNS,577,501 +1724261400,Office 365,619,1199 +1724261400,Google Hangouts,797,7092 +1724261400,ICMP,9261,5550 +1724261400,Telegram,3846,8547 +1724261400,Edge Chromium,9966,29643 +1724261400,DNS over TLS,2158,9541 +1724261400,DNS over HTTPS,15432,45933 +1724261700,__unknown,2241808,1952229 +1724261700,Telegram,2046668,1734727 +1724261700,HTTPS,25132,30082 +1724261700,SSL client,25132,30082 +1724261700,Yandex,25132,30082 +1724261700,HTTPS,19722,25312 +1724261700,SSL client,19722,25312 +1724261700,Yandex,19722,25312 +1724261700,HTTPS,32174,27544 +1724261700,SSL client,32174,27544 +1724261700,Yandex,32174,27544 +1724261700,Google,56662,93875 +1724261700,HTTPS,367589,195590 +1724261700,SSL client,56662,93875 +1724261700,__unknown,1012,1842 +1724261700,HTTPS,6496,9734 +1724261700,SSL client,6496,9734 +1724261700,Yandex,6496,9734 +1724261700,HTTPS,6832,19221 +1724261700,SSL client,6832,19221 +1724261700,Office 365,6832,19221 +1724261700,HTTPS,18667,235776 +1724261700,HTTPS,4951,24113 +1724261700,SSL client,4951,24113 +1724261700,Yandex,4951,24113 +1724261700,__unknown,898,2963 +1724261700,Dropbox,17385,5374 +1724261700,HTTPS,37225,19679 +1724261700,SSL client,33487,16876 +1724261700,Yandex,16102,11502 +1724261700,Google APIs,6141,21752 +1724261700,HTTPS,6269937,383714177 +1724261700,SSL client,35028,39620 +1724261700,Yandex,3943,7241 +1724261700,Google Play,21447,4775 +1724261700,CloudFlare,3497,5852 +1724261700,__unknown,142377,15044 +1724261700,Bing,77019,68918 +1724261700,Dropbox,2528,1244 +1724261700,SSL,47802,14763 +1724261700,TeamViewer,1291,9000 +1724261700,HTTPS,944299,8288330 +1724261700,APNS,47802,14763 +1724261700,iCloud,29750,26382 +1724261700,Mozilla,5118,10507 +1724261700,SSL client,394792,313783 +1724261700,Taobao,60313,16252 +1724261700,Apple Stocks,2266,12414 +1724261700,Microsoft,19410,36974 +1724261700,Mail.Ru,74008,74905 +1724261700,Yandex,73494,42392 +1724261700,Apple Maps,3697,10032 +1724261700,Office 365,1369,6959 +1724261700,Battle.net site,2690,5487 +1724261700,DNS over HTTPS,4311,9741 +1724261700,__unknown,643250,376649 +1724261700,Bing,22638,102946 +1724261700,Google APIs,2646,12255 +1724261700,Google Drive,3264,15707 +1724261700,Google,1295086,2112076 +1724261700,MSN,4334,16769 +1724261700,Apple Mail,8635,44534 +1724261700,Chrome,1271,19924 +1724261700,HTTP,7687,28684 +1724261700,Microsoft Update,55375,36405 +1724261700,VKontakte,14584,21488 +1724261700,Advanced Packaging Tool,2795,2721 +1724261700,IMAPS,15413,72070 +1724261700,HTTPS,3643859,31637429 +1724261700,Apple sites,17677,933540 +1724261700,iCloud,25013,25268 +1724261700,Mozilla,4379,13459 +1724261700,SSL client,2151238,5555648 +1724261700,Ad Nexus,35670,22707 +1724261700,Pubmatic,9908,19875 +1724261700,Amazon Web Services,9375,170382 +1724261700,CloudFront,2494,27527 +1724261700,Taobao,4842,67761 +1724261700,Ubuntu Update Manager,1214,1193 +1724261700,Microsoft,225321,489201 +1724261700,Mail.Ru,171842,269112 +1724261700,King.com,1614,9363 +1724261700,Siri,5969,6165 +1724261700,Yandex,149033,251424 +1724261700,GitHub,16144,721977 +1724261700,Amazon Ads System,2055,7797 +1724261700,Ubuntu,1581,1528 +1724261700,Microsoft CryptoAPI,1566,2172 +1724261700,33Across,10403,14116 +1724261700,Criteo,5059,6472 +1724261700,Smart AdServer,8698,8561 +1724261700,Microsoft Windows Live Services Authentication,26587,60305 +1724261700,Telegram,2444,7894 +1724261700,Sberbank of Russia,3634,17575 +1724261700,GISMETEO,2200,9537 +1724261700,Xiaomi,2375,13228 +1724261700,Edge Chromium,527,1365 +1724261700,DNS over HTTPS,8879,31582 +1724261700,DeepL Translator,2251,19973 +1724261700,__unknown,8545,890 +1724261700,HTTPS,1386,1401 +1724261700,SSL,2340,9107 +1724261700,SSL client,2340,9107 +1724261700,Google Hangouts,2340,9107 +1724261700,__unknown,402,885 +1724261700,__unknown,156,0 +1724261700,HTTPS,2888,8180 +1724261700,SSL client,2888,8180 +1724261700,Microsoft,2888,8180 +1724261700,ICMP,1640,0 +1724261700,__unknown,8534,32690 +1724261700,Google,18825,19894 +1724261700,HTTP,531,408 +1724261700,HTTPS,21208,33114 +1724261700,Apple sites,1524,7459 +1724261700,SSL client,20349,27353 +1724261700,__unknown,39509,55234 +1724261700,HTTP,659,1712 +1724261700,HTTPS,26000,214597 +1724261700,ICMP,1970,1036 +1724261700,Telegram,1742,2296 +1724261700,DNS over HTTPS,0,1390 +1724261700,__unknown,903655,1384480 +1724261700,BitTorrent,310,434 +1724261700,DHCPv6,163,0 +1724261700,Google APIs,19241,48051 +1724261700,Google Drive,166776,130834 +1724261700,Google,47478,72364 +1724261700,Android browser,922,666 +1724261700,Apple Mail,13386,86291 +1724261700,DNS,11920,0 +1724261700,Google Analytics,9643,9115 +1724261700,HTTP,3642,4001 +1724261700,iTunes,1895,18559 +1724261700,Microsoft Update,641,507 +1724261700,NTP,450,450 +1724261700,SSL,797,7092 +1724261700,STUN,5572,7530 +1724261700,YouTube,1593,9229 +1724261700,Odnoklassniki,2180,7276 +1724261700,IMAPS,13386,86291 +1724261700,HTTPS,404753,682891 +1724261700,Mozilla,13097,18798 +1724261700,SSL client,292484,481254 +1724261700,Yandex,7507,52227 +1724261700,Microsoft CryptoAPI,1457,1247 +1724261700,Lijit,3773,9438 +1724261700,ICMP,23346,15612 +1724261700,DNS over HTTPS,24026,78667 +1724261700,__unknown,739135,2210874 +1724261700,BitTorrent,153,0 +1724261700,Google APIs,11344,26124 +1724261700,Google,177119,1385917 +1724261700,BitTorrent tracker,153,0 +1724261700,DNS,43624,41930 +1724261700,HTTP,90035,92826 +1724261700,Launchpad,3200,2480 +1724261700,Microsoft Update,1292,1274 +1724261700,NTP,2250,2160 +1724261700,YouTube,1698,10512 +1724261700,VKontakte,33677,421392 +1724261700,Odnoklassniki,3700,2717 +1724261700,Advanced Packaging Tool,29731,27309 +1724261700,HTTPS,475572,3747217 +1724261700,iCloud,9105,16973 +1724261700,Mozilla,4104,2525 +1724261700,SSL client,272095,2736115 +1724261700,Amazon Web Services,2392,12904 +1724261700,Ubuntu Update Manager,22278,21011 +1724261700,Yandex,26748,855235 +1724261700,Ubuntu,6869,6580 +1724261700,Microsoft CryptoAPI,4575,6364 +1724261700,Microsoft NCSI,514,487 +1724261700,ICMP,6414,3672 +1724261700,Telegram,4592,2339 +1724261700,Edge Chromium,5450,16269 +1724261700,DNS over HTTPS,10744,27898 +1724262000,__unknown,824288,1242880 +1724262000,__unknown,59510,69264 +1724262000,HTTPS,24341,27536 +1724262000,SSL client,24341,27536 +1724262000,Yandex,24341,27536 +1724262000,HTTPS,22623,27176 +1724262000,SSL client,22623,27176 +1724262000,Yandex,22623,27176 +1724262000,HTTPS,74909,14946 +1724262000,SSL client,74909,14946 +1724262000,Yandex,74909,14946 +1724262000,HTTPS,15591,23686 +1724262000,SSL client,15591,23686 +1724262000,Yandex,15591,23686 +1724262000,HTTPS,61870,45303 +1724262000,__unknown,13980,23576 +1724262000,HTTPS,8024,13034 +1724262000,SSL client,8024,13034 +1724262000,Yandex,8024,13034 +1724262000,HTTPS,1004846,300855 +1724262000,SSL client,1004846,300855 +1724262000,Improve Digital,966351,247554 +1724262000,Lijit,38495,53301 +1724262000,__unknown,974,1554 +1724262000,HTTPS,720957,698861 +1724262000,HTTPS,44020,40840 +1724262000,SSL client,6338,24949 +1724262000,Yandex,6338,24949 +1724262000,Google APIs,9164,49231 +1724262000,HTTPS,9164,49231 +1724262000,SSL client,9164,49231 +1724262000,Dropbox,20173,6004 +1724262000,Google APIs,1791,6392 +1724262000,HTTPS,911266,688061 +1724262000,SSL client,288663,43108 +1724262000,Yandex,227191,25713 +1724262000,Dropbox Download,39508,4999 +1724262000,__unknown,17826,594133 +1724262000,HTTPS,1637040,139324969 +1724262000,SSL client,4555,2390 +1724262000,Yandex,4555,2390 +1724262000,__unknown,230910,114328 +1724262000,Dropbox,7410,10725 +1724262000,Google,3417,7752 +1724262000,Gmail,10114,5735 +1724262000,Google Analytics,48921,13604 +1724262000,TeamViewer,1449,8898 +1724262000,VKontakte,2744,5397 +1724262000,HTTPS,642233,2276716 +1724262000,Mozilla,2217,5191 +1724262000,Avast,1343,10071 +1724262000,SSL client,338715,1418129 +1724262000,Ad Nexus,9307,23832 +1724262000,Box,1344,4957 +1724262000,Microsoft,20499,40765 +1724262000,Mail.Ru,66867,46281 +1724262000,Yandex,95617,29305 +1724262000,GitHub,25204,961705 +1724262000,Nvidia,1422,6872 +1724262000,Office 365,2502,8569 +1724262000,Battle.net site,3263,6009 +1724262000,Google Inbox,32840,202623 +1724262000,DNS over TLS,2235,19838 +1724262000,DNS over HTTPS,3040,29578 +1724262000,__unknown,644843,435430 +1724262000,Apple Update,1781,4900 +1724262000,Dropbox,4459,5222 +1724262000,Google APIs,89016,147176 +1724262000,Google,117091,1201798 +1724262000,Android browser,2099,6471 +1724262000,Chrome,1592,1071 +1724262000,Gmail,13630,6261 +1724262000,HTTP,13727,29146 +1724262000,iTunes,5028,46186 +1724262000,VKontakte,7392,10694 +1724262000,Advanced Packaging Tool,2148,2020 +1724262000,IMAPS,6850,27719 +1724262000,HTTPS,3101630,12203899 +1724262000,WhatsApp,11896,105120 +1724262000,Apple sites,4795,24083 +1724262000,iCloud,26055,74129 +1724262000,SSL client,1294052,5862929 +1724262000,Ad Nexus,27921,19145 +1724262000,Pubmatic,10934,18510 +1724262000,Ubuntu Update Manager,1561,1490 +1724262000,Microsoft,131046,279413 +1724262000,Mail.Ru,535214,501036 +1724262000,Yandex,236621,2702956 +1724262000,GitHub,23164,713036 +1724262000,Ubuntu,587,530 +1724262000,Microsoft Azure,2473,9042 +1724262000,Asus,1919,5449 +1724262000,Google Update,4372,10304 +1724262000,Apple Maps,15835,629703 +1724262000,33Across,2524,1777 +1724262000,Office 365,18226,39468 +1724262000,Office Mobile,11342,7870 +1724262000,Telegram,120,120 +1724262000,GISMETEO,4038,9259 +1724262000,Google Sign in,1367,5902 +1724262000,Google Inbox,10553,33977 +1724262000,Edge Chromium,467,1299 +1724262000,Grammarly,12611,10092 +1724262000,DNS over HTTPS,4798,14865 +1724262000,__unknown,12138,7080 +1724262000,ICMP,11524,0 +1724262000,HTTPS,54348,27620 +1724262000,Gmail,106548,64022 +1724262000,HTTPS,126119,74277 +1724262000,SSL client,106548,64022 +1724262000,__unknown,3878,15267 +1724262000,HTTPS,57177,71030 +1724262000,SSL client,53877,65571 +1724262000,ICMP,888,888 +1724262000,Telegram,53877,65571 +1724262000,__unknown,12382,214451 +1724262000,HTTPS,8957,16173 +1724262000,ICMP,7996,2368 +1724262000,Telegram,1311,1008 +1724262000,DNS over HTTPS,4398,11473 +1724262000,__unknown,845919,1233390 +1724262000,BitTorrent,463,434 +1724262000,Google APIs,15520,36792 +1724262000,Google Drive,9530,11100 +1724262000,Google,69522,373857 +1724262000,Wikipedia,4960,27389 +1724262000,BitTorrent tracker,153,0 +1724262000,DNS,20179,77 +1724262000,Gmail,30077,64553 +1724262000,HTTP,4099,5592 +1724262000,NetBIOS-dgm,250,0 +1724262000,NTP,25140,5640 +1724262000,SSL,1768,5484 +1724262000,STUN,3992,5224 +1724262000,VKontakte,32040,95322 +1724262000,Odnoklassniki,2609,7560 +1724262000,HTTPS,341249,1196690 +1724262000,Mozilla,12211,10469 +1724262000,SSL client,185728,669098 +1724262000,CloudFront,2133,8009 +1724262000,Microsoft,1965,14739 +1724262000,Yandex,723,5182 +1724262000,Microsoft CryptoAPI,1684,1202 +1724262000,Apple Maps,2912,9851 +1724262000,Google Play,4438,14126 +1724262000,ICMP,29318,12108 +1724262000,Telegram,2513,19047 +1724262000,DNS over HTTPS,30357,94116 +1724262000,__unknown,442248,762049 +1724262000,Bing,4718,7759 +1724262000,DHCPv6,978,0 +1724262000,Google APIs,13899,26396 +1724262000,Google,89333,266520 +1724262000,DNS,41457,36555 +1724262000,Firefox,2304,3061 +1724262000,Gmail,6343,9223 +1724262000,HTTP,108777,126701 +1724262000,Launchpad,3200,2480 +1724262000,Microsoft Update,5077,4972 +1724262000,NTP,3330,3330 +1724262000,SSL,797,7092 +1724262000,YouTube,2031,7095 +1724262000,VKontakte,5023,12716 +1724262000,Steam,2212,25006 +1724262000,Advanced Packaging Tool,34868,32090 +1724262000,HTTPS,707569,2157111 +1724262000,Apple sites,1869,7764 +1724262000,iCloud,49543,83431 +1724262000,SSL client,238309,1216689 +1724262000,Ad Nexus,1233,3342 +1724262000,Ubuntu Update Manager,24444,23478 +1724262000,Mail.Ru,4655,20862 +1724262000,Yandex,53488,747812 +1724262000,Ubuntu,8924,7964 +1724262000,Microsoft CryptoAPI,12202,16015 +1724262000,33Across,2154,7920 +1724262000,Smart AdServer,975,3823 +1724262000,Google Hangouts,797,7092 +1724262000,ICMP,9937,3626 +1724262000,Telegram,3862,1322 +1724262000,Edge Chromium,527,1365 +1724262000,DNS over HTTPS,6051,17068 +1724262300,__unknown,9790,9690 +1724262300,HTTPS,97819,150652 +1724262300,__unknown,95930,51842 +1724262300,__unknown,1831408,489818 +1724262300,HTTPS,41209,51619 +1724262300,SSL client,41209,51619 +1724262300,Yandex,41209,51619 +1724262300,HTTPS,135431,177708 +1724262300,SSL client,135431,177708 +1724262300,Yandex,135431,177708 +1724262300,HTTPS,42214,58915 +1724262300,SSL client,42214,58915 +1724262300,DNS over HTTPS,42214,58915 +1724262300,HTTPS,19646,17077 +1724262300,SSL client,19646,17077 +1724262300,Yandex,19646,17077 +1724262300,__unknown,29886,24940 +1724262300,HTTPS,192351,147297 +1724262300,HTTPS,798837,221871 +1724262300,SSL client,798837,221871 +1724262300,Google Play,798837,221871 +1724262300,Windows Live,27088,12849 +1724262300,HTTPS,36405,31927 +1724262300,SSL client,27088,12849 +1724262300,__unknown,148739,48416 +1724262300,HTTPS,7561,12092 +1724262300,SSL client,7561,12092 +1724262300,Yandex,7561,12092 +1724262300,__unknown,195359,60867 +1724262300,HTTPS,223325,106479 +1724262300,Windows Live,26664,7288 +1724262300,Skype,3977,8741 +1724262300,HTTPS,65314,250459 +1724262300,SSL client,65314,250459 +1724262300,Microsoft,34673,234430 +1724262300,Dropbox,110850,20068 +1724262300,HTTPS,417016,49291 +1724262300,SSL client,360770,39299 +1724262300,Yandex,108791,11017 +1724262300,Dropbox Download,141129,8214 +1724262300,__unknown,47022,47067 +1724262300,HTTPS,128251,110943 +1724262300,SSL client,20941,18370 +1724262300,Google Play,20941,18370 +1724262300,Telegram,88087,79633 +1724262300,DNS over HTTPS,5717,17079 +1724262300,__unknown,184166,867649 +1724262300,Google APIs,2582,8039 +1724262300,HTTP,1664,1226 +1724262300,HTTPS,721334,7387253 +1724262300,iCloud,116095,64803 +1724262300,SSL client,516959,5061258 +1724262300,Ad Nexus,7049,10204 +1724262300,Microsoft,27262,49726 +1724262300,Mail.Ru,16278,13863 +1724262300,Yandex,336662,4899176 +1724262300,Microsoft Windows Live Services Authentication,3509,5969 +1724262300,Battle.net site,2318,5427 +1724262300,Google Sign in,5204,4051 +1724262300,DNS over HTTPS,27074,70043 +1724262300,__unknown,325403,45351 +1724262300,Google APIs,15773,111478 +1724262300,Google,57926,95707 +1724262300,MSN,7032,12970 +1724262300,Android browser,1269,4030 +1724262300,Apple Store,1710,6127 +1724262300,Chrome,1232,738 +1724262300,HTTP,8138,8880 +1724262300,Microsoft Update,1483,3585 +1724262300,Skype,2655,8264 +1724262300,VKontakte,2460,4927 +1724262300,Odnoklassniki,1604,3471 +1724262300,Advanced Packaging Tool,527,530 +1724262300,IMAPS,6703,27525 +1724262300,HTTPS,2283453,8970185 +1724262300,WhatsApp,6568,131642 +1724262300,Apple sites,20249,33810 +1724262300,iCloud,88319,148915 +1724262300,Avast,977,8324 +1724262300,SSL client,1002340,4277222 +1724262300,Ad Nexus,43743,42606 +1724262300,Pubmatic,1672,5000 +1724262300,Microsoft,188581,472091 +1724262300,NIH,8770,53719 +1724262300,Mail.Ru,235174,260995 +1724262300,Yandex,118027,1585548 +1724262300,Aliexpress,43311,28708 +1724262300,GitHub,29896,1237451 +1724262300,Ubuntu,820,670 +1724262300,Apple Maps,47506,10314 +1724262300,33Across,7819,12323 +1724262300,Google Play,70143,7915 +1724262300,Criteo,2783,1510 +1724262300,Exchange Online,5497,10194 +1724262300,Office 365,12770,36747 +1724262300,Microsoft Windows Live Services Authentication,23894,70632 +1724262300,Alipay,7795,7437 +1724262300,Telegram,2100,7684 +1724262300,GISMETEO,1269,4030 +1724262300,Grammarly,2277,6768 +1724262300,DNS over HTTPS,4131,18289 +1724262300,__unknown,149731,193994 +1724262300,STUN,5494,4884 +1724262300,__unknown,1830,3690 +1724262300,Google,42615,78281 +1724262300,SSL,2676,9189 +1724262300,HTTPS,42615,78281 +1724262300,SSL client,42615,78281 +1724262300,ICMP,5520,5580 +1724262300,CoAP,2940,2160 +1724262300,__unknown,1216,9796 +1724262300,Google,8840,13302 +1724262300,HTTPS,8840,13302 +1724262300,SSL client,8840,13302 +1724262300,ICMP,888,888 +1724262300,__unknown,6572,393089 +1724262300,HTTPS,39307,550197 +1724262300,Apple Maps,1384,4892 +1724262300,ICMP,2586,1930 +1724262300,__unknown,941683,2449653 +1724262300,BitTorrent,310,496 +1724262300,Google APIs,42263,11497 +1724262300,Google Drive,19788,15888 +1724262300,Google,59627,106901 +1724262300,DNS,14230,0 +1724262300,HTTP,2367,6653 +1724262300,NTP,450,540 +1724262300,SSL,1476,1392 +1724262300,STUN,6454,5444 +1724262300,Odnoklassniki,1928,6646 +1724262300,HTTPS,711075,1169573 +1724262300,WhatsApp,2526,71419 +1724262300,Mozilla,4255,5978 +1724262300,SSL client,244331,570981 +1724262300,Mail.Ru,877,4952 +1724262300,Yandex,110252,404101 +1724262300,Apple Maps,2459,30769 +1724262300,Google Hangouts,1476,1392 +1724262300,ICMP,72560,14130 +1724262300,Telegram,759,528 +1724262300,DNS over HTTPS,8040,27717 +1724262300,__unknown,449030,508568 +1724262300,BitTorrent,153,0 +1724262300,DHCPv6,978,0 +1724262300,Eset,1032,4240 +1724262300,Google APIs,2919,2305 +1724262300,Google,51824,177775 +1724262300,BitTorrent tracker,153,0 +1724262300,DNS,40060,37459 +1724262300,Gmail,19828,24988 +1724262300,Google Analytics,2017,6296 +1724262300,HTTP,63473,67563 +1724262300,Launchpad,2560,1984 +1724262300,NTP,270,270 +1724262300,SSL,1032,4240 +1724262300,Odnoklassniki,3850,7528 +1724262300,Advanced Packaging Tool,25903,23969 +1724262300,HTTPS,2772936,3407251 +1724262300,Apple sites,1808,9172 +1724262300,SSL client,122656,362103 +1724262300,Ubuntu Update Manager,19743,18565 +1724262300,VeriSign,566,2141 +1724262300,Mail.Ru,1387,11422 +1724262300,Yandex,22678,92736 +1724262300,Ubuntu,4310,4268 +1724262300,Microsoft CryptoAPI,6406,7214 +1724262300,Google Play,12618,15404 +1724262300,ICMP,4660,1304 +1724262300,Weborama,1450,4681 +1724262300,Telegram,2572,974 +1724262300,Edge Chromium,2108,5459 +1724262300,DNS over TLS,2290,9539 +1724262300,DNS over HTTPS,6641,24437 +1724262600,__unknown,23532,68315 +1724262600,HTTPS,26166,108307 +1724262600,Google,45892,54583 +1724262600,HTTPS,145444,116131 +1724262600,SSL client,45892,54583 +1724262600,HTTPS,11451,12481 +1724262600,SSL client,11451,12481 +1724262600,Grammarly,11451,12481 +1724262600,HTTPS,29812,12825 +1724262600,__unknown,759273,4044098 +1724262600,HTTPS,9035,12862 +1724262600,__unknown,1479,2565 +1724262600,Dropbox,17313,5549 +1724262600,HTTPS,717836,1785579 +1724262600,SSL client,17313,5549 +1724262600,HTTPS,1085957,104177004 +1724262600,SSL client,105593,57081 +1724262600,Google Play,105593,57081 +1724262600,__unknown,47206,31896 +1724262600,Dropbox,114672,6148 +1724262600,Google APIs,11058,21499 +1724262600,Gmail,13783,16493 +1724262600,HTTP,1009,976 +1724262600,VKontakte,4337,11373 +1724262600,HTTPS,625449,7758826 +1724262600,Mozilla,8477,20282 +1724262600,Avast,1122,8673 +1724262600,SSL client,205738,212967 +1724262600,Pubmatic,3901,8255 +1724262600,Microsoft,14464,34980 +1724262600,VeriSign,1009,976 +1724262600,Mail.Ru,12847,12024 +1724262600,Yandex,12437,46368 +1724262600,GitHub,996,8377 +1724262600,Microsoft CryptoAPI,1009,976 +1724262600,Office 365,4259,13068 +1724262600,Battle.net site,3385,5427 +1724262600,Telegram,107082,92283 +1724262600,DNS over HTTPS,2970,12672 +1724262600,__unknown,396038,218104 +1724262600,Bing,8852,23168 +1724262600,Dropbox,7866,1463 +1724262600,Google APIs,2611,6656 +1724262600,Google,18545,23829 +1724262600,HTTP,15225,202293 +1724262600,Microsoft Update,1376,1634 +1724262600,Skype,2644,8207 +1724262600,SSL,13230,5744 +1724262600,TeamViewer,2096,12411 +1724262600,VKontakte,2460,4802 +1724262600,TwitchTV,5265,7221 +1724262600,Advanced Packaging Tool,1681,1408 +1724262600,HTTPS,2156347,25789014 +1724262600,Apple sites,1671,8576 +1724262600,iCloud,9471,20019 +1724262600,Mozilla,11344,13230 +1724262600,Avast,1122,8639 +1724262600,SSL client,1166520,18877184 +1724262600,Pubmatic,3601,6190 +1724262600,Amazon Web Services,3325,21602 +1724262600,Ubuntu Update Manager,1154,878 +1724262600,Microsoft,415232,518205 +1724262600,Mail.Ru,176522,183696 +1724262600,Yandex,410486,17444300 +1724262600,GitHub,16924,595982 +1724262600,Ubuntu,2253,4773 +1724262600,Microsoft CryptoAPI,3998,4217 +1724262600,Apple Maps,4897,12568 +1724262600,33Across,8433,6830 +1724262600,Criteo,10745,9444 +1724262600,Office 365,11759,37816 +1724262600,Microsoft Windows Live Services Authentication,22665,54590 +1724262600,Weborama,13983,36440 +1724262600,Telegram,2094,7684 +1724262600,GISMETEO,2260,9292 +1724262600,DNS over HTTPS,3180,13557 +1724262600,Firefox Update,1165,4423 +1724262600,_err_4655,1760,1282 +1724262600,STUN,4488400,76703619 +1724262600,__unknown,406746,280526 +1724262600,ICMP,7740,7800 +1724262600,DNS over HTTPS,24168,53681 +1724262600,__unknown,188,1255 +1724262600,DNS over HTTPS,0,2224 +1724262600,__unknown,94,594 +1724262600,__unknown,16863,288367 +1724262600,HTTPS,56507,56841 +1724262600,__unknown,377326,10205788 +1724262600,Google,27501,44632 +1724262600,HTTPS,46346,100955 +1724262600,SSL client,38984,78175 +1724262600,Yandex,8264,26596 +1724262600,ICMP,5160,2738 +1724262600,Weborama,3219,6947 +1724262600,Telegram,863,568 +1724262600,__unknown,2237502,45730002 +1724262600,BitTorrent,401,434 +1724262600,DHCPv6,163,0 +1724262600,Google APIs,51903,23628 +1724262600,Google,34355,126033 +1724262600,BitTorrent tracker,153,0 +1724262600,DNS,17464,0 +1724262600,Firefox,1496,2928 +1724262600,Gmail,19805,35736 +1724262600,Google Analytics,2017,6354 +1724262600,HTTP,113600,2822461 +1724262600,NetBIOS-dgm,243,0 +1724262600,NTP,12570,2820 +1724262600,STUN,5046,6076 +1724262600,VKontakte,2803,6101 +1724262600,Odnoklassniki,2184,5970 +1724262600,Advanced Packaging Tool,6825,162512 +1724262600,HTTPS,440683,937146 +1724262600,Mozilla,5584,2985 +1724262600,SSL client,133631,604066 +1724262600,Yandex,12852,392249 +1724262600,Linux Mint,928,996 +1724262600,Ubuntu,5897,161516 +1724262600,ICMP,22103,16114 +1724262600,DNS over HTTPS,4512,12775 +1724262600,CoAP,1372,1008 +1724262600,__unknown,756328,8054280 +1724262600,Google APIs,2860,1929 +1724262600,Google,19330,38353 +1724262600,DNS,38417,35987 +1724262600,Gmail,290518,164515 +1724262600,HTTP,70266,72230 +1724262600,Launchpad,3200,2480 +1724262600,Microsoft Update,1627,1317 +1724262600,NetBIOS-dgm,250,0 +1724262600,NTP,23120,5640 +1724262600,YouTube,7476,4978 +1724262600,VKontakte,2296,4866 +1724262600,Advanced Packaging Tool,27398,24990 +1724262600,HTTPS,526393,3057302 +1724262600,Avast,764,782 +1724262600,SSL client,378792,2576414 +1724262600,Ubuntu Update Manager,18184,17102 +1724262600,Microsoft,633,7991 +1724262600,Mail.Ru,940,5596 +1724262600,Yandex,31071,1436545 +1724262600,GitHub,20824,912106 +1724262600,MDNS,1632,0 +1724262600,Ubuntu,6864,6326 +1724262600,Microsoft CryptoAPI,7197,5615 +1724262600,Microsoft WNS,633,7991 +1724262600,ICMP,8298,5698 +1724262600,ICMP for IPv6,610,0 +1724262600,IGMP,360,0 +1724262600,Telegram,2095,677 +1724262600,Edge Chromium,1114,3373 +1724262600,DNS over HTTPS,7273,25171 +1724262900,__unknown,52234,74386 +1724262900,HTTPS,150387,77400 +1724262900,__unknown,113852,68119 +1724262900,Google,20583,30602 +1724262900,HTTPS,20583,30602 +1724262900,SSL client,20583,30602 +1724262900,DNS over HTTPS,194161,431963 +1724262900,HTTPS,15584,10146 +1724262900,SSL client,15584,10146 +1724262900,Yandex,15584,10146 +1724262900,__unknown,7777,7858 +1724262900,Dropbox,20287,6282 +1724262900,HTTPS,169481,231987 +1724262900,SSL client,155651,41616 +1724262900,Yandex,90006,29864 +1724262900,Dropbox Download,45358,5470 +1724262900,Google APIs,3578,40020 +1724262900,HTTPS,144583,173752 +1724262900,SSL client,12836,41687 +1724262900,Google Play,9258,1667 +1724262900,__unknown,493902,38728017 +1724262900,Bing,8215,5533 +1724262900,Dropbox,10156,7043 +1724262900,Google,2425,9222 +1724262900,MSN,2842,7741 +1724262900,HTTP,500,463 +1724262900,HTTPS,373004,4003701 +1724262900,Apple sites,8286,156788 +1724262900,iCloud,3584,8167 +1724262900,Mozilla,2466,1772 +1724262900,Avast,1122,8327 +1724262900,SSL client,249799,3833943 +1724262900,Microsoft,14460,44372 +1724262900,Mail.Ru,8883,6605 +1724262900,Yandex,130478,3490898 +1724262900,Microsoft CryptoAPI,500,463 +1724262900,uTorrent,11072,19458 +1724262900,Google Play,29674,23074 +1724262900,Office 365,6914,22580 +1724262900,Sharepoint Online,1906,8066 +1724262900,Battle.net site,1492,5716 +1724262900,DNS over HTTPS,7238,14564 +1724262900,__unknown,389482,176468 +1724262900,Bing,2007,9228 +1724262900,Dropbox,1769,1272 +1724262900,Google APIs,244650,132749 +1724262900,Google,24496,435689 +1724262900,Wikipedia,15310,246578 +1724262900,Android browser,986,2523 +1724262900,DNS,529,984 +1724262900,HTTP,6843,17262 +1724262900,Microsoft Update,1535,3585 +1724262900,SSL,6509,12870 +1724262900,TwitchTV,5531,7023 +1724262900,Steam,16859,42018 +1724262900,HTTPS,1377880,12905368 +1724262900,WhatsApp,1935,10825 +1724262900,Apple sites,8170,37079 +1724262900,iCloud,45419,89762 +1724262900,Mozilla,2990,17215 +1724262900,Avast,5609,24122 +1724262900,SSL client,956729,8288132 +1724262900,Pubmatic,3661,6010 +1724262900,Box,1344,3901 +1724262900,CloudFront,6207,1273 +1724262900,Microsoft,112415,189308 +1724262900,Mail.Ru,133340,185425 +1724262900,Siri,17400,9106 +1724262900,Yandex,167649,4845865 +1724262900,GitHub,39608,1615255 +1724262900,Microsoft Azure,1693,8424 +1724262900,33Across,5250,10391 +1724262900,Garmin,1927,6379 +1724262900,Office 365,13241,141916 +1724262900,Sharepoint Online,3084,94285 +1724262900,Microsoft Windows Live Services Authentication,42001,102199 +1724262900,Google Hangouts,2311,6230 +1724262900,Hola,4198,6640 +1724262900,Office Mobile,28489,17245 +1724262900,Telegram,240,240 +1724262900,GISMETEO,2925,5334 +1724262900,Edge Chromium,527,2006 +1724262900,DNS over HTTPS,8690,40643 +1724262900,DNS over HTTPS,1199,5393 +1724262900,HTTPS,52329,26977 +1724262900,__unknown,105458,96387 +1724262900,__unknown,44469,30323 +1724262900,Windows Live,3303,19587 +1724262900,HTTPS,33717,47563 +1724262900,SSL client,3303,19587 +1724262900,__unknown,356455,10360769 +1724262900,HTTPS,10405,12677 +1724262900,ICMP,4838,4556 +1724262900,__unknown,3084,3392 +1724262900,Gmail,28910,19298 +1724262900,HTTP,41795,1263491 +1724262900,HTTPS,49514,391624 +1724262900,WhatsApp,16419,353820 +1724262900,SSL client,28910,19298 +1724262900,ICMP,787,222 +1724262900,__unknown,990334,10079462 +1724262900,BitTorrent,310,496 +1724262900,DHCPv6,978,0 +1724262900,Google,18134,37536 +1724262900,IKE,860,660 +1724262900,Chrome,1215,589 +1724262900,DNS,11011,0 +1724262900,Gmail,7272,4392 +1724262900,Google Calendar,12003,9401 +1724262900,HTTP,2851,2437 +1724262900,NTP,720,720 +1724262900,STUN,984,888 +1724262900,Odnoklassniki,2609,7439 +1724262900,HTTPS,95755,209430 +1724262900,Mozilla,2369,4904 +1724262900,SSL client,44678,71558 +1724262900,Microsoft CryptoAPI,1154,1440 +1724262900,ICMP,44738,15706 +1724262900,Telegram,1488,881 +1724262900,Grammarly,2291,7886 +1724262900,DNS over HTTPS,12194,36124 +1724262900,__unknown,752525,725674 +1724262900,BitTorrent,153,537 +1724262900,DHCPv6,163,0 +1724262900,Eset,1032,4240 +1724262900,Google APIs,10455,32549 +1724262900,Google,25633,59380 +1724262900,BitTorrent tracker,153,537 +1724262900,DNS,44563,43271 +1724262900,Gmail,6194,8801 +1724262900,HTTP,76418,127745 +1724262900,Internet Explorer,822,660 +1724262900,Launchpad,3200,2414 +1724262900,Microsoft Update,641,502 +1724262900,NTP,13290,3540 +1724262900,SSL,1032,4240 +1724262900,STUN,1148,1036 +1724262900,VKontakte,4590,9950 +1724262900,Odnoklassniki,3759,2657 +1724262900,Steam,3794,40585 +1724262900,Advanced Packaging Tool,28636,26233 +1724262900,HTTPS,316648,1320264 +1724262900,iCloud,1282,5777 +1724262900,Mozilla,2455,5056 +1724262900,Avast,382,391 +1724262900,Opera,4639,9279 +1724262900,SSL client,71251,171463 +1724262900,Ubuntu Update Manager,20596,19405 +1724262900,Microsoft,5120,6848 +1724262900,VeriSign,566,2141 +1724262900,Yandex,12086,35328 +1724262900,Ubuntu,5690,5332 +1724262900,Microsoft CryptoAPI,4749,5715 +1724262900,Microsoft NCSI,925,974 +1724262900,ICMP,5986,4292 +1724262900,Telegram,4127,1591 +1724262900,Edge Chromium,6217,19509 +1724262900,Grammarly,2262,7851 +1724262900,DNS over HTTPS,11709,41153 +1724263200,__unknown,421347,83442 +1724263200,__unknown,936187,676590 +1724263200,VKontakte,16808,30318 +1724263200,HTTPS,2260157,36804564 +1724263200,SSL client,238160,1368659 +1724263200,Mail.Ru,221352,1338341 +1724263200,HTTPS,104999,146882 +1724263200,SSL client,91107,137257 +1724263200,Sharepoint Online,4045,8092 +1724263200,Trello,87062,129165 +1724263200,__unknown,12772,7289 +1724263200,HTTPS,12860,12363 +1724263200,SSL client,12860,12363 +1724263200,Mail.Ru,12860,12363 +1724263200,HTTPS,13865,23488 +1724263200,SSL client,13865,23488 +1724263200,Yandex,13865,23488 +1724263200,Google,82629,698280 +1724263200,HTTPS,86364,704898 +1724263200,SSL client,86364,704898 +1724263200,Office 365,3735,6618 +1724263200,HTTPS,1023496,1000574 +1724263200,SSL client,1009346,988193 +1724263200,Yandex,1009346,988193 +1724263200,HTTPS,9609,5723 +1724263200,Dropbox,123364,25075 +1724263200,HTTPS,462613,390161 +1724263200,SSL client,295305,276849 +1724263200,Microsoft,12068,241647 +1724263200,Google Play,12443,2411 +1724263200,Dropbox Download,147430,7716 +1724263200,__unknown,4377,889 +1724263200,Gmail,9748,20659 +1724263200,IMAPS,9748,20659 +1724263200,HTTPS,98508,117414 +1724263200,SSL client,37906,61567 +1724263200,Yandex,5366,16576 +1724263200,Google Play,22792,24332 +1724263200,__unknown,59184,87500 +1724263200,Bing,18634,10877 +1724263200,Google APIs,2204,6896 +1724263200,Google Drive,9426,10922 +1724263200,Gmail,10022,23505 +1724263200,HTTP,1010,956 +1724263200,SSL,1635,1484 +1724263200,TwitchTV,17568,7353 +1724263200,IMAPS,10022,23505 +1724263200,HTTPS,565112,1559017 +1724263200,WhatsApp,1285,1156 +1724263200,Mozilla,12578,18171 +1724263200,SSL client,192596,403040 +1724263200,Box,893,6204 +1724263200,Microsoft,39651,52792 +1724263200,Yandex,69799,223372 +1724263200,Intel,1092,5112 +1724263200,Microsoft CryptoAPI,1010,956 +1724263200,Office 365,6716,30591 +1724263200,Google Hangouts,1635,1484 +1724263200,Battle.net site,2378,5761 +1724263200,DNS over HTTPS,6459,15429 +1724263200,__unknown,231252,92214 +1724263200,Apple Update,82107,4955632 +1724263200,Dropbox,4972,2895 +1724263200,Google APIs,10647,77956 +1724263200,Google,416744,298122 +1724263200,MSN,1813,6963 +1724263200,Apple Mail,5014,11026 +1724263200,Chrome,5790,3784 +1724263200,Dell,1051,4366 +1724263200,Gmail,5508,2755 +1724263200,HTTP,7073,4998 +1724263200,Skype,5983,12843 +1724263200,SSL,9638,15133 +1724263200,VKontakte,1379,3863 +1724263200,Advanced Packaging Tool,1283,1214 +1724263200,IMAPS,5014,11026 +1724263200,HTTPS,2330318,23681758 +1724263200,iCloud,41122,119765 +1724263200,Mozilla,2381,5183 +1724263200,Avast,1697,6016 +1724263200,SSL client,1293140,13466176 +1724263200,Ubuntu Update Manager,1283,1214 +1724263200,Microsoft,124430,153193 +1724263200,Mail.Ru,248425,249228 +1724263200,Yandex,141669,5552299 +1724263200,GitHub,41708,1592605 +1724263200,Office 365,93870,77496 +1724263200,Sharepoint Online,11564,290773 +1724263200,Microsoft Windows Live Services Authentication,6315,15734 +1724263200,Office Mobile,29366,16873 +1724263200,Telegram,1406,6579 +1724263200,Sberbank of Russia,15375,10590 +1724263200,DNS over HTTPS,2386,11064 +1724263200,HTTPS,51750,64808 +1724263200,SSL client,51750,64808 +1724263200,Telegram,51750,64808 +1724263200,SSL,1260,7852 +1724263200,SSL client,1260,7852 +1724263200,Google Hangouts,1260,7852 +1724263200,HTTPS,72761,80371 +1724263200,SSL client,53345,59832 +1724263200,Telegram,53345,59832 +1724263200,HTTPS,37862,15534 +1724263200,ICMP,814,814 +1724263200,__unknown,11312,14663 +1724263200,Google,8084,20548 +1724263200,HTTP,753,474 +1724263200,HTTPS,57720,160717 +1724263200,Spotify,2213,8140 +1724263200,SSL client,15519,42749 +1724263200,ICMP,2350,1850 +1724263200,DNS over HTTPS,3464,9015 +1724263200,Discord,1758,5046 +1724263200,__unknown,1044452,844303 +1724263200,BITS,46039,242127 +1724263200,BitTorrent,463,496 +1724263200,Google APIs,21279,46995 +1724263200,Google,39754,180060 +1724263200,BitTorrent tracker,153,0 +1724263200,Chrome,1166,972 +1724263200,DNS,17274,0 +1724263200,Gmail,15274,20150 +1724263200,HTTP,49680,247830 +1724263200,Microsoft Update,646,506 +1724263200,NTP,12930,3180 +1724263200,SSL,3484,13515 +1724263200,STUN,11588,1850 +1724263200,Odnoklassniki,2609,7439 +1724263200,HTTPS,180928,1055649 +1724263200,SSL client,103422,893657 +1724263200,Microsoft,46039,242127 +1724263200,VeriSign,566,2141 +1724263200,Yandex,15961,620977 +1724263200,MDNS,88,0 +1724263200,Microsoft CryptoAPI,1212,2647 +1724263200,Google Play,3688,8400 +1724263200,ICMP,24679,13566 +1724263200,ICMP for IPv6,70,0 +1724263200,Telegram,1395,968 +1724263200,Grammarly,4857,9636 +1724263200,DNS over HTTPS,12372,36871 +1724263200,__unknown,473229,712183 +1724263200,DHCPv6,978,0 +1724263200,Google APIs,1115,5564 +1724263200,Google,23265,50174 +1724263200,Kaspersky,547,541 +1724263200,Apple Mail,22850,57867 +1724263200,Chrome,5085,4356 +1724263200,DNS,52156,51854 +1724263200,Gmail,10092,23041 +1724263200,HTTP,106638,122884 +1724263200,Launchpad,2560,1984 +1724263200,Microsoft Update,2264,1896 +1724263200,NetBIOS-dgm,243,0 +1724263200,NTP,1980,1980 +1724263200,STUN,1148,1036 +1724263200,YouTube,6638,11066 +1724263200,VKontakte,4591,9880 +1724263200,Advanced Packaging Tool,33210,31164 +1724263200,IMAPS,32942,80908 +1724263200,HTTPS,476149,615561 +1724263200,Apple sites,1742,9172 +1724263200,iCloud,5905,19119 +1724263200,Avast,1594,1630 +1724263200,Opera,3573,1630 +1724263200,SSL client,93203,232966 +1724263200,CloudFront,2817,4093 +1724263200,Ubuntu Update Manager,25810,24706 +1724263200,Yandex,12224,39607 +1724263200,Ubuntu,5756,5396 +1724263200,Microsoft CryptoAPI,7440,12414 +1724263200,ICMP,8510,5642 +1724263200,Telegram,1931,605 +1724263200,Edge Chromium,6211,20153 +1724263200,DNS over TLS,2158,9539 +1724263200,DNS over HTTPS,15167,52449 +1724263499,__unknown,966052,1884442 +1724263499,HTTPS,5013,9464 +1724263499,SSL client,5013,9464 +1724263499,Sharepoint Online,5013,9464 +1724263499,HTTPS,63479,59464 +1724263499,HTTPS,472213,7091475 +1724263499,HTTPS,16003,18132 +1724263499,Dropbox,15803,6673 +1724263499,HTTPS,15803,6673 +1724263499,SSL client,15803,6673 +1724263499,Dropbox,14691,10406 +1724263499,HTTPS,107422,90939 +1724263499,SSL client,105382,89535 +1724263499,Google Play,90691,79129 +1724263499,__unknown,119270,42029 +1724263499,BITS,7189,207062 +1724263499,Dropbox,1394120,118096 +1724263499,Google APIs,3787,10714 +1724263499,Google Drive,8898,10954 +1724263499,Google,13520,70324 +1724263499,Android browser,1251,3966 +1724263499,HTTP,8440,211028 +1724263499,Skype,2866,7055 +1724263499,VKontakte,13298,8987 +1724263499,HTTPS,1828782,5522632 +1724263499,iCloud,2632,24237 +1724263499,Avast,1122,8535 +1724263499,SSL client,1651922,467163 +1724263499,Microsoft,27439,241457 +1724263499,Mail.Ru,6261,5840 +1724263499,Yandex,69232,128505 +1724263499,Office 365,5187,26179 +1724263499,Dropbox Download,108431,7915 +1724263499,Battle.net site,2318,5427 +1724263499,GISMETEO,1251,3966 +1724263499,__unknown,3763940,4630595 +1724263499,Bing,6194,28590 +1724263499,Google APIs,2727,6658 +1724263499,HTTP,1401,1465 +1724263499,Microsoft Update,1485,3585 +1724263499,Skype,1840,86257 +1724263499,VKontakte,6546,5701 +1724263499,IMAPS,6718,27622 +1724263499,HTTPS,1377222,32144136 +1724263499,Apple sites,7452,48000 +1724263499,iCloud,69785,149420 +1724263499,Avast,1944,4342 +1724263499,SSL client,994354,30905542 +1724263499,Amazon Web Services,3385,21542 +1724263499,Microsoft,127027,448744 +1724263499,NIH,22305,254332 +1724263499,Mail.Ru,172307,205384 +1724263499,Yandex,50884,697954 +1724263499,GitHub,33027,1809407 +1724263499,Nvidia,5570,11292 +1724263499,Apple Maps,3358,12127 +1724263499,Garmin,441265,26924360 +1724263499,Office 365,17287,69279 +1724263499,Sharepoint Online,2878,94231 +1724263499,Microsoft Windows Live Services Authentication,7727,11537 +1724263499,Mendeley,9479,14845 +1724263499,Telegram,120,120 +1724263499,DNS over TLS,869,4705 +1724263499,DNS over HTTPS,14824,56128 +1724263499,__unknown,132,163 +1724263499,__unknown,282356,304421 +1724263499,__unknown,63545,46993 +1724263499,STUN,932001,1544353 +1724263499,ICMP,3956,0 +1724263499,__unknown,83411,73494 +1724263499,HTTPS,7972,9068 +1724263499,__unknown,2052,2005 +1724263499,HTTPS,32006,15407 +1724263499,ICMP,3480,3480 +1724263499,__unknown,265284,6518234 +1724263499,Google,18763,19950 +1724263499,HTTP,18846,11870 +1724263499,HTTPS,38861,90631 +1724263499,SSL client,18763,19950 +1724263499,ICMP,2960,0 +1724263499,Telegram,493,309 +1724263499,__unknown,499317,538475 +1724263499,BitTorrent,310,496 +1724263499,DHCPv6,163,0 +1724263499,Google APIs,12924,36766 +1724263499,Google,84115,216654 +1724263499,Android browser,590,399 +1724263499,DNS,20688,0 +1724263499,Gmail,32106,53449 +1724263499,HTTP,5111,13392 +1724263499,Microsoft Update,642,511 +1724263499,NetBIOS-dgm,250,0 +1724263499,NTP,12482,3540 +1724263499,SSL,797,7093 +1724263499,STUN,5510,8376 +1724263499,Odnoklassniki,2543,7559 +1724263499,HTTPS,250748,1383039 +1724263499,WhatsApp,1797,7977 +1724263499,SSL client,164911,619582 +1724263499,Microsoft,693,7992 +1724263499,Yandex,9565,260428 +1724263499,Microsoft CryptoAPI,2058,2381 +1724263499,Microsoft WNS,693,7992 +1724263499,Google Hangouts,797,7093 +1724263499,ICMP,43855,13098 +1724263499,Telegram,1131,560 +1724263499,Grammarly,2941,1849 +1724263499,DNS over HTTPS,9800,26655 +1724263499,_err_4907,18322,31124 +1724263499,__unknown,324570,488657 +1724263499,BITS,4090,15409 +1724263499,BitTorrent,153,198 +1724263499,Google APIs,21503,28634 +1724263499,Google Drive,8964,11270 +1724263499,Google,38931,121956 +1724263499,Google Translate,4790,3930 +1724263499,QQ,414,1581 +1724263499,BitTorrent tracker,153,198 +1724263499,DNS,42954,44034 +1724263499,Firefox,2958,3336 +1724263499,Gmail,5992,11919 +1724263499,HTTP,121887,286136 +1724263499,Launchpad,3496,2480 +1724263499,Microsoft Update,1283,1015 +1724263499,NTP,1620,1620 +1724263499,STUN,12770,962 +1724263499,VKontakte,5096,10797 +1724263499,Odnoklassniki,3699,2717 +1724263499,Advanced Packaging Tool,34004,159694 +1724263499,HTTPS,338740,1788586 +1724263499,Apple sites,7292,29633 +1724263499,Avast,382,391 +1724263499,SSL client,141974,561981 +1724263499,GoDaddy,588,2993 +1724263499,Ubuntu Update Manager,26964,153896 +1724263499,Microsoft,771,9506 +1724263499,Mail.Ru,2996,5016 +1724263499,Yandex,23523,314165 +1724263499,Ubuntu,4394,4240 +1724263499,Nvidia,689,4549 +1724263499,Microsoft CryptoAPI,6333,7750 +1724263499,Microsoft WNS,771,9506 +1724263499,uTorrent,694,421 +1724263499,Google Play,14070,7282 +1724263499,ICMP,17511,4366 +1724263499,Telegram,2095,969 +1724263499,Edge Chromium,7798,23652 +1724263499,DNS over TLS,4162,14385 +1724263499,DNS over HTTPS,14452,50325 +1724263800,__unknown,1349995,4261397 +1724263800,__unknown,6991,4683 +1724263800,Dropbox,4907,6213 +1724263800,HTTPS,310890,19552 +1724263800,SSL client,310890,19552 +1724263800,Dropbox Download,305983,13339 +1724263800,Dropbox,130635,12553 +1724263800,Google,113081,112057 +1724263800,HTTPS,383114,1842089 +1724263800,SSL client,243716,124610 +1724263800,DNS over HTTPS,245288,539040 +1724263800,HTTPS,2799369,5121489 +1724263800,SSL client,2799369,5121489 +1724263800,Mail.Ru,2799369,5121489 +1724263800,HTTPS,56882,68165 +1724263800,SSL client,54415,62440 +1724263800,Telegram,54415,62440 +1724263800,__unknown,46295,48602 +1724263800,SSL,87355,24489 +1724263800,HTTPS,58888,118509 +1724263800,APNS,87355,24489 +1724263800,SSL client,134010,30084 +1724263800,Dropbox Download,46655,5595 +1724263800,__unknown,3981,1058 +1724263800,VKontakte,33030,33402 +1724263800,HTTPS,94589,441633 +1724263800,SSL client,33030,33402 +1724263800,__unknown,196840,90365 +1724263800,Google APIs,4604,11949 +1724263800,Yahoo!,2571,5444 +1724263800,HTTPS,490990,1943107 +1724263800,iCloud,6059,12197 +1724263800,Avast,1122,8849 +1724263800,SSL client,356102,1756037 +1724263800,Microsoft,20317,57564 +1724263800,Mail.Ru,8819,6604 +1724263800,Yandex,31984,1484490 +1724263800,Google Play,257262,74875 +1724263800,Exchange Online,10865,14553 +1724263800,Office 365,4019,71339 +1724263800,Battle.net site,2258,3973 +1724263800,Google Sign in,6222,4200 +1724263800,__unknown,429642,359918 +1724263800,Dropbox,24225,235478 +1724263800,Google APIs,23065,70073 +1724263800,Google,1138429,1904857 +1724263800,MSN,1145,6322 +1724263800,Android browser,974,2628 +1724263800,HTTP,9755,10004 +1724263800,Launchpad,508,430 +1724263800,Microsoft Update,4400,11577 +1724263800,Skype,14813,26299 +1724263800,YouTube,27083,52432 +1724263800,VKontakte,2839,6199 +1724263800,Steam,7215,16054 +1724263800,Advanced Packaging Tool,1800,1716 +1724263800,IMAPS,5386,21207 +1724263800,HTTPS,3122777,7825858 +1724263800,Apple sites,11854,170606 +1724263800,iCloud,22849,42388 +1724263800,SSL client,2275081,5366957 +1724263800,Amazon Web Services,3385,21602 +1724263800,CloudFront,2265,1747 +1724263800,Ubuntu Update Manager,1292,1286 +1724263800,Microsoft,299512,539473 +1724263800,NIH,5525,12551 +1724263800,Mail.Ru,481821,426909 +1724263800,Yandex,71298,94780 +1724263800,GitHub,42848,1616389 +1724263800,Intel,1146,4770 +1724263800,Microsoft CryptoAPI,1500,1851 +1724263800,Google Play,48631,18995 +1724263800,Office 365,7940,19455 +1724263800,Microsoft Windows Live Services Authentication,20435,44818 +1724263800,Office Mobile,8706,7996 +1724263800,Telegram,132,132 +1724263800,GISMETEO,3168,11628 +1724263800,Xiaomi,1756,4563 +1724263800,DNS over HTTPS,271640,602835 +1724263800,__unknown,652,324 +1724263800,DNS over HTTPS,11289,28400 +1724263800,__unknown,10935,306269 +1724263800,HTTP,4936,3264 +1724263800,HTTPS,12321,20886 +1724263800,__unknown,275,291 +1724263800,HTTPS,54743,79447 +1724263800,ICMP,3478,3774 +1724263800,__unknown,456414,4754681 +1724263800,BitTorrent,463,496 +1724263800,DHCPv6,978,0 +1724263800,Google APIs,55492,479163 +1724263800,Google Drive,9451,10846 +1724263800,Google,46496,281005 +1724263800,BitTorrent tracker,153,0 +1724263800,DNS,22685,0 +1724263800,Gmail,11051,21080 +1724263800,Google Calendar,5772,4753 +1724263800,HTTP,20623,994738 +1724263800,Microsoft Update,17022,988453 +1724263800,NTP,24690,5190 +1724263800,SSL,3039,9446 +1724263800,STUN,1790,1776 +1724263800,HTTPS,228707,1185329 +1724263800,Mozilla,5515,6641 +1724263800,SSL client,165806,986951 +1724263800,Microsoft,922,7534 +1724263800,Mail.Ru,1204,4865 +1724263800,Yandex,10306,149660 +1724263800,MDNS,364,0 +1724263800,Microsoft CryptoAPI,2338,4200 +1724263800,Google Play,6987,12527 +1724263800,ICMP,38091,10910 +1724263800,ICMP for IPv6,70,0 +1724263800,Google Sign in,12610,8877 +1724263800,DNS over HTTPS,33318,102645 +1724263800,__unknown,306138,676586 +1724263800,DHCPv6,163,0 +1724263800,Google APIs,5533,19959 +1724263800,Google,67060,237943 +1724263800,DNS,40659,37182 +1724263800,Gmail,6073,36926 +1724263800,HTTP,184442,3072738 +1724263800,Internet Explorer,6323,2112 +1724263800,Launchpad,3126,2480 +1724263800,Microsoft Update,90904,2965940 +1724263800,NTP,12570,2820 +1724263800,STUN,920,222 +1724263800,VKontakte,4589,9865 +1724263800,Steam,585,527 +1724263800,Advanced Packaging Tool,28607,25979 +1724263800,Windows Update,78237,1669771 +1724263800,HTTPS,244169,1221500 +1724263800,Apple sites,3528,13665 +1724263800,iCloud,3879,9352 +1724263800,Mozilla,2606,8302 +1724263800,Avast,764,782 +1724263800,SSL client,142498,860527 +1724263800,Ubuntu Update Manager,21863,20247 +1724263800,Microsoft,3548,12626 +1724263800,Yandex,22559,49591 +1724263800,Ubuntu,4534,4166 +1724263800,Microsoft CryptoAPI,9154,8062 +1724263800,Microsoft NCSI,931,1040 +1724263800,Microsoft WNS,633,7992 +1724263800,Apple Maps,2099,5279 +1724263800,AdRoll,2212,6940 +1724263800,Microsoft Windows Live Services Authentication,3617,11372 +1724263800,ICMP,7050,3330 +1724263800,JetBrains,14605,420689 +1724263800,Telegram,1927,649 +1724263800,Edge Chromium,8073,24197 +1724263800,DNS over TLS,3237,14309 +1724263800,DNS over HTTPS,23474,80907 +1724264100,STUN,30071467,3687874 +1724264100,HTTPS,61370220,4021214196 +1724264100,HTTPS,369781,377632 +1724264100,SSL client,369781,377632 +1724264100,Yandex,369781,377632 +1724264100,Gmail,39200,93858 +1724264100,IMAPS,39200,93858 +1724264100,SSL client,39200,93858 +1724264100,Google,206517,207883 +1724264100,HTTPS,224067,237055 +1724264100,SSL client,206517,207883 +1724264100,__unknown,1630,2168 +1724264100,YouTube,584493,78046 +1724264100,HTTPS,641059,612660 +1724264100,SSL client,584493,78046 +1724264100,HTTPS,5132,39277 +1724264100,Dropbox,118888,22031 +1724264100,HTTPS,160321,168863 +1724264100,SSL client,148460,155650 +1724264100,Microsoft,26671,126486 +1724264100,Microsoft Teams,2901,7133 +1724264100,HTTPS,57388,23773 +1724264100,__unknown,358986,6530649 +1724264100,Google APIs,5894,14017 +1724264100,Google,24822,56114 +1724264100,Wikipedia,14220,333227 +1724264100,Gmail,15368,36360 +1724264100,LiveJournal,80128,226418 +1724264100,TeamViewer,22753,47051 +1724264100,VKontakte,49261,26045 +1724264100,HTTPS,639611,8890659 +1724264100,Mozilla,2337,5191 +1724264100,SSL client,394464,1093000 +1724264100,Microsoft,35771,80857 +1724264100,Mail.Ru,31963,39178 +1724264100,Yandex,80173,21241 +1724264100,Google Play,39212,40465 +1724264100,Office 365,1565,7344 +1724264100,Sharepoint Online,4774,174596 +1724264100,Battle.net site,2318,5427 +1724264100,Xiaomi,3021,13038 +1724264100,Font Awesome,2069,4584 +1724264100,__unknown,545025,917250 +1724264100,Google APIs,223678,64760 +1724264100,Google Drive,9492,10957 +1724264100,Google,47491,55616 +1724264100,MSN,989,5718 +1724264100,Yahoo!,16413,10987 +1724264100,Adobe Software,4063,12056 +1724264100,Google Analytics,5213,7773 +1724264100,HTTP,10997,148901 +1724264100,Launchpad,574,430 +1724264100,LiveJournal,77422,2520396 +1724264100,Skype,5049,15290 +1724264100,YouTube,43599,48293 +1724264100,Advanced Packaging Tool,4503,4186 +1724264100,IMAPS,20487,82683 +1724264100,HTTPS,2357952,64781366 +1724264100,Apple sites,2604,8502 +1724264100,iCloud,14791,28787 +1724264100,Mozilla,2340,4847 +1724264100,Avast,3144,20335 +1724264100,SSL client,1105056,6815556 +1724264100,Amazon Web Services,3259,21490 +1724264100,Ubuntu Update Manager,3929,3756 +1724264100,Microsoft,125717,87755 +1724264100,Mail.Ru,147761,260523 +1724264100,Yandex,297283,2619450 +1724264100,GitHub,13144,592399 +1724264100,Viber,4677,15130 +1724264100,Parallels,4363,12330 +1724264100,Office 365,18500,301264 +1724264100,Microsoft Windows Live Services Authentication,34066,87276 +1724264100,Telegram,120,120 +1724264100,GISMETEO,2134,9124 +1724264100,Edge Chromium,1401,4094 +1724264100,Grammarly,2227,6828 +1724264100,DNS over HTTPS,5054,19659 +1724264100,HTTPS,21928,31867 +1724264100,SSL client,21928,31867 +1724264100,DNS over HTTPS,21928,31867 +1724264100,SSL,2808,9190 +1724264100,Google,1069395,3384014 +1724264100,HTTP,707,408 +1724264100,STUN,294170,3728376 +1724264100,HTTPS,1082661,3397720 +1724264100,SSL client,1069395,3384014 +1724264100,__unknown,5758,53624 +1724264100,Google,34288,14370 +1724264100,HTTPS,76159,379423 +1724264100,SSL client,40793,173854 +1724264100,ICMP,12496,6960 +1724264100,Stripe,6505,159484 +1724264100,DNS over HTTPS,9411,25590 +1724264100,__unknown,629516,2562742 +1724264100,BitTorrent,310,496 +1724264100,Google APIs,66410,70810 +1724264100,Google Drive,10065,11087 +1724264100,Google,31397,68792 +1724264100,Kaspersky,608,607 +1724264100,DNS,12741,0 +1724264100,Gmail,269389,115090 +1724264100,HTTP,1424,1347 +1724264100,NetBIOS-dgm,243,0 +1724264100,NTP,25388,6090 +1724264100,SSL,797,7093 +1724264100,STUN,21120,1480 +1724264100,VKontakte,77526,339308 +1724264100,Odnoklassniki,2669,7500 +1724264100,HTTPS,565052,1096385 +1724264100,WhatsApp,1806,7934 +1724264100,SSL client,472390,689997 +1724264100,Siri,6517,7041 +1724264100,Yandex,3080,50541 +1724264100,Microsoft CryptoAPI,816,740 +1724264100,33Across,2352,7800 +1724264100,Google Hangouts,797,7093 +1724264100,ICMP,23238,14166 +1724264100,DNS over HTTPS,16101,40618 +1724264100,__unknown,347823,1563322 +1724264100,BitTorrent,153,537 +1724264100,DHCPv6,815,0 +1724264100,Google,52175,109936 +1724264100,BitTorrent tracker,153,537 +1724264100,Chrome,1130,968 +1724264100,DNS,40102,35688 +1724264100,HTTP,80457,87313 +1724264100,Launchpad,2560,1984 +1724264100,NetBIOS-dgm,250,0 +1724264100,NTP,1710,1710 +1724264100,STUN,13596,2146 +1724264100,Advanced Packaging Tool,27407,25559 +1724264100,HTTPS,175287,1089196 +1724264100,Avast,382,391 +1724264100,SSL client,81380,151321 +1724264100,Ubuntu Update Manager,20642,19793 +1724264100,Mail.Ru,4850,442 +1724264100,Yandex,14243,28879 +1724264100,Ubuntu,5612,5161 +1724264100,Microsoft CryptoAPI,604,2178 +1724264100,ICMP,5219,3552 +1724264100,Telegram,1891,701 +1724264100,Google Sign in,6263,4187 +1724264100,Edge Chromium,5330,14290 +1724264100,DNS over HTTPS,8125,19209 +1724264400,__unknown,97005,283345 +1724264400,__unknown,80545,43022 +1724264400,HTTPS,10667,12087 +1724264400,Google,45292,63906 +1724264400,HTTPS,45292,63906 +1724264400,SSL client,45292,63906 +1724264400,__unknown,1244,1838 +1724264400,__unknown,3304,43824 +1724264400,HTTPS,4927,10113 +1724264400,SSL client,4927,10113 +1724264400,Sharepoint Online,4927,10113 +1724264400,__unknown,114292,25557 +1724264400,__unknown,46188,47506 +1724264400,HTTPS,10915,14837 +1724264400,Google APIs,4054,14068 +1724264400,VKontakte,13330,24261 +1724264400,HTTPS,298000,1760921 +1724264400,SSL client,50142,293031 +1724264400,Yandex,9777,230431 +1724264400,Google Play,22981,24271 +1724264400,__unknown,212168,170188 +1724264400,Google APIs,4674,15475 +1724264400,Google,20039,111719 +1724264400,MSN,4135,6162 +1724264400,YouTube,3937,15779 +1724264400,HTTPS,339377,2298902 +1724264400,Mozilla,5009,10459 +1724264400,SSL client,163667,1070610 +1724264400,Mail.Ru,74178,141975 +1724264400,Yandex,48314,751215 +1724264400,Office 365,3381,17826 +1724264400,__unknown,258140,1577436 +1724264400,Dropbox,2757,4385 +1724264400,Google APIs,6496,18191 +1724264400,Google,17074,43278 +1724264400,MSN,4094,6405 +1724264400,HTTP,11711,18629 +1724264400,iTunes,925,6097 +1724264400,Skype,3116,7715 +1724264400,SSL,4559,27088 +1724264400,YouTube,4979,4172 +1724264400,VKontakte,2139,12020 +1724264400,Advanced Packaging Tool,3380,3244 +1724264400,IMAPS,6724,27556 +1724264400,HTTPS,1256982,10426768 +1724264400,Mozilla,10659,128172 +1724264400,Avast,1122,9021 +1724264400,Opera,14722,15291 +1724264400,SSL client,793120,4213315 +1724264400,Ad Nexus,3320,4455 +1724264400,Ubuntu Update Manager,2853,2714 +1724264400,Microsoft,60249,122082 +1724264400,Mail.Ru,361427,2552839 +1724264400,Yandex,252960,302426 +1724264400,GitHub,25748,957999 +1724264400,Ubuntu,952,925 +1724264400,Microsoft Azure,12240,8597 +1724264400,Google Update,4400,10370 +1724264400,Apple Maps,2546,7952 +1724264400,Rambler,15488,8495 +1724264400,Office 365,2330,2465 +1724264400,Sharepoint Online,3284,8308 +1724264400,Telegram,132,132 +1724264400,Xiaomi,1624,5115 +1724264400,DNS over HTTPS,11768,40604 +1724264400,__unknown,12342,10664 +1724264400,__unknown,123177,78653 +1724264400,__unknown,188,229 +1724264400,__unknown,94,660 +1724264400,ICMP,6060,6180 +1724264400,__unknown,2441,23901 +1724264400,HTTP,2947,2040 +1724264400,HTTPS,97151,14740 +1724264400,__unknown,61882,501055 +1724264400,Google,92137,61357 +1724264400,HTTP,1143,2026 +1724264400,HTTPS,120934,1100879 +1724264400,SSL client,92137,61357 +1724264400,ICMP,6580,6492 +1724264400,Telegram,1043,552 +1724264400,DNS over HTTPS,4942,14517 +1724264400,__unknown,291959,254792 +1724264400,BitTorrent,463,496 +1724264400,DHCPv6,163,0 +1724264400,Google APIs,817161,53200 +1724264400,Google Drive,15407,20207 +1724264400,Google,43292,73589 +1724264400,BitTorrent tracker,153,0 +1724264400,DNS,13357,0 +1724264400,Gmail,34258,29017 +1724264400,NTP,12010,3270 +1724264400,SSL,5359,110970 +1724264400,STUN,3588,5150 +1724264400,Odnoklassniki,2489,7499 +1724264400,HTTPS,984270,729695 +1724264400,Mozilla,1789,1712 +1724264400,SSL client,937471,679465 +1724264400,Yandex,14618,473031 +1724264400,Google Hangouts,1527,1392 +1724264400,ICMP,36168,11840 +1724264400,Telegram,1067,580 +1724264400,Grammarly,2250,7852 +1724264400,Google Meet,4680,11966 +1724264400,__unknown,206046,249007 +1724264400,DHCPv6,978,0 +1724264400,Google APIs,1115,5630 +1724264400,Google,44964,143475 +1724264400,Kaspersky,608,607 +1724264400,Chrome,1130,968 +1724264400,DNS,38436,33868 +1724264400,Google Analytics,2056,6234 +1724264400,HTTP,123131,516998 +1724264400,Launchpad,2634,1984 +1724264400,LiveJournal,26744,772864 +1724264400,Microsoft Update,981,887 +1724264400,NTP,11806,2460 +1724264400,SSL,1590,14063 +1724264400,STUN,1290,1036 +1724264400,Advanced Packaging Tool,39247,419889 +1724264400,HTTPS,208085,1750617 +1724264400,Apple sites,3766,13693 +1724264400,iCloud,3427,8416 +1724264400,Mozilla,1533,4294 +1724264400,Avast,1146,1173 +1724264400,SSL client,95132,992991 +1724264400,Ubuntu Update Manager,30599,412365 +1724264400,Microsoft,693,8049 +1724264400,Mail.Ru,937,4886 +1724264400,Yandex,9100,22499 +1724264400,Ubuntu,7793,7384 +1724264400,Microsoft CryptoAPI,1568,1390 +1724264400,Microsoft WNS,693,8049 +1724264400,Google Hangouts,1590,14063 +1724264400,ICMP,6336,3922 +1724264400,Telegram,4010,1230 +1724264400,Edge Chromium,5977,17501 +1724264400,DNS over TLS,496,4771 +1724264400,DNS over HTTPS,6576,22977 +1724264700,__unknown,139273,74146 +1724264700,HTTPS,121653,194788 +1724264700,SSL client,121653,194788 +1724264700,Yandex,121653,194788 +1724264700,HTTPS,356296,912224 +1724264700,SSL client,356296,912224 +1724264700,Yandex,356296,912224 +1724264700,HTTPS,25792,134907 +1724264700,SSL client,25792,134907 +1724264700,Yandex,25792,134907 +1724264700,HTTPS,8884272,16597287 +1724264700,SSL client,8884272,16597287 +1724264700,Yandex,8884272,16597287 +1724264700,Google,23263,30383 +1724264700,HTTPS,23263,30383 +1724264700,SSL client,23263,30383 +1724264700,__unknown,983210,1756907 +1724264700,HTTPS,14568,21628 +1724264700,SSL client,14568,21628 +1724264700,Yandex,10175,14983 +1724264700,Sharepoint Online,4393,6645 +1724264700,Google,78109,91478 +1724264700,HTTPS,78109,91478 +1724264700,SSL client,78109,91478 +1724264700,HTTPS,105150,130391 +1724264700,SSL client,105150,130391 +1724264700,Telegram,105150,130391 +1724264700,HTTPS,45249,389062 +1724264700,SSL client,26957,37802 +1724264700,DNS over HTTPS,26957,37802 +1724264700,Dropbox,427480,34545 +1724264700,HTTPS,1314828,2992397 +1724264700,SSL client,1226536,232565 +1724264700,Yandex,33530,92810 +1724264700,Google Play,36458,15484 +1724264700,Dropbox Download,675968,28792 +1724264700,Telegram,53100,60934 +1724264700,__unknown,127481,23338 +1724264700,HTTPS,722182,73547316 +1724264700,SSL client,19100,146651 +1724264700,Yandex,19100,146651 +1724264700,__unknown,32151,234562 +1724264700,Dropbox,2900,1343 +1724264700,Google APIs,2641,9245 +1724264700,Google Drive,2544,5978 +1724264700,Google,4729,24435 +1724264700,TeamViewer,2232,12140 +1724264700,VKontakte,31120,32216 +1724264700,Odnoklassniki,2609,7423 +1724264700,HTTPS,754588,2195839 +1724264700,Mozilla,16262,203240 +1724264700,Avast,1122,8211 +1724264700,SSL client,423898,1063028 +1724264700,Microsoft,1940,3665 +1724264700,Mail.Ru,129948,87013 +1724264700,Yandex,214187,544692 +1724264700,Office 365,2074,8384 +1724264700,Sharepoint Online,1456,8208 +1724264700,Battle.net site,2378,5821 +1724264700,Shopify,5756,101014 +1724264700,DNS over HTTPS,5373,17975 +1724264700,__unknown,183488,188201 +1724264700,Dropbox,9913,222261 +1724264700,Google APIs,122465,77929 +1724264700,Google Drive,13893,13568 +1724264700,Google,4932,70727 +1724264700,HTTP,2542,3742 +1724264700,TeamViewer,866,5289 +1724264700,VKontakte,5009,6969 +1724264700,Advanced Packaging Tool,527,530 +1724264700,HTTPS,3352714,20648307 +1724264700,Apple sites,1475,5483 +1724264700,Mozilla,9691,114671 +1724264700,Opera,26309,6066 +1724264700,SSL client,659659,3502468 +1724264700,CloudFront,2205,1747 +1724264700,Microsoft,72926,112198 +1724264700,Mail.Ru,235046,338392 +1724264700,Yandex,112903,86457 +1724264700,GitHub,50041,2398619 +1724264700,Ubuntu,1030,736 +1724264700,Google Play,8392,17567 +1724264700,Office 365,4206,16801 +1724264700,Microsoft Windows Live Services Authentication,6223,15734 +1724264700,Edge Chromium,527,1944 +1724264700,__unknown,274944,265643 +1724264700,ICMP,20746,0 +1724264700,HTTPS,518,4265 +1724264700,SSL client,518,4265 +1724264700,Office 365,518,4265 +1724264700,HTTPS,2516,11593 +1724264700,SSL client,2516,11593 +1724264700,Yandex,2516,11593 +1724264700,ICMP,6396,0 +1724264700,SSL,2615,9056 +1724264700,DNS over HTTPS,19935,44226 +1724264700,HTTPS,8684,10029 +1724264700,ICMP,6704,0 +1724264700,__unknown,844,651 +1724264700,HTTPS,3369,5461 +1724264700,__unknown,11342,182150 +1724264700,Google Drive,27302,15835 +1724264700,Google,5006,11011 +1724264700,SSL,21149,6283 +1724264700,HTTPS,32308,26846 +1724264700,APNS,21149,6283 +1724264700,SSL client,53457,33129 +1724264700,ICMP,328,0 +1724264700,__unknown,505728,925375 +1724264700,BitTorrent,310,496 +1724264700,DHCPv6,163,0 +1724264700,Google APIs,10686,28175 +1724264700,Google,83628,179622 +1724264700,DNS,10772,0 +1724264700,Gmail,8688,15360 +1724264700,HTTP,646,506 +1724264700,LiveJournal,99242,375949 +1724264700,Microsoft Update,646,506 +1724264700,NetBIOS-dgm,243,0 +1724264700,NTP,540,540 +1724264700,STUN,3650,5076 +1724264700,VKontakte,4057,8095 +1724264700,Odnoklassniki,2609,7499 +1724264700,HTTPS,379856,1116110 +1724264700,Pinterest,5023,35814 +1724264700,Mozilla,2369,4844 +1724264700,Avast,1002,10317 +1724264700,SSL client,216779,642698 +1724264700,Microsoft CryptoAPI,646,506 +1724264700,ICMP,39801,12646 +1724264700,Telegram,2254,1508 +1724264700,Grammarly,2250,7887 +1724264700,DNS over HTTPS,18350,54707 +1724264700,__unknown,398005,839899 +1724264700,BitTorrent,153,198 +1724264700,Google APIs,2350,6805 +1724264700,Google,15437,57216 +1724264700,BitTorrent tracker,153,198 +1724264700,Chrome,631,484 +1724264700,DNS,41667,38011 +1724264700,HTTP,97787,1056758 +1724264700,Internet Explorer,762,660 +1724264700,Launchpad,3200,2480 +1724264700,LiveJournal,52643,268492 +1724264700,Microsoft Update,641,507 +1724264700,NTP,1440,1440 +1724264700,STUN,3008,4336 +1724264700,VKontakte,2463,5613 +1724264700,Odnoklassniki,2993,7514 +1724264700,Steam,3052,65810 +1724264700,Advanced Packaging Tool,43657,923283 +1724264700,HTTPS,212334,1113360 +1724264700,Avast,382,391 +1724264700,SSL client,128954,794804 +1724264700,Weather.com,2670,10292 +1724264700,Apple Stocks,2891,7804 +1724264700,Ubuntu Update Manager,38109,918683 +1724264700,VeriSign,566,2140 +1724264700,Yandex,30392,424260 +1724264700,Ubuntu,4048,3956 +1724264700,Microsoft CryptoAPI,2381,3653 +1724264700,Google Play,18181,9760 +1724264700,ICMP,26177,2960 +1724264700,Telegram,28449,310880 +1724264700,Edge Chromium,8852,26447 +1724264700,DNS over TLS,2380,9738 +1724264700,DNS over HTTPS,15896,60477 +1724265001,HTTPS,763909,1404712 +1724265001,SSL client,763909,1404712 +1724265001,DNS over HTTPS,763909,1404712 +1724265001,HTTPS,128198,69491 +1724265001,__unknown,2810,3898 +1724265001,__unknown,860,2400 +1724265001,HTTPS,10261,14885 +1724265001,__unknown,0,1344 +1724265001,Dropbox,115246,20504 +1724265001,Google,25871,23960 +1724265001,HTTPS,240693,117037 +1724265001,SSL client,141117,44464 +1724265001,__unknown,2418,1449 +1724265001,HTTP,617,1801 +1724265001,HTTPS,34508,22381 +1724265001,SSL client,34508,22381 +1724265001,Yandex,13014,9954 +1724265001,Google Play,21494,12427 +1724265001,__unknown,46522,242498 +1724265001,Dropbox,9036,223898 +1724265001,Google,995,4566 +1724265001,Gmail,18401,46702 +1724265001,TeamViewer,1559,8940 +1724265001,TwitchTV,13680,7961 +1724265001,HTTPS,248012,1434834 +1724265001,Mozilla,3848,2892 +1724265001,Avast,1122,9474 +1724265001,SSL client,107720,467705 +1724265001,Microsoft,13419,35722 +1724265001,Mail.Ru,13537,18494 +1724265001,Yandex,8983,53308 +1724265001,GitHub,996,8376 +1724265001,Google Play,12829,19796 +1724265001,Office 365,2995,8684 +1724265001,Battle.net site,2875,6113 +1724265001,Firebase Crashlytics,3445,12779 +1724265001,DNS over HTTPS,19185,55032 +1724265001,__unknown,129650,155284 +1724265001,Bing,3481,6538 +1724265001,Dropbox,9239,9333 +1724265001,Eset,1893,1248 +1724265001,Google APIs,192504238,4456537 +1724265001,Google Drive,2796,1541 +1724265001,Google,247879,1249288 +1724265001,MSN,77599,466869 +1724265001,Dell,2078,8733 +1724265001,HTTP,6391,7644 +1724265001,Launchpad,640,496 +1724265001,Skype,2594,8336 +1724265001,YouTube,6110,12523 +1724265001,TwitchTV,11475,7089 +1724265001,Steam,6422,14785 +1724265001,Advanced Packaging Tool,2994,3060 +1724265001,HTTPS,193619481,9440733 +1724265001,Apple sites,38927,744261 +1724265001,iCloud,5256,8224 +1724265001,Mozilla,12514,20418 +1724265001,Avast,1122,8427 +1724265001,SSL client,193290971,8273862 +1724265001,Amazon Web Services,12360,28604 +1724265001,Ubuntu Update Manager,2354,2564 +1724265001,Microsoft,34898,75342 +1724265001,Mail.Ru,177389,363599 +1724265001,Yandex,67642,124992 +1724265001,GitHub,14104,535495 +1724265001,Ubuntu,503,451 +1724265001,Microsoft CryptoAPI,487,2679 +1724265001,33Across,2341,7821 +1724265001,Google Play,13485,26321 +1724265001,Office 365,13039,31835 +1724265001,Sharepoint Online,986,5946 +1724265001,Microsoft Windows Live Services Authentication,23484,53684 +1724265001,Telegram,120,120 +1724265001,DNS over HTTPS,83416,192328 +1724265001,__unknown,3540,7080 +1724265001,CoAP,7742,5616 +1724265001,HTTPS,53033,63678 +1724265001,SSL client,53033,63678 +1724265001,Telegram,53033,63678 +1724265001,Windows Live,3091,19587 +1724265001,HTTPS,7317,26344 +1724265001,SSL client,3091,19587 +1724265001,__unknown,214,225 +1724265001,HTTPS,53345,60383 +1724265001,SSL client,53345,60383 +1724265001,ICMP,2068,0 +1724265001,Telegram,53345,60383 +1724265001,__unknown,5346,3630 +1724265001,Google APIs,4927,12879 +1724265001,HTTPS,39943,81525 +1724265001,Spotify,2119,7980 +1724265001,SSL client,12774,37022 +1724265001,ICMP,3182,3108 +1724265001,DNS over HTTPS,5728,16163 +1724265001,__unknown,597131,1030268 +1724265001,BitTorrent,463,496 +1724265001,Google APIs,15177,23907 +1724265001,Google Drive,6080,12096 +1724265001,Google,18824,43794 +1724265001,BitTorrent tracker,153,0 +1724265001,DNS,13819,0 +1724265001,HTTP,946,887 +1724265001,Microsoft Update,946,887 +1724265001,NetBIOS-dgm,250,0 +1724265001,NTP,39780,10530 +1724265001,SSL,4843,11424 +1724265001,STUN,3402,4856 +1724265001,Odnoklassniki,2609,7439 +1724265001,HTTPS,126279,233052 +1724265001,SSL client,60436,129618 +1724265001,Microsoft CryptoAPI,946,887 +1724265001,Google Play,13811,33103 +1724265001,Google Hangouts,1624,1392 +1724265001,ICMP,25695,11456 +1724265001,Grammarly,2311,7887 +1724265001,DNS over HTTPS,5032,15730 +1724265001,__unknown,492208,4180534 +1724265001,DHCPv6,1141,0 +1724265001,Google APIs,5543,13179 +1724265001,Google,2544,9108 +1724265001,DNS,35421,36204 +1724265001,Gmail,279925,119658 +1724265001,HTTP,67053,333347 +1724265001,Launchpad,3200,2480 +1724265001,Microsoft Update,3646,3173 +1724265001,NTP,13650,3900 +1724265001,SSL,797,7092 +1724265001,STUN,1148,962 +1724265001,Odnoklassniki,1848,1188 +1724265001,Advanced Packaging Tool,33330,285479 +1724265001,HTTPS,439946,658842 +1724265001,iCloud,4147,10190 +1724265001,Avast,1272,1239 +1724265001,SSL client,349940,247548 +1724265001,Ubuntu Update Manager,22307,275767 +1724265001,Yandex,32536,57275 +1724265001,Ubuntu,9523,9072 +1724265001,Microsoft CryptoAPI,5511,7011 +1724265001,Google Play,22608,32489 +1724265001,Google Hangouts,797,7092 +1724265001,ICMP,6831,3922 +1724265001,Telegram,1785,1207 +1724265001,Edge Chromium,5163,16779 +1724265001,Grammarly,2162,7779 +1724265001,DNS over HTTPS,2308,4948 +1724265299,__unknown,314378,636869 +1724265299,HTTP,50735383,49294500 +1724265299,Telegram,50321229,42250048 +1724265299,HTTPS,524904,9009983 +1724265299,SSL client,524904,9009983 +1724265299,Yandex,524904,9009983 +1724265299,HTTPS,264539,229293 +1724265299,SSL client,154618,31535 +1724265299,Yandex,154618,31535 +1724265299,SSL,142428,1686434 +1724265299,SSL client,142428,1686434 +1724265299,Battle.net site,142428,1686434 +1724265299,HTTP,180208,3390475 +1724265299,HTTPS,155849,23922 +1724265299,SSL client,155849,23922 +1724265299,Yandex,155849,23922 +1724265299,SSL,14021,22308 +1724265299,SSL client,14021,22308 +1724265299,Google Hangouts,14021,22308 +1724265299,Google,1259387,648034 +1724265299,HTTPS,1332816,762853 +1724265299,SSL client,1259387,648034 +1724265299,__unknown,1140,1796 +1724265299,Windows Live,63810,22185 +1724265299,HTTPS,63810,22185 +1724265299,SSL client,63810,22185 +1724265299,Telegram,240,180 +1724265299,HTTPS,14591,17264 +1724265299,Telegram,180,120 +1724265299,HTTPS,49634,45713 +1724265299,SSL client,18826,16476 +1724265299,Microsoft,14399,7838 +1724265299,Yandex,4427,8638 +1724265299,VKontakte,44699,80013 +1724265299,HTTPS,55457,132639 +1724265299,Mozilla,4506,45237 +1724265299,SSL client,49205,125250 +1724265299,HTTPS,40890,136813 +1724265299,SSL client,13563,17881 +1724265299,Google Play,13563,17881 +1724265299,__unknown,99519,105115 +1724265299,Google,19504,33341 +1724265299,MSN,4135,6215 +1724265299,Yahoo!,3373,7981 +1724265299,HTTP,647,396 +1724265299,SSL,31906,13785 +1724265299,HTTPS,328512,483685 +1724265299,APNS,31906,13785 +1724265299,Mozilla,11489,17486 +1724265299,Avast,1320,9159 +1724265299,Opera,4247,8611 +1724265299,SSL client,194167,328776 +1724265299,Ad Nexus,2678,24395 +1724265299,Microsoft,6799,15055 +1724265299,Mail.Ru,16598,26806 +1724265299,Yandex,33689,73278 +1724265299,Rubicon Project,4002,10168 +1724265299,33Across,2944,9430 +1724265299,Google Play,15019,8994 +1724265299,Criteo,11559,13491 +1724265299,Smart AdServer,12087,22084 +1724265299,Office 365,10875,25799 +1724265299,Sharepoint Online,3806,5882 +1724265299,Battle.net site,2384,5427 +1724265299,__unknown,361039,235587 +1724265299,Google APIs,16053,75152 +1724265299,Google,13156,725066 +1724265299,MSN,5491,22608 +1724265299,Windows Live,5344,8415 +1724265299,HTTP,5163,7279 +1724265299,Microsoft Update,948,1042 +1724265299,Skype,2583,8338 +1724265299,YouTube,18548,16769 +1724265299,VKontakte,15206,25230 +1724265299,TwitchTV,5397,7089 +1724265299,Advanced Packaging Tool,1741,1756 +1724265299,HTTPS,972823,14148372 +1724265299,iCloud,11255,157620 +1724265299,Mozilla,20846,46015 +1724265299,Avast,1122,8902 +1724265299,Opera,14957,6012 +1724265299,SSL client,546999,7180830 +1724265299,Ubuntu Update Manager,1214,1226 +1724265299,Microsoft,42496,78086 +1724265299,Mail.Ru,177215,454578 +1724265299,Siri,5780,6083 +1724265299,Yandex,118730,3975048 +1724265299,GitHub,43660,1472589 +1724265299,Ubuntu,527,530 +1724265299,Microsoft CryptoAPI,948,1042 +1724265299,Exchange Online,3009,12914 +1724265299,Office 365,12588,35423 +1724265299,Microsoft Windows Live Services Authentication,22407,40546 +1724265299,Telegram,180,120 +1724265299,Google Sign in,6113,4359 +1724265299,DNS over HTTPS,20550,57182 +1724265299,STUN,10250,9324 +1724265299,__unknown,0,900 +1724265299,__unknown,4675,13465 +1724265299,HTTPS,1895,6688 +1724265299,ICMP,574,0 +1724265299,__unknown,22770,247818 +1724265299,HTTPS,16195,219703 +1724265299,WhatsApp,7246,203504 +1724265299,ICMP,10470,10410 +1724265299,Telegram,1147,496 +1724265299,DNS over HTTPS,5988,13229 +1724265299,__unknown,414423,469519 +1724265299,BitTorrent,310,496 +1724265299,Google APIs,9004,13756 +1724265299,Google Drive,7464,10282 +1724265299,Google,60361,112551 +1724265299,DNS,11922,0 +1724265299,HTTP,3636,3159 +1724265299,Microsoft Update,1288,1080 +1724265299,NTP,13200,3450 +1724265299,STUN,2844,4188 +1724265299,HTTPS,157731,392650 +1724265299,Apple sites,614,550 +1724265299,Mozilla,8946,12681 +1724265299,SSL client,91998,164260 +1724265299,Microsoft CryptoAPI,3636,3159 +1724265299,Google Play,3910,7102 +1724265299,ICMP,68266,13616 +1724265299,Grammarly,2313,7888 +1724265299,DNS over HTTPS,1421,6246 +1724265299,__unknown,430858,3798819 +1724265299,BitTorrent,153,537 +1724265299,DHCPv6,978,0 +1724265299,Google Drive,8961,10866 +1724265299,Google,16082,44475 +1724265299,QQ,414,1581 +1724265299,BitTorrent tracker,153,537 +1724265299,DNS,52721,48964 +1724265299,HTTP,84996,103361 +1724265299,iTunes,4723,47791 +1724265299,Launchpad,1920,1488 +1724265299,Microsoft Update,981,887 +1724265299,NTP,1440,1440 +1724265299,SSL,21887,21546 +1724265299,STUN,328,296 +1724265299,Odnoklassniki,1879,6325 +1724265299,Advanced Packaging Tool,25356,23513 +1724265299,HTTPS,156649,402111 +1724265299,APNS,19705,5723 +1724265299,Apple sites,4349,17031 +1724265299,iCloud,4051,8494 +1724265299,Mozilla,1479,5189 +1724265299,Avast,382,391 +1724265299,SSL client,79667,197185 +1724265299,Ubuntu Update Manager,21088,19905 +1724265299,Microsoft,1266,16102 +1724265299,Yandex,8867,13885 +1724265299,Ubuntu,3701,3491 +1724265299,Microsoft CryptoAPI,981,887 +1724265299,Microsoft WNS,1266,16102 +1724265299,Google Hangouts,2182,15823 +1724265299,ICMP,7638,3686 +1724265299,Telegram,3231,1387 +1724265299,Edge Chromium,2635,6824 +1724265299,DNS over HTTPS,31268,107111 +1724265599,__unknown,1964416,2370382 +1724265599,ICMP for IPv6,79001,113552 +1724265599,HTTPS,10704,24358 +1724265599,SSL client,10704,24358 +1724265599,Yandex,10704,24358 +1724265599,HTTPS,600497,482895 +1724265599,HTTPS,73852,148970 +1724265599,HTTPS,135489,201620 +1724265599,SSL client,135489,201620 +1724265599,Telegram,135489,201620 +1724265599,__unknown,816,10070 +1724265599,HTTPS,52558,69544 +1724265599,SSL client,52558,69544 +1724265599,DNS over HTTPS,52558,69544 +1724265599,HTTPS,1297274,2821012 +1724265599,HTTPS,20818,21605 +1724265599,__unknown,10053,6927 +1724265599,Dropbox,396018,36165 +1724265599,Google APIs,3421,6407 +1724265599,HTTPS,1126376,117463 +1724265599,SSL client,1097682,87079 +1724265599,Google Play,14193,11943 +1724265599,Dropbox Download,684050,32564 +1724265599,HTTPS,41363,27513 +1724265599,SSL client,4392,6575 +1724265599,Sharepoint Online,4392,6575 +1724265599,__unknown,172047,128828 +1724265599,Bing,3368,6540 +1724265599,Dropbox,3195,1385 +1724265599,Google,98737,346997 +1724265599,HTTP,581,585 +1724265599,Microsoft Update,581,585 +1724265599,TwitchTV,14695,8049 +1724265599,HTTPS,341178,1595952 +1724265599,Mozilla,13980,44893 +1724265599,Avast,944,9823 +1724265599,SSL client,234583,1096961 +1724265599,Microsoft,16768,36642 +1724265599,Mail.Ru,14564,22368 +1724265599,Yandex,49870,588423 +1724265599,Microsoft CryptoAPI,581,585 +1724265599,Criteo,9106,12227 +1724265599,Office 365,1061,7332 +1724265599,Battle.net site,3263,6009 +1724265599,Stripe,5032,6273 +1724265599,DNS over HTTPS,9384,26695 +1724265599,__unknown,211292,292097 +1724265599,Bing,9030,11061 +1724265599,Dropbox,6241,222499 +1724265599,Google APIs,39589,309484 +1724265599,Google,373969,10614813 +1724265599,MSN,5748,13574 +1724265599,Yahoo!,2575,5574 +1724265599,HTTP,4967,42289 +1724265599,iTunes,34344,69757 +1724265599,Skype,958,7918 +1724265599,SSL,1523,1392 +1724265599,VKontakte,19599,43133 +1724265599,Steam,2989,43083 +1724265599,Advanced Packaging Tool,2497,2324 +1724265599,IMAPS,6727,27525 +1724265599,HTTPS,1956874,23377454 +1724265599,Apple sites,16252,286740 +1724265599,iCloud,55225,139712 +1724265599,Mozilla,8171,31259 +1724265599,Opera,2776,5849 +1724265599,SSL client,1230386,15944037 +1724265599,Ad Nexus,11532,44687 +1724265599,CloudFront,2265,1747 +1724265599,Ubuntu Update Manager,2497,2324 +1724265599,Microsoft,97918,149463 +1724265599,Mail.Ru,318355,655947 +1724265599,Disqus,3424,7866 +1724265599,Yandex,120913,2565731 +1724265599,GitHub,16264,585128 +1724265599,Microsoft CryptoAPI,558,1139 +1724265599,Rubicon Project,2805,7061 +1724265599,Google Play,15892,32567 +1724265599,Smart AdServer,10494,15157 +1724265599,Office 365,12789,38388 +1724265599,Microsoft Windows Live Services Authentication,25345,66201 +1724265599,Google Hangouts,1523,1392 +1724265599,Office Mobile,15604,8455 +1724265599,Telegram,120,120 +1724265599,Zoom,50687,7815 +1724265599,DNS over HTTPS,6222,34803 +1724265599,__unknown,28055,15190 +1724265599,HTTPS,7406,11505 +1724265599,__unknown,1145,1956 +1724265599,__unknown,13439,19590 +1724265599,Google,11686,23158 +1724265599,HTTP,1174,2944 +1724265599,HTTPS,27879,33843 +1724265599,SSL client,11686,23158 +1724265599,ICMP,5000,3552 +1724265599,Edge Chromium,1174,2944 +1724265599,DNS over HTTPS,10296,24480 +1724265599,CoAP,1764,1296 +1724265599,__unknown,439880,422605 +1724265599,BitTorrent,463,496 +1724265599,DHCPv6,163,0 +1724265599,Google APIs,35976,16423 +1724265599,Google Drive,9395,11294 +1724265599,Google,24658,69143 +1724265599,BitTorrent tracker,153,0 +1724265599,DNS,24273,260 +1724265599,Gmail,23122,36966 +1724265599,HTTP,606,501 +1724265599,Microsoft Update,606,501 +1724265599,NetBIOS-dgm,493,0 +1724265599,NTP,24510,5010 +1724265599,STUN,2976,1848 +1724265599,Odnoklassniki,2609,7374 +1724265599,HTTPS,188791,355954 +1724265599,Mozilla,4431,10650 +1724265599,SSL client,102444,159704 +1724265599,Microsoft CryptoAPI,606,501 +1724265599,ICMP,21723,12950 +1724265599,Telegram,1083,516 +1724265599,Grammarly,2253,7854 +1724265599,DNS over HTTPS,16704,50069 +1724265599,__unknown,184073,179316 +1724265599,Google APIs,90910,19088 +1724265599,Google,5373,12903 +1724265599,Chrome,2087,2258 +1724265599,DNS,36111,34871 +1724265599,Gmail,32132,84777 +1724265599,HTTP,417922,10657576 +1724265599,Internet Explorer,762,660 +1724265599,Launchpad,3134,2190 +1724265599,Microsoft Update,642,501 +1724265599,NTP,1080,1080 +1724265599,STUN,328,296 +1724265599,Odnoklassniki,3699,2376 +1724265599,Advanced Packaging Tool,21818,19481 +1724265599,HTTPS,254490,567918 +1724265599,iCloud,11314,46014 +1724265599,Avast,1212,1239 +1724265599,SSL client,192243,222800 +1724265599,Ubuntu Update Manager,15749,14641 +1724265599,Microsoft,339591,10573876 +1724265599,Yandex,43522,39636 +1724265599,Ubuntu,4768,4490 +1724265599,Microsoft CryptoAPI,4245,3776 +1724265599,ICMP,8668,3954 +1724265599,Telegram,3033,1084 +1724265599,Edge Chromium,4743,12279 +1724265599,DNS over TLS,2356,9540 +1724265599,DNS over HTTPS,11072,37518 +1724265599,IPv6 No Next Header,490,0 +1724265900,__unknown,13860,38723 +1724265900,HTTPS,28097,39975 +1724265900,HTTPS,80066,56248 +1724265900,HTTPS,8560,49133 +1724265900,SSL client,8560,49133 +1724265900,Mail.Ru,8560,49133 +1724265900,Skype,14549,15696 +1724265900,HTTPS,24628,29160 +1724265900,SSL client,14549,15696 +1724265900,HTTPS,1550,5884 +1724265900,__unknown,519232,340687 +1724265900,Dropbox,124358,21508 +1724265900,HTTPS,952366,515229 +1724265900,SSL client,144866,31741 +1724265900,Yandex,20508,10233 +1724265900,HTTP,691,2904 +1724265900,HTTPS,205945,3330184 +1724265900,SSL client,65277,198981 +1724265900,Yandex,43814,180944 +1724265900,Google Play,21463,18037 +1724265900,DNS over HTTPS,4769,8446 +1724265900,__unknown,202975,4321722 +1724265900,Google,141983,33441 +1724265900,MSN,494,5803 +1724265900,Gmail,6020,6581 +1724265900,HTTP,2108,3410 +1724265900,Microsoft Update,1228,1092 +1724265900,HTTPS,885237047,24060500 +1724265900,WhatsApp,7230,87327 +1724265900,iCloud,2430,6131 +1724265900,Mozilla,6838,3365 +1724265900,Avast,1122,9697 +1724265900,SSL client,885116063,23584623 +1724265900,Mail.Ru,39372,22277 +1724265900,Yandex,884875187,23415015 +1724265900,Microsoft CryptoAPI,2108,3410 +1724265900,Google Play,28804,26476 +1724265900,Office 365,2991,36667 +1724265900,Google Sign in,4872,4154 +1724265900,DNS over HTTPS,9035,15899 +1724265900,__unknown,866655,764507 +1724265900,Bing,3375,6421 +1724265900,Dropbox,3754,6038 +1724265900,Google APIs,5097,13754 +1724265900,Google,122758,127827 +1724265900,HTTP,7277,12714 +1724265900,Microsoft Update,1556,1787 +1724265900,YouTube,46829,22733 +1724265900,Advanced Packaging Tool,3097,3521 +1724265900,HTTPS,3145891,9382951 +1724265900,WhatsApp,1225,1216 +1724265900,Mozilla,7512,5772 +1724265900,SSL client,529796,1449603 +1724265900,Ubuntu Update Manager,2594,3021 +1724265900,Microsoft,49420,88154 +1724265900,VeriSign,951,976 +1724265900,Mail.Ru,154390,293454 +1724265900,Yandex,92246,149481 +1724265900,GitHub,19776,702277 +1724265900,Ubuntu,503,500 +1724265900,Microsoft CryptoAPI,2507,2763 +1724265900,Exchange Online,1419,6467 +1724265900,Office 365,4566,12528 +1724265900,Microsoft Windows Live Services Authentication,7741,11569 +1724265900,Office Mobile,11529,7869 +1724265900,Telegram,120,120 +1724265900,DNS over HTTPS,5836,21788 +1724265900,__unknown,155,660 +1724265900,HTTP,6558,17815 +1724265900,ICMP,3854,0 +1724265900,Eset,4719,6663 +1724265900,HTTPS,4719,6663 +1724265900,SSL client,4719,6663 +1724265900,DNS over HTTPS,13329,34857 +1724265900,ICMP,7920,7920 +1724265900,__unknown,188,229 +1724265900,SSL,2907,9190 +1724265900,STUN,19716410,1318943 +1724265900,HTTPS,2858,9674 +1724265900,Apple Maps,2858,9674 +1724265900,__unknown,360,4914 +1724265900,HTTPS,7476,8684 +1724265900,DNS over HTTPS,0,1390 +1724265900,HTTPS,57871,76849 +1724265900,SSL client,54011,70069 +1724265900,Telegram,54011,70069 +1724265900,__unknown,33990,545290 +1724265900,HTTPS,6480,13935 +1724265900,ICMP,574,0 +1724265900,__unknown,442951,425020 +1724265900,BitTorrent,310,434 +1724265900,DHCPv6,978,0 +1724265900,Google APIs,53641,32745 +1724265900,Google,50278,123955 +1724265900,Kaspersky,608,607 +1724265900,DNS,13604,244 +1724265900,Gmail,6083,7256 +1724265900,HTTP,1168,1070 +1724265900,NTP,720,720 +1724265900,STUN,127460,2128783 +1724265900,Odnoklassniki,2609,7364 +1724265900,HTTPS,200270,264299 +1724265900,WhatsApp,1844,7920 +1724265900,SSL client,159725,188086 +1724265900,Atlassian,44043,13380 +1724265900,Microsoft CryptoAPI,560,463 +1724265900,Google Play,3071,3386 +1724265900,ICMP,30849,13246 +1724265900,DNS over HTTPS,10947,27583 +1724265900,__unknown,352571,484519 +1724265900,Apple Update,174793,5436257 +1724265900,BitTorrent,153,198 +1724265900,DHCPv6,163,0 +1724265900,Google APIs,5143,15320 +1724265900,Google,155363,144863 +1724265900,BitTorrent tracker,153,198 +1724265900,Chrome,3344,3564 +1724265900,DNS,36427,36859 +1724265900,HTTP,97649,105314 +1724265900,iTunes,1057,3453 +1724265900,Launchpad,3200,2480 +1724265900,Microsoft Update,2599,2132 +1724265900,NTP,13470,3810 +1724265900,Odnoklassniki,3790,7453 +1724265900,Advanced Packaging Tool,31566,28738 +1724265900,HTTPS,424825,5940949 +1724265900,Avast,382,391 +1724265900,SSL client,349002,5644484 +1724265900,Ubuntu Update Manager,23574,21946 +1724265900,Microsoft,633,8051 +1724265900,Yandex,7768,31312 +1724265900,Ubuntu,5708,5230 +1724265900,Microsoft CryptoAPI,7844,7745 +1724265900,Microsoft WNS,633,8051 +1724265900,uTorrent,694,421 +1724265900,Smart AdServer,1035,3882 +1724265900,Office 365,940,2318 +1724265900,ICMP,4709,3478 +1724265900,Telegram,1133,515 +1724265900,Edge Chromium,2108,5457 +1724265900,DNS over HTTPS,8832,37409 +1724266200,__unknown,88338,78804 +1724266200,HTTPS,14756,14092 +1724266200,SSL client,14756,14092 +1724266200,Yandex,14756,14092 +1724266200,Google,43402,52634 +1724266200,HTTPS,43402,52634 +1724266200,SSL client,43402,52634 +1724266200,HTTPS,25759,51157 +1724266200,SSL client,25759,51157 +1724266200,Yandex,8931,24790 +1724266200,Sharepoint Online,16828,26367 +1724266200,ICMP,21648,0 +1724266200,HTTPS,808765,1339110 +1724266200,HTTPS,14720,16883 +1724266200,iCloud,5796,10247 +1724266200,SSL client,5796,10247 +1724266200,Google,32756,26997 +1724266200,HTTPS,273175,9309072 +1724266200,SSL client,86704,86998 +1724266200,Google Play,48164,51702 +1724266200,Sharepoint Online,3510,5827 +1724266200,DNS over HTTPS,2274,2472 +1724266200,__unknown,126989,56178 +1724266200,Bing,5236,5472 +1724266200,Dropbox,115323,4648 +1724266200,Google,14286,9452 +1724266200,MSN,4132,8616 +1724266200,Adobe Software,4031,72532 +1724266200,HTTP,5322,5396 +1724266200,HTTPS,795432,10016262 +1724266200,Mozilla,14363,18292 +1724266200,SSL client,641925,9880597 +1724266200,Microsoft,12589,31712 +1724266200,VeriSign,1075,1760 +1724266200,Mail.Ru,15732,17724 +1724266200,Yandex,453488,9693120 +1724266200,GitHub,936,8372 +1724266200,Microsoft CryptoAPI,1075,1760 +1724266200,Office 365,1809,10657 +1724266200,DNS over HTTPS,132,1386 +1724266200,__unknown,247217,985980 +1724266200,Dropbox,21341,4316 +1724266200,Google,67238,82591 +1724266200,MSN,4862,11717 +1724266200,HTTP,7551,9259 +1724266200,SSL,559,7026 +1724266200,VKontakte,1569,4685 +1724266200,Advanced Packaging Tool,2159,2262 +1724266200,HTTPS,1261604,21408106 +1724266200,Apple sites,2284,7194 +1724266200,iCloud,6254,18405 +1724266200,Mozilla,12855,18867 +1724266200,Avast,380,186 +1724266200,SSL client,601182,13074148 +1724266200,Ubuntu Update Manager,2159,2262 +1724266200,Microsoft,83863,137262 +1724266200,Mail.Ru,159990,308774 +1724266200,Siri,5691,6858 +1724266200,Yandex,206891,12401843 +1724266200,Microsoft CryptoAPI,570,2630 +1724266200,uTorrent,21453,39057 +1724266200,Exchange Online,1247,6455 +1724266200,Office 365,2891,10167 +1724266200,Google Hangouts,559,7026 +1724266200,Telegram,120,120 +1724266200,GISMETEO,2194,8931 +1724266200,DNS over HTTPS,3483,12973 +1724266200,__unknown,0,1251 +1724266200,HTTPS,3264,7841 +1724266200,__unknown,6322,40620 +1724266200,STUN,815184,11127488 +1724266200,__unknown,309,1269 +1724266200,HTTPS,5805,24164 +1724266200,__unknown,1835,11176 +1724266200,SSL,2007,20724 +1724266200,__unknown,13317,7987 +1724266200,Google,11513,17184 +1724266200,HTTPS,19309,27756 +1724266200,SSL client,11513,17184 +1724266200,ICMP,3230,2812 +1724266200,Telegram,795,548 +1724266200,CoAP,1764,1296 +1724266200,__unknown,504163,567240 +1724266200,BitTorrent,310,496 +1724266200,Google APIs,2305,7988 +1724266200,Google Drive,5983,9847 +1724266200,Google,42855,81961 +1724266200,Kaspersky,608,607 +1724266200,DNS,16686,0 +1724266200,Gmail,21047,71672 +1724266200,HTTP,4712,4354 +1724266200,Microsoft Update,1587,1605 +1724266200,NetBIOS-dgm,243,0 +1724266200,NTP,13920,4170 +1724266200,STUN,3008,4336 +1724266200,Odnoklassniki,2609,7358 +1724266200,HTTPS,178578,557855 +1724266200,SSL client,95867,221110 +1724266200,Yandex,1133,670 +1724266200,Microsoft CryptoAPI,3277,3083 +1724266200,Casale,4963,9359 +1724266200,Lijit,7657,16816 +1724266200,ICMP,18728,12426 +1724266200,Edge Chromium,827,664 +1724266200,Grammarly,2310,7886 +1724266200,DNS over HTTPS,13691,37741 +1724266200,_err_4655,2817,2542 +1724266200,__unknown,262692,645383 +1724266200,DHCPv6,978,0 +1724266200,Google APIs,36546,35839 +1724266200,Google,64425,101543 +1724266200,Android browser,1176,798 +1724266200,Chrome,6359,5390 +1724266200,DNS,44232,38667 +1724266200,Gmail,10121,41555 +1724266200,HTTP,93807,98384 +1724266200,Launchpad,3200,2480 +1724266200,Microsoft Update,701,643 +1724266200,NTP,27010,8430 +1724266200,SSL,797,7093 +1724266200,STUN,984,888 +1724266200,Odnoklassniki,1851,1189 +1724266200,Advanced Packaging Tool,36783,34063 +1724266200,HTTPS,316405,1422492 +1724266200,Spotify,1838,4674 +1724266200,iCloud,15108,28502 +1724266200,Mozilla,2049,1329 +1724266200,Avast,1146,1173 +1724266200,SSL client,190887,1054487 +1724266200,Ubuntu Update Manager,30061,28403 +1724266200,Yandex,9114,35321 +1724266200,GitHub,21784,754803 +1724266200,Ubuntu,4863,4551 +1724266200,Microsoft CryptoAPI,2741,2429 +1724266200,Microsoft NCSI,908,974 +1724266200,Google Play,16368,13166 +1724266200,Google Hangouts,797,7093 +1724266200,ICMP,6058,3626 +1724266200,ICMP for IPv6,70,0 +1724266200,Telegram,4554,1599 +1724266200,Google Inbox,5390,10848 +1724266200,Edge Chromium,5270,13646 +1724266200,DNS over TLS,2356,9540 +1724266200,DNS over HTTPS,14671,52243 +1724266500,__unknown,155501,65820 +1724266500,ICMP,35998,0 +1724266500,HTTPS,34299,60158 +1724266500,Google,133705,207746 +1724266500,HTTPS,133705,207746 +1724266500,SSL client,133705,207746 +1724266500,DNS over HTTPS,205931,460388 +1724266500,HTTPS,86770,108791 +1724266500,HTTPS,43544,34342 +1724266500,SSL client,43544,34342 +1724266500,Yandex,43544,34342 +1724266500,HTTPS,18412,220088 +1724266500,HTTPS,10390,125207 +1724266500,SSL client,10390,125207 +1724266500,Microsoft,10390,125207 +1724266500,Dropbox,301938,33082 +1724266500,HTTPS,904914,152721 +1724266500,SSL client,867032,60163 +1724266500,Dropbox Download,565094,27081 +1724266500,__unknown,30991,51188 +1724266500,HTTPS,12227,7368 +1724266500,ICMP,21320,0 +1724266500,__unknown,66776,51854 +1724266500,Google APIs,9372,19127 +1724266500,HTTP,1263,2085 +1724266500,TwitchTV,5397,7287 +1724266500,HTTPS,129235,266518 +1724266500,Mozilla,2438,5410 +1724266500,SSL client,60968,172606 +1724266500,Microsoft,22359,62099 +1724266500,Mail.Ru,3876,5419 +1724266500,Yandex,8685,50607 +1724266500,Weborama,3568,5494 +1724266500,Battle.net site,2258,3973 +1724266500,Xiaomi,3015,13190 +1724266500,DNS over HTTPS,3725,10578 +1724266500,__unknown,222634,115415 +1724266500,Bing,1867,9330 +1724266500,Dropbox,2183,8992 +1724266500,Google APIs,38161,210164 +1724266500,Google,39272,23918 +1724266500,HTTP,6050,4914 +1724266500,Microsoft Update,2396,5845 +1724266500,TwitchTV,9543,7221 +1724266500,Advanced Packaging Tool,1214,1193 +1724266500,IMAPS,6784,27622 +1724266500,HTTPS,1282988,3577410 +1724266500,iCloud,10143,14406 +1724266500,Avast,3288,12458 +1724266500,SSL client,447264,1793338 +1724266500,Ubuntu Update Manager,1214,1193 +1724266500,Microsoft,49006,95919 +1724266500,Mail.Ru,177310,347921 +1724266500,Yandex,75617,382119 +1724266500,GitHub,23496,641439 +1724266500,Intel,1146,4768 +1724266500,Google Update,3057,2186 +1724266500,Microsoft CryptoAPI,585,380 +1724266500,Office 365,8643,23055 +1724266500,Telegram,312,252 +1724266500,Grammarly,9562,9318 +1724266500,DNS over HTTPS,935,4586 +1724266500,HTTPS,69461,35263 +1724266500,ICMP,3784,0 +1724266500,ICMP,54570,11340 +1724266500,__unknown,7576,257814 +1724266500,Google Drive,68154,32493 +1724266500,SSL,3787,10969 +1724266500,HTTPS,68154,32493 +1724266500,SSL client,68154,32493 +1724266500,__unknown,21469,226858 +1724266500,Google,5355,11174 +1724266500,HTTPS,9384,27778 +1724266500,SSL client,5355,11174 +1724266500,ICMP,9908,444 +1724266500,__unknown,422267,1204211 +1724266500,BitTorrent,620,930 +1724266500,DHCPv6,163,0 +1724266500,Google APIs,3101,9212 +1724266500,Google,48456,68689 +1724266500,Chrome,1275,869 +1724266500,DNS,10924,0 +1724266500,Firefox,7115,13791 +1724266500,HTTP,10097,16088 +1724266500,NTP,450,450 +1724266500,STUN,3008,4336 +1724266500,Odnoklassniki,2400,7423 +1724266500,HTTPS,117333,246715 +1724266500,WhatsApp,1544,4820 +1724266500,Mozilla,2885,1819 +1724266500,SSL client,59032,97445 +1724266500,CloudFront,2190,10302 +1724266500,Microsoft CryptoAPI,1707,1428 +1724266500,ICMP,20286,12358 +1724266500,Telegram,1091,596 +1724266500,DNS over HTTPS,11865,33197 +1724266500,__unknown,301618,236135 +1724266500,BitTorrent,153,537 +1724266500,DHCPv6,978,0 +1724266500,Google,55801,204174 +1724266500,Android browser,590,399 +1724266500,BitTorrent tracker,153,537 +1724266500,Chrome,1130,968 +1724266500,DNS,40898,41778 +1724266500,HTTP,130454,2632872 +1724266500,Internet Explorer,762,660 +1724266500,Launchpad,3200,2480 +1724266500,Microsoft Update,66737,2497755 +1724266500,NTP,900,900 +1724266500,STUN,984,888 +1724266500,Odnoklassniki,1848,1187 +1724266500,Steam,2295,61171 +1724266500,Advanced Packaging Tool,27759,25881 +1724266500,HTTPS,242873,752208 +1724266500,Apple sites,2049,7720 +1724266500,iCloud,5272,13108 +1724266500,SSL client,151271,488407 +1724266500,Ubuntu Update Manager,19180,18559 +1724266500,Yandex,75549,248056 +1724266500,Ubuntu,6654,6213 +1724266500,Microsoft CryptoAPI,4561,4047 +1724266500,Apple Maps,853,3483 +1724266500,Google Play,9500,10336 +1724266500,ICMP,6708,3108 +1724266500,Telegram,3073,1140 +1724266500,Zoom,3801,8573 +1724266500,Edge Chromium,6684,20147 +1724266500,Grammarly,2242,7850 +1724266500,DNS over HTTPS,16497,62506 +1724266800,__unknown,116676,158272 +1724266800,HTTPS,18117,23216 +1724266800,HTTPS,45494,44172 +1724266800,SSL client,45494,44172 +1724266800,Mail.Ru,45494,44172 +1724266800,Google,41677,54391 +1724266800,HTTPS,210837,1344561 +1724266800,SSL client,210837,1344561 +1724266800,Mail.Ru,169160,1290170 +1724266800,HTTPS,198239,68501 +1724266800,HTTPS,130418,144565 +1724266800,SSL client,105494,128993 +1724266800,Telegram,105494,128993 +1724266800,__unknown,7939,10863 +1724266800,HTTPS,2678308,1791169 +1724266800,SSL client,917864,837835 +1724266800,Mail.Ru,917864,837835 +1724266800,Dropbox,123369,21122 +1724266800,HTTPS,268671,14991044 +1724266800,SSL client,123369,21122 +1724266800,__unknown,751608,557199 +1724266800,Dropbox,1647,1520 +1724266800,Google APIs,5322,16353 +1724266800,HTTP,2601,9058 +1724266800,Skype,3093,9821 +1724266800,VKontakte,20304,87791 +1724266800,HTTPS,252837,392762 +1724266800,WhatsApp,1405,1156 +1724266800,Mozilla,4486,6968 +1724266800,SSL client,86524,277754 +1724266800,Microsoft,19013,47232 +1724266800,Mail.Ru,19880,69839 +1724266800,Yandex,2172,7759 +1724266800,Intel,1092,5114 +1724266800,GISMETEO,1879,2720 +1724266800,Google Inbox,5669,17691 +1724266800,Grammarly,4568,14004 +1724266800,DNS over HTTPS,2444,7764 +1724266800,__unknown,396286,947417 +1724266800,Bing,3215,6328 +1724266800,Dropbox,2762,1288 +1724266800,Google,32726,84494 +1724266800,MSN,10151,33096 +1724266800,HTTP,4212,3814 +1724266800,Launchpad,640,496 +1724266800,Microsoft Update,1496,1522 +1724266800,TwitchTV,5529,7023 +1724266800,Advanced Packaging Tool,1167,1026 +1724266800,IMAPS,5502,22026 +1724266800,HTTPS,864404,4147331 +1724266800,Mozilla,1872,5151 +1724266800,SSL client,342665,2738711 +1724266800,Microsoft,62648,485039 +1724266800,Mail.Ru,105354,249552 +1724266800,Yandex,33924,53852 +1724266800,GitHub,46388,1753946 +1724266800,Ubuntu,527,530 +1724266800,Microsoft CryptoAPI,2271,2141 +1724266800,Google Play,31385,35616 +1724266800,Exchange Online,1335,6463 +1724266800,Office 365,5376,16863 +1724266800,Telegram,2025,7383 +1724266800,AnyDesk,3381,2068 +1724266800,DNS over HTTPS,2146,10786 +1724266800,HTTPS,8249,11499 +1724266800,SSL client,8249,11499 +1724266800,DNS over HTTPS,8249,11499 +1724266800,__unknown,10376,479574 +1724266800,ICMP,602,0 +1724266800,__unknown,6697,3309 +1724266800,Google,131407,63761 +1724266800,HTTPS,176779,168105 +1724266800,Spotify,2225,8828 +1724266800,Avast,7620,2887 +1724266800,SSL client,141252,75476 +1724266800,ICMP,4524,3552 +1724266800,__unknown,546859,662891 +1724266800,BitTorrent,463,434 +1724266800,DHCPv6,163,0 +1724266800,Google APIs,16479,59479 +1724266800,Google,34731,137567 +1724266800,BitTorrent tracker,153,0 +1724266800,DNS,19555,0 +1724266800,Gmail,6521,7825 +1724266800,HTTP,1721,3569 +1724266800,NTP,12750,3000 +1724266800,SSL,3839,127749 +1724266800,STUN,3114,4184 +1724266800,Odnoklassniki,2609,7423 +1724266800,HTTPS,174247,830702 +1724266800,SSL client,96930,681355 +1724266800,Microsoft,2203,3665 +1724266800,VeriSign,566,2141 +1724266800,Microsoft CryptoAPI,1721,3569 +1724266800,Google Play,2391,8916 +1724266800,ICMP,22642,14106 +1724266800,JetBrains,10799,426979 +1724266800,Google Sign in,17209,16741 +1724266800,Grammarly,1918,7826 +1724266800,DNS over HTTPS,25909,69044 +1724266800,__unknown,212729,185023 +1724266800,Apple Update,1057,5485 +1724266800,Bing,1071,5230 +1724266800,Google APIs,8086,23856 +1724266800,Google,26367,59332 +1724266800,Kaspersky,516,1445 +1724266800,Android browser,917,666 +1724266800,Chrome,772,840 +1724266800,DNS,47033,48536 +1724266800,Firefox,822,977 +1724266800,Gmail,12553,12422 +1724266800,HTTP,269786,6875168 +1724266800,Launchpad,3200,2480 +1724266800,Microsoft Update,1284,1022 +1724266800,NetBIOS-dgm,243,0 +1724266800,NTP,13020,3450 +1724266800,STUN,2404,888 +1724266800,Odnoklassniki,3790,7511 +1724266800,Advanced Packaging Tool,38037,165978 +1724266800,HTTPS,197334,846195 +1724266800,Apple sites,3462,34430 +1724266800,iCloud,8422,22850 +1724266800,Avast,1528,1498 +1724266800,SSL client,116086,257285 +1724266800,Ubuntu Update Manager,30728,159788 +1724266800,Microsoft,190110,6660005 +1724266800,Mail.Ru,1204,5377 +1724266800,Yandex,45669,60182 +1724266800,Ubuntu,4534,4171 +1724266800,Microsoft CryptoAPI,9032,7588 +1724266800,ICMP,8192,5772 +1724266800,Firebase Crashlytics,2202,6652 +1724266800,Telegram,2690,7471 +1724266800,Edge Chromium,4049,13411 +1724266800,Grammarly,2242,7946 +1724266800,DNS over TLS,2290,9541 +1724266800,DNS over HTTPS,11430,40223 +1724267100,__unknown,261412,345635 +1724267100,Google,38717,52548 +1724267100,HTTPS,1254153,7962351 +1724267100,SSL client,51638,774914 +1724267100,Yandex,12921,722366 +1724267100,HTTPS,138361,66522 +1724267100,__unknown,800,1032 +1724267100,HTTPS,8507,11686 +1724267100,__unknown,7997,21186 +1724267100,HTTPS,64601,64066 +1724267100,SSL client,41453,36434 +1724267100,Google Play,41453,36434 +1724267100,__unknown,84712,91515 +1724267100,Google,13317,18620 +1724267100,MSN,4111,6049 +1724267100,HTTP,1675,1567 +1724267100,Microsoft Update,919,827 +1724267100,VKontakte,8448,16212 +1724267100,HTTPS,200453,2286385 +1724267100,iCloud,4795,12338 +1724267100,SSL client,107223,313985 +1724267100,Microsoft,15557,33570 +1724267100,Mail.Ru,8480,11075 +1724267100,Yandex,12609,46955 +1724267100,Microsoft CryptoAPI,1675,1567 +1724267100,Google Play,24335,26625 +1724267100,Office 365,1929,10657 +1724267100,Sharepoint Online,6362,118803 +1724267100,GISMETEO,2194,9176 +1724267100,Google Sign in,5086,3905 +1724267100,__unknown,1012793,1166291 +1724267100,Dropbox,1707,1519 +1724267100,Google APIs,3258,8240 +1724267100,Google,325443,219974 +1724267100,Gmail,6282,7591 +1724267100,HTTP,4649,3627 +1724267100,Microsoft Update,92735,247302 +1724267100,YouTube,7387,9838 +1724267100,TeamViewer,1524,8953 +1724267100,VKontakte,2296,4989 +1724267100,TwitchTV,7457,7155 +1724267100,Advanced Packaging Tool,2434,1734 +1724267100,HTTPS,1497946,11066356 +1724267100,WhatsApp,1876,9211 +1724267100,Apple sites,2111,8611 +1724267100,iCloud,2850,8705 +1724267100,Avast,1944,4342 +1724267100,Opera,9831,5953 +1724267100,SSL client,1199470,10604264 +1724267100,Amazon Web Services,3265,21542 +1724267100,Ubuntu Update Manager,2434,1734 +1724267100,Microsoft,79505,154119 +1724267100,Mail.Ru,167008,415540 +1724267100,Yandex,383242,8346797 +1724267100,GitHub,22568,858103 +1724267100,Apple Maps,853,3357 +1724267100,Google Play,43388,61394 +1724267100,Office 365,14684,141762 +1724267100,Microsoft Windows Live Services Authentication,23857,34847 +1724267100,Telegram,1784,1507 +1724267100,Google Inbox,3878,8286 +1724267100,DNS over HTTPS,5479,25640 +1724267100,Adobe Update,3081,24655 +1724267100,__unknown,315104,166196 +1724267100,HTTPS,208915,270392 +1724267100,SSL client,208915,270392 +1724267100,Telegram,208915,270392 +1724267100,Windows Live,8404,28666 +1724267100,HTTPS,34872,72962 +1724267100,SSL client,28333,59136 +1724267100,Apple Maps,2690,7133 +1724267100,Telegram,19929,30470 +1724267100,__unknown,215,107 +1724267100,Google,21818,30624 +1724267100,HTTPS,25120,36100 +1724267100,SSL client,21818,30624 +1724267100,__unknown,28234,218042 +1724267100,HTTPS,13018,18149 +1724267100,Telegram,1575,1032 +1724267100,__unknown,350594,736162 +1724267100,BitTorrent,310,496 +1724267100,Google APIs,9423,24677 +1724267100,Google,37032,70480 +1724267100,DNS,15785,0 +1724267100,Gmail,23446,39754 +1724267100,HTTP,2208,3056 +1724267100,NetBIOS-dgm,250,0 +1724267100,NTP,12750,3000 +1724267100,SSL,869,7092 +1724267100,STUN,4974,7630 +1724267100,VKontakte,5694,29796 +1724267100,Odnoklassniki,2609,7499 +1724267100,HTTPS,215193,1376086 +1724267100,SSL client,103898,618981 +1724267100,Mail.Ru,1264,5317 +1724267100,Yandex,16763,419168 +1724267100,Microsoft CryptoAPI,604,1130 +1724267100,Google Hangouts,869,7092 +1724267100,ICMP,41840,14096 +1724267100,ICMP for IPv6,70,0 +1724267100,Telegram,4670,10247 +1724267100,DNS over HTTPS,11906,33769 +1724267100,__unknown,473175,2180187 +1724267100,BitTorrent,153,0 +1724267100,DHCPv6,815,0 +1724267100,Google APIs,2924,7235 +1724267100,Google,5528,7142 +1724267100,QQ,414,1581 +1724267100,BitTorrent tracker,153,0 +1724267100,DNS,46173,47801 +1724267100,Firefox,1466,1856 +1724267100,HTTP,61911,83816 +1724267100,Launchpad,2634,1984 +1724267100,Microsoft Update,641,500 +1724267100,NTP,1080,1170 +1724267100,Skype,1209,7633 +1724267100,STUN,984,888 +1724267100,Odnoklassniki,3790,7453 +1724267100,Advanced Packaging Tool,30168,27872 +1724267100,HTTPS,311141,2062475 +1724267100,Apple sites,14582,200992 +1724267100,Avast,764,782 +1724267100,SSL client,109111,788242 +1724267100,Ubuntu Update Manager,22155,21046 +1724267100,Microsoft,1326,16100 +1724267100,Mail.Ru,2306,6129 +1724267100,Yandex,30186,465769 +1724267100,Ubuntu,6654,6217 +1724267100,Microsoft CryptoAPI,5086,4292 +1724267100,Microsoft WNS,1326,16100 +1724267100,ICMP,3690,0 +1724267100,Telegram,48852,97796 +1724267100,Google Sign in,6206,4542 +1724267100,Edge Chromium,5223,17365 +1724267100,DNS over TLS,2158,9541 +1724267100,DNS over HTTPS,17272,61734 +1724267400,HTTPS,244550,153375 +1724267400,HTTPS,114529,82135 +1724267400,Google,445310,695399 +1724267400,HTTPS,445310,695399 +1724267400,SSL client,445310,695399 +1724267400,TwitchTV,2667256,88922 +1724267400,HTTPS,2667256,88922 +1724267400,SSL client,2667256,88922 +1724267400,Windows Live,26848,12796 +1724267400,HTTPS,26848,12796 +1724267400,SSL client,26848,12796 +1724267400,HTTPS,69517,131719 +1724267400,SSL client,69517,131719 +1724267400,Microsoft,9114,125027 +1724267400,Dropbox Download,60403,6692 +1724267400,__unknown,136553,63953 +1724267400,Google APIs,2467,29136 +1724267400,HTTPS,30023,96685 +1724267400,SSL client,12269,84281 +1724267400,Mail.Ru,8552,49181 +1724267400,Google Play,1250,5964 +1724267400,__unknown,20176,4809 +1724267400,Skype,2535,8336 +1724267400,HTTPS,1057439,24306995 +1724267400,SSL client,115331,882835 +1724267400,Microsoft,5798,13065 +1724267400,Mail.Ru,17172,60151 +1724267400,Yandex,31566,673061 +1724267400,GitHub,936,8375 +1724267400,Google Play,36144,90436 +1724267400,Office 365,4660,4930 +1724267400,Battle.net site,2378,5821 +1724267400,GISMETEO,2194,9176 +1724267400,Stripe,11948,9484 +1724267400,__unknown,126643,119278 +1724267400,Eset,2082,745 +1724267400,Google APIs,16526,28597 +1724267400,Google,84763,94866 +1724267400,Gmail,2906,12877 +1724267400,HTTP,6393,4177 +1724267400,Microsoft Update,5478,13975 +1724267400,SSL,1473,7899 +1724267400,VKontakte,16556,27536 +1724267400,Steam,630010,74620 +1724267400,Advanced Packaging Tool,2421,2222 +1724267400,HTTPS,1870750,7587727 +1724267400,Apple sites,4902,22594 +1724267400,iCloud,18090,64769 +1724267400,Mozilla,1965,5266 +1724267400,Avast,7541,26055 +1724267400,SSL client,1415713,2227485 +1724267400,Ad Nexus,3106,7051 +1724267400,Amazon Web Services,3355,21602 +1724267400,Ubuntu Update Manager,1283,1222 +1724267400,Microsoft,319219,668960 +1724267400,Mail.Ru,134907,177840 +1724267400,Yandex,42744,86211 +1724267400,GitHub,22684,677434 +1724267400,Ubuntu,1138,1000 +1724267400,Microsoft CryptoAPI,715,619 +1724267400,33Across,2352,8100 +1724267400,Criteo,12749,21496 +1724267400,Smart AdServer,8944,18567 +1724267400,Office 365,10084,36266 +1724267400,AdRoll,6772,19110 +1724267400,Microsoft Windows Live Services Authentication,48276,79487 +1724267400,Google Hangouts,1473,7899 +1724267400,Stripe,7179,11807 +1724267400,DNS over HTTPS,6089,28534 +1724267400,Discord,3531,14831 +1724267400,ICMP,19884,0 +1724267400,DNS over HTTPS,10515,28541 +1724267400,__unknown,1570,11047 +1724267400,STUN,4510,4070 +1724267400,__unknown,20158,16354 +1724267400,ICMP,4272,3720 +1724267400,__unknown,22974,58945 +1724267400,Google,8133,20681 +1724267400,HTTPS,27675,59040 +1724267400,SSL client,8133,20681 +1724267400,ICMP,602,0 +1724267400,Telegram,1115,496 +1724267400,__unknown,477147,1290387 +1724267400,BitTorrent,463,496 +1724267400,DHCPv6,163,0 +1724267400,Google APIs,94682,50207 +1724267400,Google Drive,9522,10846 +1724267400,Google,8784,22841 +1724267400,BitTorrent tracker,153,0 +1724267400,DNS,25702,0 +1724267400,Gmail,31420,33297 +1724267400,HTTP,595,965 +1724267400,NTP,360,360 +1724267400,STUN,3008,4336 +1724267400,Odnoklassniki,2609,7423 +1724267400,HTTPS,265633,397866 +1724267400,SSL client,205964,235103 +1724267400,Microsoft,982,7534 +1724267400,Microsoft CryptoAPI,595,965 +1724267400,ICMP,16915,0 +1724267400,Telegram,57965,102955 +1724267400,DNS over HTTPS,14447,44092 +1724267400,__unknown,328489,3955342 +1724267400,DHCPv6,978,0 +1724267400,Google APIs,6118,19463 +1724267400,Google,13757,33424 +1724267400,Adobe Software,3645,3692 +1724267400,Chrome,1947,2728 +1724267400,DNS,40710,36602 +1724267400,Gmail,12814,11610 +1724267400,HTTP,108694,424011 +1724267400,Internet Explorer,9865,5732 +1724267400,iTunes,1467,8100 +1724267400,Launchpad,3200,2480 +1724267400,Microsoft Update,21489,315668 +1724267400,NTP,38520,9270 +1724267400,SSL,1710,14064 +1724267400,STUN,984,888 +1724267400,VKontakte,6951,13856 +1724267400,Odnoklassniki,1851,1189 +1724267400,Advanced Packaging Tool,29670,27129 +1724267400,Windows Update,18858,313152 +1724267400,HTTPS,202137,559571 +1724267400,iCloud,19968,15777 +1724267400,Mozilla,2058,4535 +1724267400,Avast,764,782 +1724267400,SSL client,91153,218141 +1724267400,Ubuntu Update Manager,20995,19735 +1724267400,Microsoft,2817,10896 +1724267400,Yandex,24850,81831 +1724267400,Ubuntu,7241,6758 +1724267400,Microsoft CryptoAPI,9150,9180 +1724267400,Microsoft NCSI,454,487 +1724267400,Microsoft WNS,633,7994 +1724267400,Google Hangouts,1710,14064 +1724267400,ICMP,4607,120 +1724267400,ICMP for IPv6,70,0 +1724267400,Telegram,13331,30257 +1724267400,Edge Chromium,8792,26321 +1724267400,Grammarly,2345,7858 +1724267400,DNS over TLS,3381,14408 +1724267400,DNS over HTTPS,19462,73698 +1724267699,__unknown,121740,164919 +1724267699,Google,106302,105334 +1724267699,HTTPS,651048,262188 +1724267699,SSL client,106302,105334 +1724267699,__unknown,956,1590 +1724267699,HTTPS,70613,2228471 +1724267699,__unknown,84104,9269 +1724267699,Google APIs,327318,36966 +1724267699,HTTPS,327318,36966 +1724267699,SSL client,327318,36966 +1724267699,HTTPS,57786,66196 +1724267699,SSL client,54469,60994 +1724267699,Telegram,54469,60994 +1724267699,__unknown,78952,43055 +1724267699,HTTPS,46503,106441 +1724267699,__unknown,185175,162936 +1724267699,Apple Update,9896,522307 +1724267699,HTTP,580,447 +1724267699,iTunes,2758,18525 +1724267699,Microsoft Update,580,447 +1724267699,Skype,2582,8335 +1724267699,TeamViewer,21515,38393 +1724267699,VKontakte,24814,35446 +1724267699,TwitchTV,4579,7964 +1724267699,HTTPS,182027,3789686 +1724267699,WhatsApp,1165,1156 +1724267699,Apple sites,2641,8611 +1724267699,Mozilla,2337,5131 +1724267699,SSL client,94774,713129 +1724267699,Ad Nexus,5343,29794 +1724267699,Microsoft,8032,16941 +1724267699,Mail.Ru,12055,12535 +1724267699,Disqus,3939,9322 +1724267699,Microsoft CryptoAPI,580,447 +1724267699,Rubicon Project,3723,9998 +1724267699,Smart AdServer,6267,16169 +1724267699,Office 365,3550,8078 +1724267699,Battle.net site,2258,3973 +1724267699,DNS over HTTPS,5910,18016 +1724267699,__unknown,219252,99726 +1724267699,Bing,5679,15758 +1724267699,Dropbox,2534,1390 +1724267699,Eset,3616,9577 +1724267699,Google APIs,10332,58958 +1724267699,Google,352642,160842 +1724267699,Android browser,524,333 +1724267699,HTTP,8541,130667 +1724267699,iTunes,13490,11063 +1724267699,Microsoft Update,1494,1270 +1724267699,SSL,1594,1392 +1724267699,HTTPS,789578,2576939 +1724267699,Apple sites,4328,18253 +1724267699,iCloud,2209,8471 +1724267699,Mozilla,2341,5399 +1724267699,Avast,3004,14869 +1724267699,SSL client,693364,2075879 +1724267699,Ad Nexus,2545,5466 +1724267699,Microsoft,72117,143318 +1724267699,Mail.Ru,103904,112625 +1724267699,Yandex,63278,346831 +1724267699,GitHub,28300,1076105 +1724267699,Microsoft CryptoAPI,1494,1270 +1724267699,33Across,2352,8100 +1724267699,Criteo,6511,6435 +1724267699,Smart AdServer,7145,9422 +1724267699,Office 365,8884,70065 +1724267699,Google Hangouts,1594,1392 +1724267699,__unknown,188,229 +1724267699,__unknown,14118,7840 +1724267699,SSL,2944,9985 +1724267699,HTTPS,43493,21532 +1724267699,HTTPS,30252,27552 +1724267699,ICMP,516,0 +1724267699,__unknown,7388,145321 +1724267699,HTTPS,12900,33241 +1724267699,ICMP,1762,0 +1724267699,Telegram,1151,496 +1724267699,__unknown,375027,523830 +1724267699,BitTorrent,310,496 +1724267699,DHCPv6,163,0 +1724267699,Google APIs,42442,19119 +1724267699,Google Drive,10065,11076 +1724267699,Google,72748,166651 +1724267699,DNS,13060,0 +1724267699,Gmail,278725,112498 +1724267699,HTTP,527,1364 +1724267699,NetBIOS-dgm,243,0 +1724267699,NTP,630,630 +1724267699,SSL,1617,1540 +1724267699,STUN,1148,1036 +1724267699,YouTube,1411,6640 +1724267699,VKontakte,2863,6043 +1724267699,HTTPS,641698,2242811 +1724267699,WhatsApp,3786,17206 +1724267699,SSL client,462329,424767 +1724267699,Yandex,1828,6769 +1724267699,Google Hangouts,1617,1540 +1724267699,ICMP,31232,0 +1724267699,Weborama,2153,5533 +1724267699,Telegram,47528,84520 +1724267699,Edge Chromium,527,1364 +1724267699,DNS over HTTPS,14860,45927 +1724267699,__unknown,292231,306627 +1724267699,BitTorrent,153,537 +1724267699,Google APIs,6485,18979 +1724267699,Google,17540,44540 +1724267699,BitTorrent tracker,153,537 +1724267699,DNS,41767,39681 +1724267699,HTTP,77022,97350 +1724267699,Launchpad,3200,2480 +1724267699,Microsoft Update,1042,1096 +1724267699,NetBIOS-dgm,250,0 +1724267699,NTP,1080,1080 +1724267699,STUN,984,888 +1724267699,TeamViewer,1431,6305 +1724267699,VKontakte,4649,9931 +1724267699,Advanced Packaging Tool,28498,26061 +1724267699,HTTPS,454901,2821556 +1724267699,Mozilla,15642,10574 +1724267699,Avast,1528,1564 +1724267699,SSL client,104907,715530 +1724267699,Ubuntu Update Manager,19823,18601 +1724267699,Microsoft,3537,11846 +1724267699,Yandex,31998,587095 +1724267699,Ubuntu,6882,6359 +1724267699,Microsoft CryptoAPI,1042,1096 +1724267699,Microsoft NCSI,1319,1461 +1724267699,Microsoft WNS,633,7968 +1724267699,Google Play,17990,9706 +1724267699,ICMP,1400,0 +1724267699,Telegram,10752,31542 +1724267699,Edge Chromium,4216,10916 +1724267699,DNS over TLS,2224,9541 +1724267699,DNS over HTTPS,15881,53945 +1724268000,__unknown,958550,41325082 +1724268000,HTTPS,10197,11638 +1724268000,Dropbox,123198,20061 +1724268000,HTTPS,125882,28935 +1724268000,SSL client,125882,28935 +1724268000,Samsung,2684,8874 +1724268000,__unknown,11597,2922 +1724268000,HTTPS,125087,114270 +1724268000,SSL client,78634,70282 +1724268000,Yandex,4845,3438 +1724268000,Google Play,73789,66844 +1724268000,__unknown,45028,17108 +1724268000,Google,10699,20681 +1724268000,MSN,4268,4749 +1724268000,HTTPS,156615,207136 +1724268000,Apple sites,1718,9172 +1724268000,Avast,1122,10805 +1724268000,SSL client,61129,132032 +1724268000,Microsoft,24409,26818 +1724268000,Mail.Ru,12189,11772 +1724268000,Yandex,4975,37432 +1724268000,Apple Maps,1814,10108 +1724268000,Office 365,1749,10603 +1724268000,__unknown,192910,1426480 +1724268000,Apple Update,1886,4122 +1724268000,Google APIs,935,4835 +1724268000,Google,211670,305238 +1724268000,HTTP,8835,14582 +1724268000,Launchpad,574,430 +1724268000,LiveJournal,1137,5962 +1724268000,Skype,3239,7981 +1724268000,SSL,1502,1392 +1724268000,Advanced Packaging Tool,3766,3677 +1724268000,HTTPS,789426,6201679 +1724268000,SSL client,550869,2642975 +1724268000,Ubuntu Update Manager,2557,2681 +1724268000,Microsoft,55046,104295 +1724268000,Mail.Ru,91204,81537 +1724268000,Yandex,61758,619973 +1724268000,GitHub,44744,1396650 +1724268000,Ubuntu,635,566 +1724268000,Nvidia,5471,14506 +1724268000,Google Update,4341,10370 +1724268000,uTorrent,21606,39046 +1724268000,Office 365,47777,47181 +1724268000,Google Hangouts,1502,1392 +1724268000,Telegram,240,240 +1724268000,Xiaomi,1683,5561 +1724268000,Zoom,4314,6635 +1724268000,DNS over TLS,1211,4696 +1724268000,DNS over HTTPS,11330,42484 +1724268000,CoAP,5978,4464 +1724268000,HTTPS,73693,62427 +1724268000,ICMP,10777,0 +1724268000,DNS over HTTPS,17231,39992 +1724268000,__unknown,15734,1095295 +1724268000,Bing,2138,12584 +1724268000,HTTPS,6428,19278 +1724268000,SSL client,2138,12584 +1724268000,__unknown,9399,142423 +1724268000,Google,99596,83484 +1724268000,HTTP,1389,19361 +1724268000,HTTPS,108289,103084 +1724268000,SSL client,99596,83484 +1724268000,ICMP,16764,3480 +1724268000,__unknown,297966,345270 +1724268000,BitTorrent,463,496 +1724268000,Google APIs,42872,17850 +1724268000,Google Drive,5970,9966 +1724268000,Google,38145,88308 +1724268000,BitTorrent tracker,153,0 +1724268000,DNS,16674,176 +1724268000,Gmail,21917,19301 +1724268000,HTTP,12892,494399 +1724268000,NTP,540,540 +1724268000,STUN,1148,1036 +1724268000,VKontakte,2804,6043 +1724268000,Odnoklassniki,2669,7499 +1724268000,HTTPS,185715,265149 +1724268000,Mozilla,2615,1712 +1724268000,SSL client,125131,165681 +1724268000,Microsoft,12892,494399 +1724268000,Mail.Ru,5625,5779 +1724268000,Google Play,2514,9223 +1724268000,ICMP,57066,0 +1724268000,DNS over HTTPS,4981,15741 +1724268000,__unknown,262720,206739 +1724268000,DHCPv6,1141,0 +1724268000,Google APIs,14594,27401 +1724268000,Google,25199,50253 +1724268000,DNS,43142,37075 +1724268000,Gmail,6271,8198 +1724268000,HTTP,273010,4258411 +1724268000,Launchpad,3200,2480 +1724268000,Microsoft Update,93258,1940856 +1724268000,NTP,14010,4170 +1724268000,SSL,797,7092 +1724268000,STUN,984,888 +1724268000,VKontakte,2354,5001 +1724268000,Advanced Packaging Tool,36014,33408 +1724268000,Windows Update,89979,1937865 +1724268000,HTTPS,185140,433565 +1724268000,iCloud,15226,36048 +1724268000,Avast,1146,1173 +1724268000,SSL client,88653,184150 +1724268000,Ubuntu Update Manager,24374,23226 +1724268000,Microsoft,80563,2215731 +1724268000,Yandex,19198,33214 +1724268000,Ubuntu,9096,8307 +1724268000,Microsoft CryptoAPI,4421,3701 +1724268000,Google Hangouts,797,7092 +1724268000,ICMP,1354,0 +1724268000,Telegram,3136,1104 +1724268000,Edge Chromium,1581,4093 +1724268000,DNS over TLS,3315,14488 +1724268000,DNS over HTTPS,14205,49613 +1724268300,HTTP,37575,69012 +1724268300,HTTPS,386191,433478 +1724268300,SSL client,386191,433478 +1724268300,Yandex,386191,433478 +1724268300,HTTPS,125240,90182 +1724268300,SSL client,125240,90182 +1724268300,Yandex,125240,90182 +1724268300,HTTPS,1089111,7128403 +1724268300,SSL client,1089111,7128403 +1724268300,Yandex,1089111,7128403 +1724268300,HTTPS,16932,22957 +1724268300,SSL client,16932,22957 +1724268300,Yandex,16932,22957 +1724268300,HTTPS,3532908,2135550 +1724268300,SSL client,3532908,2135550 +1724268300,Yandex,3532908,2135550 +1724268300,HTTPS,774998,1089890 +1724268300,SSL client,774998,1089890 +1724268300,Yandex,774998,1089890 +1724268300,HTTPS,1539794,134859 +1724268300,HTTPS,28177,24318 +1724268300,SSL client,28177,24318 +1724268300,Yandex,28177,24318 +1724268300,HTTPS,9655,13189 +1724268300,SSL client,9655,13189 +1724268300,Yandex,9655,13189 +1724268300,HTTPS,46280,57107 +1724268300,SSL client,36976,44383 +1724268300,Yandex,36976,44383 +1724268300,HTTPS,212546,196582 +1724268300,SSL client,212546,196582 +1724268300,Yandex,212546,196582 +1724268300,__unknown,6631,6429 +1724268300,HTTPS,21837,29271 +1724268300,SSL client,21837,29271 +1724268300,Yandex,21837,29271 +1724268300,__unknown,6760,7313 +1724268300,HTTPS,832734,872962 +1724268300,SSL client,334291,825663 +1724268300,Yandex,334291,825663 +1724268300,__unknown,2266,11161 +1724268300,Google,1342,6895 +1724268300,HTTPS,1342,6895 +1724268300,SSL client,1342,6895 +1724268300,__unknown,1733,3438 +1724268300,HTTPS,8175,15672 +1724268300,__unknown,1305,4541 +1724268300,HTTPS,61992,48885 +1724268300,SSL client,45358,5708 +1724268300,Dropbox Download,45358,5708 +1724268300,DNS over HTTPS,2106,7505 +1724268300,__unknown,90713,42974 +1724268300,MSN,3925,34208 +1724268300,Skype,2541,8337 +1724268300,SSL,2776,9038 +1724268300,VKontakte,16668,6897 +1724268300,HTTPS,203708,693861 +1724268300,Apple sites,1934,9238 +1724268300,iCloud,13632,228133 +1724268300,SSL client,104897,398119 +1724268300,Microsoft,6211,14582 +1724268300,Mail.Ru,5460,5538 +1724268300,Yandex,29954,48147 +1724268300,uTorrent,10977,19491 +1724268300,Sharepoint Online,4119,6353 +1724268300,Battle.net site,2258,3973 +1724268300,GISMETEO,2134,9170 +1724268300,Google Sign in,5084,4052 +1724268300,__unknown,1633750,716899 +1724268300,Dropbox,13089,226657 +1724268300,Google,258320,161730 +1724268300,Adobe Software,5770,15037 +1724268300,HTTP,22483,839768 +1724268300,Microsoft Update,16551,827639 +1724268300,SSL,1506,1392 +1724268300,Advanced Packaging Tool,1214,1226 +1724268300,HTTPS,694193,3110532 +1724268300,Apple sites,4016,17833 +1724268300,Opera,9691,5951 +1724268300,SSL client,574026,2458795 +1724268300,Weather.com,5871,36140 +1724268300,CloudFront,6206,1213 +1724268300,Ubuntu Update Manager,1214,1226 +1724268300,Microsoft,28413,56959 +1724268300,Mail.Ru,104546,93106 +1724268300,Yandex,65003,90400 +1724268300,GitHub,30731,1653807 +1724268300,Google Update,4331,10370 +1724268300,Microsoft CryptoAPI,600,381 +1724268300,uTorrent,10944,19494 +1724268300,Exchange Online,1300,6467 +1724268300,Office 365,15619,39664 +1724268300,Microsoft Windows Live Services Authentication,22692,38896 +1724268300,Google Hangouts,1506,1392 +1724268300,Telegram,180,120 +1724268300,DNS over HTTPS,2416,11596 +1724268300,__unknown,11730,9632 +1724268300,HTTPS,298563,595642 +1724268300,ICMP,15360,15240 +1724268300,HTTPS,9305,13279 +1724268300,SSL client,9305,13279 +1724268300,DNS over HTTPS,9305,13279 +1724268300,__unknown,94,594 +1724268300,ICMP,2322,0 +1724268300,__unknown,4302,0 +1724268300,HTTPS,23796,28379 +1724268300,Apple Maps,2678,7042 +1724268300,__unknown,2308,22395 +1724268300,HTTPS,30655,25414 +1724268300,__unknown,160001,58626 +1724268300,HTTPS,118075,175162 +1724268300,SSL client,111622,164406 +1724268300,ICMP,774,0 +1724268300,Telegram,112577,164990 +1724268300,__unknown,581052,443605 +1724268300,BitTorrent,310,496 +1724268300,Google APIs,2264,6891 +1724268300,Google Drive,186796,130393 +1724268300,Google,12678,38754 +1724268300,DNS,12320,0 +1724268300,HTTP,1279,8466 +1724268300,Microsoft Update,646,499 +1724268300,NetBIOS-dgm,243,0 +1724268300,NTP,23862,6180 +1724268300,STUN,2685302,163138 +1724268300,VKontakte,2744,6097 +1724268300,Odnoklassniki,2609,7499 +1724268300,HTTPS,281247,334809 +1724268300,SSL client,214501,196069 +1724268300,Microsoft,633,7967 +1724268300,Microsoft CryptoAPI,646,499 +1724268300,Microsoft WNS,633,7967 +1724268300,Google Play,5162,1483 +1724268300,ICMP,21884,1920 +1724268300,DNS over HTTPS,13649,39345 +1724268300,__unknown,340613,257815 +1724268300,BitTorrent,153,198 +1724268300,DHCPv6,978,0 +1724268300,Google,67592,160700 +1724268300,BitTorrent tracker,153,198 +1724268300,DNS,40260,38054 +1724268300,HTTP,91495,370524 +1724268300,Internet Explorer,762,660 +1724268300,Launchpad,3200,2480 +1724268300,Microsoft Update,2239,1816 +1724268300,NTP,450,450 +1724268300,STUN,2132,1776 +1724268300,VKontakte,4650,10003 +1724268300,Odnoklassniki,1939,6325 +1724268300,Advanced Packaging Tool,32005,279527 +1724268300,HTTPS,148562,435712 +1724268300,Avast,764,782 +1724268300,SSL client,90434,230673 +1724268300,Ubuntu Update Manager,23917,272663 +1724268300,Microsoft,693,7996 +1724268300,VeriSign,566,2141 +1724268300,Yandex,11619,33777 +1724268300,Ubuntu,5313,4845 +1724268300,Microsoft CryptoAPI,4593,5486 +1724268300,Microsoft WNS,693,7996 +1724268300,ICMP,2196,0 +1724268300,Telegram,9733,31165 +1724268300,Edge Chromium,9379,27689 +1724268300,DNS over TLS,3225,14311 +1724268300,DNS over HTTPS,53527,173625 +1724268600,__unknown,42003,70169 +1724268600,Windows Live,27945,8630 +1724268600,HTTPS,27945,8630 +1724268600,SSL client,27945,8630 +1724268600,__unknown,1140,1736 +1724268600,HTTPS,134575,189023 +1724268600,SSL client,134575,189023 +1724268600,Telegram,134575,189023 +1724268600,__unknown,53525,63844 +1724268600,HTTPS,53657,63485 +1724268600,SSL client,53657,63485 +1724268600,Telegram,53657,63485 +1724268600,Windows Live,23530,7872 +1724268600,HTTPS,34507,133308 +1724268600,SSL client,34507,133308 +1724268600,Microsoft,8082,118244 +1724268600,Microsoft Teams,2895,7192 +1724268600,__unknown,49789,68300 +1724268600,HTTPS,6174,9977 +1724268600,__unknown,64684,15444 +1724268600,Google APIs,2093,7368 +1724268600,HTTPS,50913,56740 +1724268600,SSL client,23287,25601 +1724268600,Google Play,21194,18233 +1724268600,__unknown,33688,18979 +1724268600,Google,3058,9615 +1724268600,TeamViewer,1570,8876 +1724268600,HTTPS,70096,161902 +1724268600,iCloud,21509,56693 +1724268600,SSL client,56553,146669 +1724268600,Microsoft,8590,22103 +1724268600,Mail.Ru,11689,11377 +1724268600,Yandex,4629,14921 +1724268600,GitHub,996,8375 +1724268600,Battle.net site,2318,5427 +1724268600,GISMETEO,2194,9282 +1724268600,DNS over HTTPS,1367,6095 +1724268600,__unknown,113310,205767 +1724268600,Google APIs,96849326,1854604 +1724268600,Google,57299,51360 +1724268600,MSN,6489,17549 +1724268600,Android browser,524,333 +1724268600,Dell,1111,4308 +1724268600,HTTP,3434,3109 +1724268600,Skype,2656,8277 +1724268600,YouTube,2574,20883 +1724268600,VKontakte,2481,6272 +1724268600,Steam,12557,23489 +1724268600,Advanced Packaging Tool,2910,2776 +1724268600,HTTPS,97500530,4376401 +1724268600,WhatsApp,3814,15868 +1724268600,Mozilla,3489,17373 +1724268600,Avast,1122,12352 +1724268600,SSL client,97257182,4017630 +1724268600,Ubuntu Update Manager,2910,2776 +1724268600,Microsoft,92540,156672 +1724268600,Mail.Ru,72210,61405 +1724268600,Yandex,78225,84309 +1724268600,GitHub,45411,1614065 +1724268600,Nvidia,3333,10420 +1724268600,Exchange Online,1244,6467 +1724268600,Office 365,1304,9157 +1724268600,Microsoft Windows Live Services Authentication,6417,15758 +1724268600,Browsec,2286,5949 +1724268600,Xiaomi,8698,18340 +1724268600,Grammarly,4746,14004 +1724268600,DNS over HTTPS,7358,22160 +1724268600,__unknown,158915,101580 +1724268600,HTTPS,6211,6724 +1724268600,SSL client,6211,6724 +1724268600,Siri,6211,6724 +1724268600,__unknown,0,1390 +1724268600,HTTPS,9195,15338 +1724268600,DNS over HTTPS,6819,18013 +1724268600,__unknown,2060,2795 +1724268600,STUN,3280,3034 +1724268600,ICMP,430,0 +1724268600,__unknown,37044,56666 +1724268600,Google,16215,19725 +1724268600,Gmail,14344,11788 +1724268600,SSL,1704,1548 +1724268600,HTTPS,50456,79071 +1724268600,SSL client,32263,33061 +1724268600,Google Hangouts,1704,1548 +1724268600,ICMP,1332,0 +1724268600,Telegram,919,536 +1724268600,CoAP,1764,1296 +1724268600,__unknown,1551765,684275 +1724268600,BitTorrent,463,496 +1724268600,DHCPv6,163,0 +1724268600,Google APIs,5085,15557 +1724268600,Google,19961,73238 +1724268600,Kaspersky,608,607 +1724268600,BitTorrent tracker,153,0 +1724268600,DNS,16532,0 +1724268600,Gmail,15980,40536 +1724268600,HTTP,1837,1613 +1724268600,iTunes,2408,17652 +1724268600,Microsoft Update,642,503 +1724268600,NetBIOS-dgm,250,0 +1724268600,NTP,12480,2730 +1724268600,PcAnywhere,60,0 +1724268600,STUN,3300,1550 +1724268600,Odnoklassniki,2669,7499 +1724268600,HTTPS,96841,386128 +1724268600,Spotify,2119,7984 +1724268600,SSL client,57389,321130 +1724268600,Yandex,4700,150621 +1724268600,Microsoft CryptoAPI,1229,1006 +1724268600,ICMP,18112,3000 +1724268600,Google Sign in,4467,8043 +1724268600,DNS over HTTPS,11742,36977 +1724268600,__unknown,359531,285604 +1724268600,Google APIs,8369,21185 +1724268600,Google,34851,96454 +1724268600,DNS,37255,36225 +1724268600,Gmail,5711,7707 +1724268600,HTTP,94155,117675 +1724268600,Launchpad,3200,2480 +1724268600,Microsoft Update,641,501 +1724268600,NTP,12750,3090 +1724268600,STUN,2132,1924 +1724268600,VKontakte,4589,9952 +1724268600,Odnoklassniki,3700,2392 +1724268600,Advanced Packaging Tool,34632,30271 +1724268600,HTTPS,166220,582952 +1724268600,Apple sites,2058,17523 +1724268600,Mozilla,2816,4911 +1724268600,Avast,1146,1173 +1724268600,SSL client,75925,194368 +1724268600,Ubuntu Update Manager,23002,21463 +1724268600,Microsoft,1416,8654 +1724268600,Yandex,14305,40053 +1724268600,Ubuntu,9280,7246 +1724268600,Microsoft CryptoAPI,1874,2223 +1724268600,Microsoft WNS,693,7993 +1724268600,Apple Maps,1793,10121 +1724268600,Office 365,619,1199 +1724268600,ICMP,2183,0 +1724268600,Telegram,4198,8225 +1724268600,Edge Chromium,8852,26324 +1724268600,DNS over HTTPS,10754,35409 +1724268901,__unknown,75487,123117 +1724268901,HTTPS,66923,72527 +1724268901,AnyDesk,66923,72527 +1724268901,__unknown,83441,45276 +1724268901,HTTPS,112844,132199 +1724268901,__unknown,998,1424 +1724268901,HTTPS,6549,9484 +1724268901,SSL client,6549,9484 +1724268901,Yandex,6549,9484 +1724268901,HTTPS,14915,19354 +1724268901,Dropbox,118766,19888 +1724268901,HTTPS,143202,50534 +1724268901,SSL client,118766,19888 +1724268901,Google APIs,30869,10013 +1724268901,HTTPS,61059,35107 +1724268901,SSL client,49245,21791 +1724268901,Google Play,18376,11778 +1724268901,__unknown,54243,52202 +1724268901,Google APIs,2307,6358 +1724268901,Google,524,333 +1724268901,MSN,781,5860 +1724268901,Android browser,524,333 +1724268901,HTTP,524,333 +1724268901,TeamViewer,1559,9000 +1724268901,HTTPS,118793,469485 +1724268901,Mozilla,5852,14858 +1724268901,Avast,1122,12045 +1724268901,SSL client,68767,238854 +1724268901,Microsoft,16890,37943 +1724268901,Mail.Ru,26658,24514 +1724268901,Yandex,5426,12286 +1724268901,Office 365,1374,7099 +1724268901,Sharepoint Online,4859,106065 +1724268901,GISMETEO,1939,2826 +1724268901,__unknown,129313,169263 +1724268901,Dropbox,4970,2744 +1724268901,MSN,8819,19002 +1724268901,Android browser,908,2556 +1724268901,HTTP,5843,7169 +1724268901,iTunes,2704,18747 +1724268901,Launchpad,1214,992 +1724268901,Microsoft Update,70479,95691 +1724268901,Skype,2582,8337 +1724268901,YouTube,1283,1602 +1724268901,Advanced Packaging Tool,1214,992 +1724268901,HTTPS,751173,6062123 +1724268901,Apple sites,2309,9105 +1724268901,iCloud,9614,17627 +1724268901,Mozilla,2177,5151 +1724268901,Avast,1188,12938 +1724268901,SSL client,525732,1461709 +1724268901,Microsoft,82404,152599 +1724268901,Mail.Ru,75997,62347 +1724268901,Yandex,188442,147752 +1724268901,GitHub,25489,805704 +1724268901,Nvidia,1472,1993 +1724268901,Microsoft NCSI,514,427 +1724268901,Exchange Online,1339,6467 +1724268901,Office 365,14433,43021 +1724268901,Microsoft Windows Live Services Authentication,30400,52131 +1724268901,Telegram,97662,4287961 +1724268901,GISMETEO,908,2556 +1724268901,DNS over HTTPS,995,4584 +1724268901,ICMP,5494,0 +1724268901,HTTPS,31509,28192 +1724268901,__unknown,63146,64906 +1724268901,HTTP,499,408 +1724268901,HTTPS,8731,13207 +1724268901,__unknown,7343,5684 +1724268901,HTTPS,3243,5417 +1724268901,ICMP,676,0 +1724268901,__unknown,348705,380318 +1724268901,BitTorrent,310,496 +1724268901,DHCPv6,978,0 +1724268901,Google APIs,2144,6891 +1724268901,Google Drive,7466,10326 +1724268901,Google,242662,161548 +1724268901,DNS,12389,0 +1724268901,NTP,13020,3270 +1724268901,Odnoklassniki,2609,7498 +1724268901,HTTPS,312939,271503 +1724268901,SSL client,260739,202291 +1724268901,Google Play,3568,8081 +1724268901,ICMP,7312,1800 +1724268901,Telegram,1187,544 +1724268901,Grammarly,2290,7947 +1724268901,DNS over HTTPS,4830,15593 +1724268901,__unknown,522081,406873 +1724268901,BitTorrent,153,537 +1724268901,DHCPv6,163,0 +1724268901,Google,51610,117157 +1724268901,QQ,354,1515 +1724268901,BitTorrent tracker,153,537 +1724268901,DNS,50054,45991 +1724268901,Firefox,1482,1855 +1724268901,HTTP,76311,98724 +1724268901,Launchpad,3200,2480 +1724268901,NetBIOS-dgm,243,0 +1724268901,NTP,720,720 +1724268901,STUN,1148,1036 +1724268901,VKontakte,4590,10051 +1724268901,Odnoklassniki,1942,6342 +1724268901,Advanced Packaging Tool,30237,27869 +1724268901,HTTPS,162400,443277 +1724268901,Avast,764,782 +1724268901,SSL client,74190,164571 +1724268901,Ubuntu Update Manager,22880,21643 +1724268901,Microsoft,1547,11658 +1724268901,Yandex,11240,33047 +1724268901,Ubuntu,5007,4664 +1724268901,Microsoft CryptoAPI,2736,2283 +1724268901,Microsoft WNS,633,7993 +1724268901,ICMP,1542,0 +1724268901,Telegram,2503,835 +1724268901,Google Sign in,6269,4568 +1724268901,Edge Chromium,6684,20223 +1724268901,DNS over HTTPS,11150,41420 +1724269200,HTTPS,13207352,3796774 +1724269200,Google,96568,127943 +1724269200,HTTPS,228251,207105 +1724269200,SSL client,96568,127943 +1724269200,HTTPS,191097,174240 +1724269200,HTTPS,13095,5648 +1724269200,__unknown,414,484 +1724269200,__unknown,10051,74 +1724269200,HTTPS,47440,5606 +1724269200,SSL client,47440,5606 +1724269200,Dropbox Download,47440,5606 +1724269200,HTTPS,81143,67867 +1724269200,SSL client,53277,27969 +1724269200,Yandex,53277,27969 +1724269200,__unknown,375229,3585823 +1724269200,Google APIs,3005,6192 +1724269200,Google,8210,5099 +1724269200,TeamViewer,1510,8838 +1724269200,HTTPS,105438,205010 +1724269200,Apple sites,3557,31533 +1724269200,SSL client,56005,141897 +1724269200,Microsoft,15735,40027 +1724269200,Mail.Ru,9470,7423 +1724269200,Yandex,2971,6735 +1724269200,Office 365,5224,16663 +1724269200,Sharepoint Online,986,5945 +1724269200,Battle.net site,3143,4161 +1724269200,GISMETEO,2194,9281 +1724269200,__unknown,17270,11665 +1724269200,Bing,4586,6428 +1724269200,BITS,4194,61668 +1724269200,Dropbox,2817,4451 +1724269200,Google,103787,142547 +1724269200,Gmail,7047,3964 +1724269200,HTTP,5148,62619 +1724269200,Skype,2595,8179 +1724269200,YouTube,1284,1602 +1724269200,Steam,14958,28652 +1724269200,HTTPS,830933,15490517 +1724269200,WhatsApp,3616,12735 +1724269200,Apple sites,1213,4203 +1724269200,iCloud,14043,24323 +1724269200,SSL client,726351,15265845 +1724269200,CloudFront,6207,1153 +1724269200,Microsoft,77988,174187 +1724269200,Mail.Ru,66486,71157 +1724269200,Yandex,312650,12972973 +1724269200,GitHub,56528,1687854 +1724269200,Intel,1862,7320 +1724269200,Nvidia,1274,5915 +1724269200,Office 365,6874,24498 +1724269200,Microsoft Windows Live Services Authentication,37723,88561 +1724269200,Telegram,8000,27597 +1724269200,Google Inbox,6429,7878 +1724269200,DNS over HTTPS,2134,9976 +1724269200,ICMP,15088,0 +1724269200,HTTPS,8369,11597 +1724269200,SSL client,8369,11597 +1724269200,DNS over HTTPS,8369,11597 +1724269200,__unknown,480344,1212804 +1724269200,Windows Live,3196,26116 +1724269200,HTTPS,7800,33575 +1724269200,SSL client,3196,26116 +1724269200,__unknown,7480,7482 +1724269200,ICMP,1548,0 +1724269200,__unknown,10274,5440 +1724269200,Google Drive,13045,31941 +1724269200,Google,9812,21467 +1724269200,HTTP,8234,342416 +1724269200,Advanced Packaging Tool,8234,342416 +1724269200,HTTPS,28389,64240 +1724269200,SSL client,22857,53408 +1724269200,ICMP,840,0 +1724269200,CoAP,1764,1296 +1724269200,__unknown,336925,634495 +1724269200,BitTorrent,401,434 +1724269200,Google Drive,15975,23790 +1724269200,Google,20230,32977 +1724269200,BitTorrent tracker,153,0 +1724269200,DNS,21112,0 +1724269200,Gmail,6584,8097 +1724269200,HTTP,1174,1006 +1724269200,NetBIOS-dgm,250,0 +1724269200,NTP,900,900 +1724269200,STUN,12094,1850 +1724269200,HTTPS,133497,278377 +1724269200,Mozilla,4336,9737 +1724269200,SSL client,62360,103504 +1724269200,Microsoft CryptoAPI,1174,1006 +1724269200,ICMP,4664,0 +1724269200,Telegram,1003,568 +1724269200,Google Sign in,6153,4084 +1724269200,Grammarly,2231,7810 +1724269200,DNS over HTTPS,15832,43336 +1724269200,Google Meet,4543,12014 +1724269200,__unknown,571756,1062068 +1724269200,Bing,4840,7697 +1724269200,DHCPv6,978,0 +1724269200,Google APIs,7312,19513 +1724269200,Google,4096,13113 +1724269200,DNS,42080,37555 +1724269200,Gmail,13699,17973 +1724269200,HTTP,106029,304494 +1724269200,Internet Explorer,822,660 +1724269200,Launchpad,2494,1984 +1724269200,Microsoft Update,646,501 +1724269200,NTP,23950,5460 +1724269200,STUN,13928,1036 +1724269200,Steam,7800,180892 +1724269200,Advanced Packaging Tool,30566,28209 +1724269200,HTTPS,151432,390101 +1724269200,WhatsApp,2747,4094 +1724269200,Apple sites,1679,5711 +1724269200,iCloud,5183,31918 +1724269200,Avast,764,782 +1724269200,SSL client,76651,181404 +1724269200,Ubuntu Update Manager,23280,21913 +1724269200,Microsoft,1481,11490 +1724269200,Yandex,12626,38790 +1724269200,Ubuntu,6067,5695 +1724269200,Microsoft CryptoAPI,2336,1979 +1724269200,Microsoft WNS,633,7993 +1724269200,Google Play,22924,27509 +1724269200,ICMP,2419,0 +1724269200,Telegram,1066,475 +1724269200,Edge Chromium,7798,23604 +1724269200,Grammarly,2242,7912 +1724269200,DNS over TLS,3945,17533 +1724269200,DNS over HTTPS,8245,28744 +1724269500,HTTPS,4629,8867 +1724269500,SSL client,4629,8867 +1724269500,Yandex,4629,8867 +1724269500,Windows Live,27046,9949 +1724269500,HTTPS,27046,9949 +1724269500,SSL client,27046,9949 +1724269500,__unknown,8657,16739 +1724269500,Skype,3977,8741 +1724269500,HTTPS,39058,137654 +1724269500,SSL client,36068,136091 +1724269500,Microsoft,11267,119012 +1724269500,Google Play,20824,8338 +1724269500,HTTPS,32499,38444 +1724269500,__unknown,404944,389858 +1724269500,Google,96212,2413938 +1724269500,Skype,2523,8278 +1724269500,HTTPS,252285,2568670 +1724269500,Avast,1122,9716 +1724269500,SSL client,138328,2477511 +1724269500,Microsoft,9925,11776 +1724269500,Mail.Ru,23688,23516 +1724269500,Yandex,2480,4526 +1724269500,Battle.net site,2378,5761 +1724269500,DNS over HTTPS,2836,8736 +1724269500,__unknown,17421,20926 +1724269500,Bing,9517,12009 +1724269500,Dropbox,5124,7410 +1724269500,Google APIs,3008,8911 +1724269500,Google,910154,396220 +1724269500,HTTP,1857,3101 +1724269500,iTunes,2040,12195 +1724269500,HTTPS,1432414,9790175 +1724269500,WhatsApp,1345,1216 +1724269500,iCloud,15564,37178 +1724269500,SSL client,1231189,1770859 +1724269500,Ad Nexus,2978,24395 +1724269500,Apple Stocks,2901,7795 +1724269500,Microsoft,56156,107675 +1724269500,Mail.Ru,42543,36576 +1724269500,Yandex,115437,193859 +1724269500,GitHub,19444,680981 +1724269500,33Across,2412,8040 +1724269500,Criteo,6106,10703 +1724269500,Smart AdServer,4768,11259 +1724269500,Office 365,14854,49498 +1724269500,Telegram,3699,7834 +1724269500,DNS over HTTPS,412,60 +1724269500,Discord,21084,173950 +1724269500,__unknown,188,229 +1724269500,Google,11411,14510 +1724269500,HTTPS,11411,14510 +1724269500,SSL client,11411,14510 +1724269500,ICMP,5460,5460 +1724269500,__unknown,3819,3751 +1724269500,Oracle Database,1478,10810 +1724269500,TNS/Oracle,1478,10810 +1724269500,HTTPS,10952,16553 +1724269500,SSL client,5072,8011 +1724269500,Yandex,5072,8011 +1724269500,__unknown,11400,139015 +1724269500,STUN,1148,1036 +1724269500,HTTPS,7894,75616 +1724269500,Telegram,855,496 +1724269500,DNS over HTTPS,4949,13590 +1724269500,__unknown,469483,556826 +1724269500,BitTorrent,310,496 +1724269500,DHCPv6,163,0 +1724269500,Google APIs,40003,21290 +1724269500,Google Drive,10019,10681 +1724269500,Google,164950,76537 +1724269500,DNS,13889,0 +1724269500,Gmail,14648,21443 +1724269500,HTTP,876,740 +1724269500,iTunes,5334,9777 +1724269500,NTP,180,180 +1724269500,STUN,1790,1850 +1724269500,HTTPS,321548,300594 +1724269500,SSL client,236872,144725 +1724269500,Microsoft CryptoAPI,876,740 +1724269500,ICMP,7864,0 +1724269500,DNS over HTTPS,12159,30601 +1724269500,__unknown,316901,549891 +1724269500,BitTorrent,153,0 +1724269500,DHCPv6,978,0 +1724269500,Google APIs,22527,797712 +1724269500,Google,48172,92007 +1724269500,BitTorrent tracker,153,0 +1724269500,DNS,35310,34785 +1724269500,Gmail,7055,7526 +1724269500,HTTP,87203,100988 +1724269500,Launchpad,3200,2480 +1724269500,Microsoft Update,1623,1320 +1724269500,NTP,1440,1440 +1724269500,STUN,2322,1628 +1724269500,YouTube,3949,16763 +1724269500,VKontakte,138231,2710241 +1724269500,Odnoklassniki,1848,1188 +1724269500,Advanced Packaging Tool,35247,32255 +1724269500,HTTPS,372816,4290707 +1724269500,WhatsApp,1952,9174 +1724269500,Apple sites,1840,4539 +1724269500,Avast,1212,1239 +1724269500,SSL client,247359,3675058 +1724269500,Ubuntu Update Manager,24925,23241 +1724269500,Yandex,4832,19175 +1724269500,Ubuntu,7547,6995 +1724269500,Microsoft CryptoAPI,3425,2895 +1724269500,ICMP,1422,0 +1724269500,Telegram,1851,617 +1724269500,Google Sign in,6398,4365 +1724269500,Edge Chromium,7271,22240 +1724269500,DNS over TLS,4826,19229 +1724269500,DNS over HTTPS,10518,37538 +1724269500,Discord,10034,12020 +1724269800,__unknown,59976,50224 +1724269800,__unknown,30498,25628 +1724269800,Google,267151,111629 +1724269800,HTTPS,274211,120825 +1724269800,SSL client,267151,111629 +1724269800,HTTPS,204442,72837 +1724269800,Dropbox,118381,21223 +1724269800,HTTPS,130737,37232 +1724269800,Apple sites,2491,6520 +1724269800,SSL client,120872,27743 +1724269800,HTTPS,41995,34041 +1724269800,SSL client,20482,18401 +1724269800,Google Play,20482,18401 +1724269800,__unknown,625094,594183 +1724269800,Dropbox,126000,5740 +1724269800,Google,8463,5274 +1724269800,Yahoo!,2575,5453 +1724269800,HTTP,1075,1826 +1724269800,HTTPS,228457,202102 +1724269800,Mozilla,2201,4638 +1724269800,Avast,1122,9974 +1724269800,SSL client,191878,150503 +1724269800,Microsoft,17916,25894 +1724269800,VeriSign,1075,1826 +1724269800,Mail.Ru,18038,17348 +1724269800,Disqus,2670,7195 +1724269800,Yandex,7582,10610 +1724269800,GitHub,996,8376 +1724269800,Microsoft CryptoAPI,1075,1826 +1724269800,Office 365,4315,50001 +1724269800,__unknown,29531,20692 +1724269800,Bing,3619,6509 +1724269800,Dropbox,4905,6493 +1724269800,Google APIs,3497,7283 +1724269800,Google,12228,12188 +1724269800,MSN,1049,5866 +1724269800,Adobe Software,6415,5396 +1724269800,Android browser,522,399 +1724269800,Chrome,433,484 +1724269800,HTTP,3352,3168 +1724269800,Skype,4253,10337 +1724269800,TwitchTV,6864,7369 +1724269800,Advanced Packaging Tool,1561,1430 +1724269800,HTTPS,840003,10433618 +1724269800,WhatsApp,1780,4815 +1724269800,Apple sites,4118,12085 +1724269800,iCloud,17416,45709 +1724269800,Mozilla,6672,15647 +1724269800,Avast,1122,9046 +1724269800,Opera,9017,5952 +1724269800,SSL client,751008,10224196 +1724269800,Ubuntu Update Manager,1561,1430 +1724269800,Microsoft,191560,132982 +1724269800,Mail.Ru,135448,143897 +1724269800,Siri,3630,6002 +1724269800,Yandex,302460,9690734 +1724269800,uTorrent,21671,38963 +1724269800,Office 365,18070,51337 +1724269800,Microsoft Windows Live Services Authentication,6533,16752 +1724269800,Telegram,7904,37636 +1724269800,DNS over HTTPS,7930,25212 +1724269800,__unknown,147813,28999 +1724269800,HTTPS,50738,22108 +1724269800,__unknown,214,225 +1724269800,HTTPS,2690,6188 +1724269800,Apple Maps,2690,6188 +1724269800,DNS over HTTPS,24103,54184 +1724269800,SSL,2808,9189 +1724269800,__unknown,509827,135208 +1724269800,Google,27808,25005 +1724269800,HTTPS,27808,25005 +1724269800,SSL client,27808,25005 +1724269800,__unknown,7460,5063 +1724269800,SSL,11520,5884 +1724269800,HTTPS,46418,388494 +1724269800,APNS,11520,5884 +1724269800,SSL client,38378,25293 +1724269800,Google Play,24530,13446 +1724269800,ICMP,6018,5760 +1724269800,DNS over HTTPS,2328,5963 +1724269800,__unknown,996759,1419724 +1724269800,BitTorrent,463,434 +1724269800,DHCPv6,163,0 +1724269800,Google APIs,40956,21636 +1724269800,Google,49509,164818 +1724269800,BitTorrent tracker,153,0 +1724269800,DNS,30635,0 +1724269800,Gmail,17843,18521 +1724269800,HTTP,3453,3868 +1724269800,NetBIOS-dgm,243,0 +1724269800,NTP,13290,3540 +1724269800,STUN,4704,7488 +1724269800,VKontakte,2803,6096 +1724269800,Odnoklassniki,2609,7499 +1724269800,HTTPS,150480,304332 +1724269800,SSL client,129842,248627 +1724269800,CloudFront,2083,7949 +1724269800,Microsoft CryptoAPI,2219,1982 +1724269800,Casale,1109,5073 +1724269800,ICMP,3643,0 +1724269800,ICMP for IPv6,70,0 +1724269800,Google Sign in,10622,12023 +1724269800,DNS over HTTPS,20521,58730 +1724269800,__unknown,257893,291236 +1724269800,Google APIs,3273,7663 +1724269800,Google,32357,71567 +1724269800,Kaspersky,608,607 +1724269800,DNS,30215,31154 +1724269800,Gmail,26461,29275 +1724269800,HTTP,96305,383723 +1724269800,Launchpad,2560,1984 +1724269800,Microsoft Update,1622,1317 +1724269800,NetBIOS-dgm,250,0 +1724269800,NTP,630,630 +1724269800,STUN,1148,962 +1724269800,Odnoklassniki,1823,6266 +1724269800,Advanced Packaging Tool,35677,297300 +1724269800,HTTPS,214128,779255 +1724269800,Spotify,1838,4674 +1724269800,iCloud,3293,8768 +1724269800,Avast,2138,6507 +1724269800,SSL client,84929,178821 +1724269800,Outbrain,1983,4924 +1724269800,Ubuntu Update Manager,24892,156189 +1724269800,Microsoft,633,7964 +1724269800,Yandex,7957,25603 +1724269800,Ubuntu,10841,141881 +1724269800,Microsoft CryptoAPI,4038,3380 +1724269800,Microsoft WNS,633,7964 +1724269800,Casale,1175,5140 +1724269800,ICMP,3991,0 +1724269800,Telegram,4797,8381 +1724269800,Edge Chromium,5163,16770 +1724269800,DNS over TLS,4382,19080 +1724269800,DNS over HTTPS,20304,72839 +1724270101,DNS over HTTPS,216608,484126 +1724270101,HTTPS,1138725,143220 +1724270101,HTTPS,9089,9761 +1724270101,__unknown,608,870 +1724270101,HTTPS,81569,61755 +1724270101,SSL client,22090,4197 +1724270101,Google Play,22090,4197 +1724270101,__unknown,2936,2780 +1724270101,Google,4410,10083 +1724270101,TwitchTV,6721,7117 +1724270101,HTTPS,65733,139475 +1724270101,Mozilla,2365,4791 +1724270101,Avast,1188,8341 +1724270101,SSL client,37966,103443 +1724270101,Microsoft,16725,46387 +1724270101,Office 365,4239,21297 +1724270101,Battle.net site,2318,5427 +1724270101,__unknown,29380,44046 +1724270101,Bing,3639,6422 +1724270101,Google APIs,9590,26830 +1724270101,Google,5028,5475 +1724270101,MSN,5233,29528 +1724270101,HTTP,4382,8055 +1724270101,Microsoft Update,89640,267890 +1724270101,Skype,4494,94555 +1724270101,Advanced Packaging Tool,1214,1226 +1724270101,HTTPS,934161,4185856 +1724270101,Apple sites,13666,25575 +1724270101,iCloud,14277,26723 +1724270101,Avast,3610,12524 +1724270101,SSL client,536907,2390408 +1724270101,Amazon Web Services,3325,21602 +1724270101,Ubuntu Update Manager,1214,1226 +1724270101,Microsoft,64953,116410 +1724270101,VeriSign,506,2081 +1724270101,Mail.Ru,103274,100279 +1724270101,Yandex,110299,202735 +1724270101,GitHub,32168,1243309 +1724270101,Ubuntu,425,395 +1724270101,Microsoft CryptoAPI,1487,3124 +1724270101,Apple Maps,853,3548 +1724270101,Office 365,6252,28825 +1724270101,Microsoft Windows Live Services Authentication,69289,184900 +1724270101,ICMP,6560,0 +1724270101,Telegram,3635,7948 +1724270101,Edge Chromium,934,3184 +1724270101,DNS over HTTPS,2454,10823 +1724270101,HTTPS,27159,41806 +1724270101,SSL client,27159,41806 +1724270101,Telegram,27159,41806 +1724270101,__unknown,401,120 +1724270101,__unknown,10804,133496 +1724270101,HTTPS,64561,48242 +1724270101,CoAP,3528,2520 +1724270101,__unknown,5067,2624 +1724270101,Gmail,28506,19586 +1724270101,VKontakte,24772,24579 +1724270101,HTTPS,77531,303238 +1724270101,SSL client,53278,44165 +1724270101,Telegram,931,576 +1724270101,DNS over HTTPS,935,4585 +1724270101,__unknown,737354,528841 +1724270101,BitTorrent,310,496 +1724270101,Google APIs,2765,8435 +1724270101,Google,96439,174383 +1724270101,Chrome,1335,869 +1724270101,DNS,9702,0 +1724270101,HTTP,1975,1391 +1724270101,NTP,48100,10110 +1724270101,STUN,984,888 +1724270101,VKontakte,2683,6042 +1724270101,HTTPS,147720,328979 +1724270101,SSL client,102738,195283 +1724270101,Microsoft CryptoAPI,640,522 +1724270101,Sharepoint Online,851,6423 +1724270101,ICMP,57818,120 +1724270101,DNS over HTTPS,11463,34587 +1724270101,__unknown,383387,521198 +1724270101,BitTorrent,153,537 +1724270101,DHCPv6,1141,0 +1724270101,Google APIs,1267,1646 +1724270101,Google,37008,79764 +1724270101,BitTorrent tracker,153,537 +1724270101,DNS,43069,41036 +1724270101,HTTP,73058,200666 +1724270101,Internet Explorer,822,660 +1724270101,Launchpad,2560,1984 +1724270101,NTP,1440,1440 +1724270101,STUN,1148,1036 +1724270101,Odnoklassniki,3699,2508 +1724270101,Steam,5782,107299 +1724270101,Advanced Packaging Tool,26945,24641 +1724270101,HTTPS,382305,4274923 +1724270101,Avast,764,782 +1724270101,SSL client,55754,123534 +1724270101,Ubuntu Update Manager,18323,17213 +1724270101,Microsoft,1326,15963 +1724270101,Yandex,15258,42268 +1724270101,Ubuntu,7906,7284 +1724270101,Microsoft CryptoAPI,1761,1490 +1724270101,Microsoft WNS,1326,15963 +1724270101,ICMP,2397,0 +1724270101,Telegram,2315,950 +1724270101,Edge Chromium,4630,16118 +1724270101,DNS over TLS,2158,9540 +1724270101,DNS over HTTPS,11258,43931 +1724270401,HTTPS,153738,703047 +1724270401,SSL client,153738,703047 +1724270401,Mail.Ru,153738,703047 +1724270401,HTTPS,73426,12265 +1724270401,HTTPS,56269,6815 +1724270401,SSL client,56269,6815 +1724270401,Dropbox Download,56269,6815 +1724270401,__unknown,360,7635 +1724270401,HTTPS,216426,16202236 +1724270401,SSL client,54409,61545 +1724270401,Telegram,54409,61545 +1724270401,__unknown,2357,5986 +1724270401,HTTPS,25923,22617 +1724270401,SSL client,18496,12426 +1724270401,Google Play,18496,12426 +1724270401,__unknown,271679,271969 +1724270401,Dropbox,7901,1535 +1724270401,Google APIs,9463,4000 +1724270401,Skype,2582,8338 +1724270401,HTTPS,125548,190764 +1724270401,Mozilla,4437,9278 +1724270401,SSL client,68441,97066 +1724270401,Microsoft,41740,68548 +1724270401,Battle.net site,2318,5367 +1724270401,DNS over HTTPS,2566,7909 +1724270401,__unknown,94902,599131 +1724270401,Dropbox,6029,2785 +1724270401,Google APIs,17884,33837 +1724270401,Google,39370,21393 +1724270401,MSN,1933,7225 +1724270401,HTTP,2052,3622 +1724270401,iTunes,931,7108 +1724270401,SSL,3553,9496 +1724270401,HTTPS,3344121,8189853 +1724270401,Apple sites,8131,117885 +1724270401,iCloud,1904013,58382 +1724270401,SSL client,3087007,2401918 +1724270401,Amazon Web Services,3163,21292 +1724270401,Microsoft,134564,237715 +1724270401,Mail.Ru,771361,1062533 +1724270401,Yandex,167356,169007 +1724270401,GitHub,17644,609055 +1724270401,Exchange Online,1168,8005 +1724270401,Office 365,5920,29062 +1724270401,Microsoft Windows Live Services Authentication,6336,17188 +1724270401,Google Hangouts,1671,1392 +1724270401,Telegram,3671,7894 +1724270401,Edge Chromium,934,3250 +1724270401,DNS over HTTPS,1139,5393 +1724270401,__unknown,259068,130228 +1724270401,DNS over HTTPS,0,1390 +1724270401,ICMP,2870,0 +1724270401,__unknown,323911,272507 +1724270401,STUN,2214,1998 +1724270401,ICMP,984,0 +1724270401,__unknown,11384,12187 +1724270401,Google,5075,10305 +1724270401,HTTPS,33153,53421 +1724270401,Spotify,2291,9561 +1724270401,SSL client,7366,19866 +1724270401,ICMP,2220,2220 +1724270401,__unknown,675535,928357 +1724270401,BitTorrent,463,496 +1724270401,Google APIs,10330,29238 +1724270401,Google,15682,35013 +1724270401,BitTorrent tracker,153,0 +1724270401,DNS,18799,0 +1724270401,Gmail,15086,23620 +1724270401,NTP,12660,2910 +1724270401,SSL,20788,6128 +1724270401,STUN,984,888 +1724270401,VKontakte,2804,6103 +1724270401,Odnoklassniki,2360,7484 +1724270401,HTTPS,276859,246120 +1724270401,APNS,20788,6128 +1724270401,Apple sites,1845,8731 +1724270401,iCloud,4050,11186 +1724270401,SSL client,78448,147714 +1724270401,Microsoft,983,7253 +1724270401,ICMP,2609,0 +1724270401,Grammarly,2332,7947 +1724270401,DNS over HTTPS,12309,30775 +1724270401,__unknown,341969,330685 +1724270401,DHCPv6,978,0 +1724270401,Google APIs,4804,14689 +1724270401,Google,49228,129342 +1724270401,Chrome,1130,968 +1724270401,DNS,35119,36712 +1724270401,HTTP,84658,105456 +1724270401,Launchpad,3200,2414 +1724270401,Microsoft Update,1869,6671 +1724270401,NetBIOS-dgm,243,0 +1724270401,NTP,180,180 +1724270401,SSL,12624,19077 +1724270401,STUN,1148,888 +1724270401,Advanced Packaging Tool,27194,24525 +1724270401,HTTPS,139692,439517 +1724270401,APNS,10972,4952 +1724270401,Avast,830,848 +1724270401,SSL client,80934,204795 +1724270401,Ubuntu Update Manager,21598,19955 +1724270401,Microsoft,1537,13144 +1724270401,VeriSign,566,2141 +1724270401,Mail.Ru,1204,5358 +1724270401,Yandex,12236,30620 +1724270401,MDNS,364,0 +1724270401,Ubuntu,3903,3679 +1724270401,Microsoft CryptoAPI,5533,11365 +1724270401,Microsoft NCSI,925,974 +1724270401,Microsoft WNS,693,7992 +1724270401,Google Hangouts,1652,14125 +1724270401,ICMP,966,0 +1724270401,Telegram,2766,7563 +1724270401,Edge Chromium,5097,16826 +1724270401,DNS over TLS,2590,11376 +1724270401,DNS over HTTPS,12092,50298 +1724270700,__unknown,43885,102914 +1724270700,HTTPS,221882,204479 +1724270700,Zoom,221882,204479 +1724270700,SSL,12742,20127 +1724270700,HTTPS,1468088,1166085 +1724270700,SSL client,12742,20127 +1724270700,Google Hangouts,12742,20127 +1724270700,Telegram,1468088,1166085 +1724270700,__unknown,549762,1868878 +1724270700,HTTPS,272810,319942 +1724270700,SSL client,256746,45260 +1724270700,Yandex,256746,45260 +1724270700,HTTPS,11979,15344 +1724270700,SSL client,11979,15344 +1724270700,Yandex,11979,15344 +1724270700,__unknown,300944,99155 +1724270700,__unknown,665918,170908 +1724270700,HTTPS,263450,1695333 +1724270700,Telegram,263450,1695333 +1724270700,Windows Live,80854,19279 +1724270700,HTTPS,93169,254302 +1724270700,SSL client,93169,254302 +1724270700,Microsoft,12315,235023 +1724270700,Dropbox,128700,21593 +1724270700,HTTPS,128700,21593 +1724270700,SSL client,128700,21593 +1724270700,__unknown,26168,18216 +1724270700,STUN,1110910,462567 +1724270700,HTTPS,85724,89491 +1724270700,SSL client,21613,18322 +1724270700,Google Play,21613,18322 +1724270700,Zoom,3873,9307 +1724270700,__unknown,89631,33500 +1724270700,Google,43286,54755 +1724270700,Gmail,5973,9923 +1724270700,iTunes,2312,12356 +1724270700,SSL,1700,1638 +1724270700,HTTPS,632916,1820729 +1724270700,Avast,1122,8633 +1724270700,SSL client,201779,1372856 +1724270700,Microsoft,4425,11984 +1724270700,Mail.Ru,90550,1155794 +1724270700,Yandex,48723,104350 +1724270700,Office 365,1809,10657 +1724270700,Google Hangouts,1700,1638 +1724270700,GISMETEO,1879,2766 +1724270700,__unknown,893903,451585 +1724270700,Bing,1989,9329 +1724270700,Google,1491,1657 +1724270700,HTTP,3410,3998 +1724270700,iTunes,3697,56146 +1724270700,Launchpad,796,422 +1724270700,Microsoft Update,29401,6988 +1724270700,Skype,3276,7977 +1724270700,TwitchTV,8542,7602 +1724270700,Advanced Packaging Tool,2088,1774 +1724270700,HTTPS,1189802,15483659 +1724270700,Apple sites,26295,644729 +1724270700,iCloud,20270,51418 +1724270700,Avast,1884,4342 +1724270700,SSL client,827387,3766048 +1724270700,Ubuntu Update Manager,1292,1352 +1724270700,Microsoft,27542,50367 +1724270700,Mail.Ru,372685,818038 +1724270700,Yandex,248531,205682 +1724270700,GitHub,41768,1586025 +1724270700,Microsoft CryptoAPI,585,381 +1724270700,Rambler,14705,14253 +1724270700,Office 365,22085,290402 +1724270700,Battle.net site,1761,3621 +1724270700,Telegram,5799,15344 +1724270700,Grammarly,2050,7853 +1724270700,DNS over HTTPS,4138,19959 +1724270700,HTTPS,147445,76060 +1724270700,ICMP,14100,13740 +1724270700,ICMP,18024,0 +1724270700,HTTPS,34818,14362 +1724270700,__unknown,11041,6076 +1724270700,ICMP,2666,0 +1724270700,__unknown,6295,14528 +1724270700,Google,21214,30916 +1724270700,HTTPS,27456,38294 +1724270700,SSL client,27456,38294 +1724270700,Siri,6242,7378 +1724270700,__unknown,38033,62366 +1724270700,Google,2857,12869 +1724270700,HTTPS,26371,61276 +1724270700,Apple sites,9501,14157 +1724270700,SSL client,12358,27026 +1724270700,ICMP,3546,3180 +1724270700,CoAP,1960,1440 +1724270700,__unknown,315530,310102 +1724270700,BitTorrent,310,434 +1724270700,DHCPv6,163,0 +1724270700,Google APIs,3934,9898 +1724270700,Google,8685,25804 +1724270700,DNS,12288,0 +1724270700,HTTP,761,1009 +1724270700,NetBIOS-dgm,250,0 +1724270700,NTP,12570,2820 +1724270700,STUN,984,888 +1724270700,VKontakte,2743,6042 +1724270700,Odnoklassniki,2609,7560 +1724270700,HTTPS,66166,169985 +1724270700,SSL client,20241,57192 +1724270700,ICMP,8162,0 +1724270700,ICMP for IPv6,70,0 +1724270700,Telegram,1075,596 +1724270700,Grammarly,2270,7888 +1724270700,DNS over HTTPS,15355,40430 +1724270700,__unknown,547293,1209391 +1724270700,BitTorrent,153,0 +1724270700,Google Drive,9148,10630 +1724270700,Google,57158,216934 +1724270700,BitTorrent tracker,153,0 +1724270700,Chrome,27046,15731 +1724270700,DNS,41806,43681 +1724270700,Firefox,807,1129 +1724270700,HTTP,119358,125725 +1724270700,Launchpad,2068,1488 +1724270700,Microsoft Update,3355,2985 +1724270700,NTP,90,90 +1724270700,STUN,3008,4336 +1724270700,Odnoklassniki,3759,2794 +1724270700,Advanced Packaging Tool,28503,25292 +1724270700,HTTPS,572239,11537991 +1724270700,iCloud,5479,22637 +1724270700,Mozilla,3676,6087 +1724270700,Avast,1146,1173 +1724270700,SSL client,90008,287922 +1724270700,Ubuntu Update Manager,20597,18366 +1724270700,Yandex,12296,34216 +1724270700,Ubuntu,7113,6817 +1724270700,Microsoft CryptoAPI,4820,4042 +1724270700,Google Play,842,5156 +1724270700,ICMP,1590,0 +1724270700,Telegram,3205,1144 +1724270700,Edge Chromium,8325,24959 +1724270700,DNS over HTTPS,16444,55568 +1724271000,HTTPS,27522,49350 +1724271000,SSL client,27522,49350 +1724271000,Yandex,27522,49350 +1724271000,__unknown,35904,21180 +1724271000,__unknown,927530,411060 +1724271000,Google,53165,66291 +1724271000,HTTPS,53165,66291 +1724271000,SSL client,53165,66291 +1724271000,DNS over HTTPS,236847,527920 +1724271000,ICMP,14350,0 +1724271000,HTTPS,4296,6540 +1724271000,SSL client,4296,6540 +1724271000,Sharepoint Online,4296,6540 +1724271000,__unknown,4186,3812 +1724271000,__unknown,93280,34694 +1724271000,HTTPS,5436,4665 +1724271000,Google,19692,21522 +1724271000,HTTPS,161786,12391732 +1724271000,SSL client,19692,21522 +1724271000,DNS over HTTPS,55790,141362 +1724271000,__unknown,68475,54664 +1724271000,MSN,2166,8081 +1724271000,VKontakte,6174,9798 +1724271000,HTTPS,173987,249766 +1724271000,SSL client,61761,96229 +1724271000,Microsoft,45755,65411 +1724271000,Mail.Ru,6297,5840 +1724271000,Apple Maps,2288,30824 +1724271000,Office 365,1369,7099 +1724271000,Telegram,71353,83995 +1724271000,DNS over HTTPS,6617,19860 +1724271000,__unknown,6625845,1968167 +1724271000,Dropbox,4518,2923 +1724271000,Eset,3217,1258 +1724271000,Google APIs,3097,7108 +1724271000,Google,197305,122259 +1724271000,MSN,3206,9502 +1724271000,Android browser,842,2476 +1724271000,HTTP,5198,4341 +1724271000,iTunes,11807,47330 +1724271000,Steam,11436,22740 +1724271000,HTTPS,926893,2199125 +1724271000,Apple sites,2013,17372 +1724271000,iCloud,11599,17405 +1724271000,SSL client,718789,1862734 +1724271000,CloudFront,2265,1747 +1724271000,Microsoft,297752,95166 +1724271000,Mail.Ru,74089,82060 +1724271000,Yandex,39446,88744 +1724271000,GitHub,40334,1281115 +1724271000,Nvidia,2102,4856 +1724271000,Microsoft NCSI,394,421 +1724271000,Exchange Online,2660,12934 +1724271000,Office 365,6282,22254 +1724271000,Microsoft Windows Live Services Authentication,6425,16246 +1724271000,Telegram,5927,15614 +1724271000,GISMETEO,842,2476 +1724271000,Xiaomi,1278,4564 +1724271000,DNS over HTTPS,8972,32652 +1724271000,Discord,1175,6409 +1724271000,__unknown,10812,9202 +1724271000,__unknown,188,229 +1724271000,__unknown,124274,120369 +1724271000,HTTPS,2756,7156 +1724271000,Apple Maps,2756,7156 +1724271000,Google,30454,45224 +1724271000,HTTPS,33755,50684 +1724271000,SSL client,30454,45224 +1724271000,__unknown,4848,4977 +1724271000,HTTPS,14277,17791 +1724271000,ICMP,10914,3660 +1724271000,__unknown,576772,805421 +1724271000,BITS,3909,29062 +1724271000,BitTorrent,463,434 +1724271000,Google APIs,3269,8609 +1724271000,Google,21806,53845 +1724271000,BitTorrent tracker,153,0 +1724271000,DNS,24426,0 +1724271000,Gmail,7028,4980 +1724271000,HTTP,6383,31536 +1724271000,Microsoft Update,1292,1007 +1724271000,NTP,450,450 +1724271000,STUN,2844,4188 +1724271000,HTTPS,68480,122045 +1724271000,SSL client,39389,77827 +1724271000,Yandex,1071,5914 +1724271000,Microsoft CryptoAPI,2474,2474 +1724271000,ICMP,7602,0 +1724271000,Telegram,779,580 +1724271000,Google Sign in,6215,4479 +1724271000,DNS over HTTPS,13089,36916 +1724271000,__unknown,319115,1914266 +1724271000,DHCPv6,1141,0 +1724271000,Google APIs,5585,16654 +1724271000,Google,228015,3576485 +1724271000,Chrome,6484,3886 +1724271000,DNS,44089,38720 +1724271000,Gmail,6078,37356 +1724271000,HTTP,96570,141279 +1724271000,Internet Explorer,6283,2100 +1724271000,Launchpad,3200,2480 +1724271000,NTP,180,180 +1724271000,Outlook,663,365 +1724271000,SSL,855,7033 +1724271000,STUN,2698,4336 +1724271000,Odnoklassniki,2729,7499 +1724271000,Steam,1634,36989 +1724271000,Advanced Packaging Tool,32320,29238 +1724271000,HTTPS,418881,5795656 +1724271000,Mozilla,2058,4535 +1724271000,Avast,830,848 +1724271000,Opera,1926,4638 +1724271000,SSL client,271573,3708811 +1724271000,Ubuntu Update Manager,23711,22270 +1724271000,Mail.Ru,1770,5043 +1724271000,Yandex,26620,46413 +1724271000,Ubuntu,5834,4945 +1724271000,Microsoft CryptoAPI,3522,3018 +1724271000,Google Hangouts,855,7033 +1724271000,ICMP,1733,0 +1724271000,Edge Chromium,6684,20811 +1724271000,DNS over TLS,2224,9540 +1724271000,DNS over HTTPS,9342,26046 +1724271300,__unknown,32810,44191 +1724271300,HTTPS,499657,150803 +1724271300,__unknown,1484,2060 +1724271300,HTTPS,59257,3877763 +1724271300,HTTPS,11159,14126 +1724271300,__unknown,403,3450 +1724271300,HTTP,1268,12694 +1724271300,HTTPS,43927,5240 +1724271300,SSL client,43927,5240 +1724271300,Dropbox Download,43927,5240 +1724271300,HTTPS,21557,37701 +1724271300,SSL client,4367,18044 +1724271300,Google Play,4367,18044 +1724271300,__unknown,9310,6218 +1724271300,Google,28551,35953 +1724271300,Google Analytics,5711,12164 +1724271300,SSL,59632,16535 +1724271300,TeamViewer,1508,8898 +1724271300,VKontakte,16080,27967 +1724271300,HTTPS,528814,2047195 +1724271300,APNS,59632,16535 +1724271300,Mozilla,2361,4799 +1724271300,Avast,1122,8331 +1724271300,SSL client,165366,222179 +1724271300,Microsoft,11552,32318 +1724271300,Yandex,37136,65547 +1724271300,Google Play,1713,9667 +1724271300,Telegram,85941,100814 +1724271300,DNS over HTTPS,3220,28843 +1724271300,__unknown,271290,271856 +1724271300,Dropbox,1845,1894 +1724271300,Google APIs,3000,7105 +1724271300,Google,2013323,913199 +1724271300,MSN,2069,11721 +1724271300,HTTP,5801,106232 +1724271300,Microsoft Update,1197,1443 +1724271300,Skype,3303,7945 +1724271300,Advanced Packaging Tool,1274,1193 +1724271300,HTTPS,2737370,3397478 +1724271300,Apple sites,3786,14825 +1724271300,iCloud,25111,50939 +1724271300,Mozilla,5699,58304 +1724271300,SSL client,2525649,2696982 +1724271300,Ubuntu Update Manager,1274,1193 +1724271300,Microsoft,152517,101351 +1724271300,Mail.Ru,147459,165588 +1724271300,Yandex,91695,254349 +1724271300,GitHub,23464,805633 +1724271300,Microsoft CryptoAPI,1197,1443 +1724271300,Office 365,7325,189357 +1724271300,Microsoft Windows Live Services Authentication,45053,114772 +1724271300,Telegram,82061,112515 +1724271300,Edge Chromium,467,1239 +1724271300,DNS over HTTPS,4754,20168 +1724271300,HTTPS,80658,38957 +1724271300,ICMP,5986,0 +1724271300,__unknown,430,450 +1724271300,__unknown,51814,33345 +1724271300,Windows Live,4192,26116 +1724271300,HTTPS,374547,325545 +1724271300,SSL client,12567,41098 +1724271300,DNS over HTTPS,8375,14982 +1724271300,__unknown,4852,20982 +1724271300,HTTPS,5783,10264 +1724271300,__unknown,1948,3854 +1724271300,HTTPS,10302,20020 +1724271300,ICMP,16728,0 +1724271300,DNS over HTTPS,5009,13524 +1724271300,__unknown,511258,554221 +1724271300,BitTorrent,310,496 +1724271300,Google,38128,105150 +1724271300,Chrome,18872,10746 +1724271300,DNS,13099,0 +1724271300,Gmail,281385,130299 +1724271300,HTTP,20808,12411 +1724271300,NetBIOS-dgm,243,0 +1724271300,NTP,26580,7080 +1724271300,STUN,984,888 +1724271300,HTTPS,387645,423325 +1724271300,SSL client,324651,255520 +1724271300,Weather.com,5138,20071 +1724271300,Microsoft CryptoAPI,1936,1665 +1724271300,ICMP,35873,0 +1724271300,DNS over HTTPS,14223,41185 +1724271300,__unknown,434079,633277 +1724271300,BitTorrent,153,537 +1724271300,DHCPv6,978,0 +1724271300,Google APIs,4760,13494 +1724271300,Google,47056,104243 +1724271300,BitTorrent tracker,153,537 +1724271300,Chrome,24913,14448 +1724271300,DNS,48085,45836 +1724271300,Firefox,3245,3576 +1724271300,HTTP,86657,219671 +1724271300,Launchpad,3200,2480 +1724271300,Microsoft Update,642,503 +1724271300,NetBIOS-dgm,250,0 +1724271300,NTP,1530,1530 +1724271300,STUN,328,296 +1724271300,Odnoklassniki,2609,7424 +1724271300,Advanced Packaging Tool,30059,158170 +1724271300,HTTPS,350034,4734840 +1724271300,Mozilla,2758,1739 +1724271300,Avast,1146,1173 +1724271300,SSL client,73478,156056 +1724271300,Ubuntu Update Manager,24463,153474 +1724271300,Yandex,7440,20907 +1724271300,Ubuntu,3749,3661 +1724271300,Microsoft CryptoAPI,1229,1006 +1724271300,ICMP,2236,120 +1724271300,ICMP for IPv6,70,0 +1724271300,Telegram,757,186 +1724271300,Google Sign in,6207,4467 +1724271300,Edge Chromium,4109,14055 +1724271300,Grammarly,2261,7912 +1724271300,DNS over HTTPS,6546,20552 +1724271600,__unknown,61790,74545 +1724271600,__unknown,35062,33478 +1724271600,Google,703189,388080 +1724271600,HTTPS,703189,388080 +1724271600,SSL client,703189,388080 +1724271600,HTTPS,2795,1624 +1724271600,Dropbox,113246,19344 +1724271600,Skype,11521,24797 +1724271600,HTTPS,197947,218008 +1724271600,SSL client,186494,207920 +1724271600,Microsoft,8886,119142 +1724271600,Google Play,49216,37079 +1724271600,Microsoft Teams,3625,7558 +1724271600,Google APIs,26964,20939 +1724271600,HTTPS,48940,43486 +1724271600,SSL client,26964,20939 +1724271600,__unknown,5745,2836 +1724271600,Google,146744,151143 +1724271600,MSN,1049,5860 +1724271600,HTTPS,228782,713409 +1724271600,Avast,1122,8862 +1724271600,SSL client,179881,259520 +1724271600,Microsoft,10354,31819 +1724271600,Yandex,16669,41897 +1724271600,Office 365,1749,10657 +1724271600,GISMETEO,2194,9282 +1724271600,DNS over HTTPS,3666,11677 +1724271600,__unknown,71475,32639 +1724271600,Bing,3579,6542 +1724271600,Dropbox,9298,227463 +1724271600,HTTP,5138,147616 +1724271600,Skype,3189,7774 +1724271600,VKontakte,2297,4933 +1724271600,HTTPS,758848,1230625 +1724271600,Apple sites,15484,15837 +1724271600,iCloud,19589,28219 +1724271600,Avast,1122,8347 +1724271600,Opera,9691,6012 +1724271600,SSL client,506946,943064 +1724271600,Microsoft,50551,398412 +1724271600,Mail.Ru,70201,67767 +1724271600,Yandex,37279,55322 +1724271600,Ubuntu,784,601 +1724271600,Microsoft WNS,573,7966 +1724271600,uTorrent,21675,39107 +1724271600,Office 365,8905,32613 +1724271600,Sharepoint Online,1253,4667 +1724271600,Microsoft Windows Live Services Authentication,14823,37473 +1724271600,Telegram,7617,32728 +1724271600,Xiaomi,248274,16554 +1724271600,DNS over HTTPS,5693,24294 +1724271600,DNS over HTTPS,21473,56377 +1724271600,HTTPS,8761,14797 +1724271600,HTTPS,24010,10347 +1724271600,__unknown,9259970,455097 +1724271600,DNS over HTTPS,11709,27956 +1724271600,__unknown,10983,104742 +1724271600,Google,92629,61652 +1724271600,HTTPS,109363,70479 +1724271600,SSL client,92629,61652 +1724271600,ICMP,3690,0 +1724271600,Telegram,1340,1080 +1724271600,__unknown,569900,472687 +1724271600,BitTorrent,463,496 +1724271600,DHCPv6,163,0 +1724271600,Google APIs,57054,19225 +1724271600,Google,23605,49922 +1724271600,BitTorrent tracker,153,0 +1724271600,DNS,23913,0 +1724271600,Gmail,22447,58574 +1724271600,HTTP,595,951 +1724271600,NTP,25860,6450 +1724271600,STUN,1698,1258 +1724271600,HTTPS,196324,260637 +1724271600,Mozilla,2615,1712 +1724271600,SSL client,132729,136895 +1724271600,Microsoft CryptoAPI,595,951 +1724271600,Google Play,20787,3285 +1724271600,ICMP,7563,3060 +1724271600,Google Sign in,6221,4177 +1724271600,DNS over HTTPS,4768,15705 +1724271600,__unknown,314301,269846 +1724271600,Google APIs,5174,16113 +1724271600,Google,40113,143840 +1724271600,Chrome,2807,1698 +1724271600,DNS,38096,32890 +1724271600,Gmail,6330,8134 +1724271600,HTTP,79610,96459 +1724271600,Launchpad,3200,2480 +1724271600,NTP,1080,1080 +1724271600,STUN,10806,3300 +1724271600,VKontakte,2296,4932 +1724271600,Advanced Packaging Tool,27875,25605 +1724271600,HTTPS,286284,5235659 +1724271600,Pinterest,853,5439 +1724271600,Apple sites,1657,17219 +1724271600,iCloud,3438,8503 +1724271600,Mozilla,3551,7247 +1724271600,Avast,1212,1239 +1724271600,SSL client,67588,225600 +1724271600,Ubuntu Update Manager,19739,18639 +1724271600,Yandex,4952,19147 +1724271600,Ubuntu,6636,6322 +1724271600,Microsoft CryptoAPI,3059,2500 +1724271600,ICMP,1472,0 +1724271600,Telegram,1986,617 +1724271600,Edge Chromium,6744,20848 +1724271600,DNS over TLS,1938,9539 +1724271600,DNS over HTTPS,13575,55773 +1724271900,__unknown,6951,13882 +1724271900,HTTPS,26754,9558 +1724271900,SSL client,26754,9558 +1724271900,Google Play,26754,9558 +1724271900,HTTPS,739711,356326 +1724271900,SSL client,420620,115460 +1724271900,Google Play,420620,115460 +1724271900,Telegram,182180,195943 +1724271900,__unknown,30389,122717 +1724271900,Dropbox,9658,219375 +1724271900,Google APIs,3425,6899 +1724271900,HTTPS,166382,387462 +1724271900,SSL client,104346,319789 +1724271900,Microsoft,16145,36708 +1724271900,Mail.Ru,5065,16656 +1724271900,Google Play,66118,23056 +1724271900,Office 365,1801,7788 +1724271900,GISMETEO,2134,9307 +1724271900,__unknown,123053,105035 +1724271900,Bing,5392,15692 +1724271900,Dropbox,2701,1343 +1724271900,Google,8216,7943 +1724271900,MSN,3389,9506 +1724271900,HTTP,6376,4551 +1724271900,Microsoft Update,600,447 +1724271900,VKontakte,6917,13255 +1724271900,Steam,16044,24472 +1724271900,Advanced Packaging Tool,1681,958 +1724271900,HTTPS,473798,2258003 +1724271900,WhatsApp,3529,9281 +1724271900,SSL client,361844,796017 +1724271900,CloudFront,1509,1062 +1724271900,Ubuntu Update Manager,1214,836 +1724271900,Microsoft,137891,403292 +1724271900,Mail.Ru,102632,121308 +1724271900,Yandex,42916,137022 +1724271900,Ubuntu,467,122 +1724271900,Microsoft CryptoAPI,600,447 +1724271900,Office 365,6808,12234 +1724271900,Microsoft Windows Live Services Authentication,14932,38967 +1724271900,Telegram,2608,7953 +1724271900,Grammarly,12497,9921 +1724271900,DNS over HTTPS,3005,15371 +1724271900,__unknown,302529,108185 +1724271900,HTTP,1704,1224 +1724271900,ICMP,3840,3780 +1724271900,__unknown,8719,9554 +1724271900,HTTPS,30947,18655 +1724271900,__unknown,8314,65010 +1724271900,HTTPS,29148,27571 +1724271900,Telegram,5999,52233 +1724271900,__unknown,948631,355758 +1724271900,BitTorrent,310,496 +1724271900,DHCPv6,978,0 +1724271900,Google,28342,61839 +1724271900,DNS,11334,66 +1724271900,HTTP,1780,8933 +1724271900,NetBIOS-dgm,243,0 +1724271900,NTP,36074,9540 +1724271900,STUN,3588,5150 +1724271900,HTTPS,965749,312964 +1724271900,SSL client,33451,89071 +1724271900,Microsoft,633,7967 +1724271900,Microsoft CryptoAPI,1147,966 +1724271900,Microsoft WNS,633,7967 +1724271900,Google Play,1971,17864 +1724271900,ICMP,61883,0 +1724271900,DNS over HTTPS,4550,7805 +1724271900,Firefox Update,890,4418 +1724271900,__unknown,397600,1142461 +1724271900,BitTorrent,153,198 +1724271900,DHCPv6,163,0 +1724271900,Google APIs,1904,7533 +1724271900,Google,36569,117666 +1724271900,BitTorrent tracker,153,198 +1724271900,DNS,40021,37916 +1724271900,HTTP,173853,9557417 +1724271900,Internet Explorer,762,660 +1724271900,Launchpad,3200,2480 +1724271900,Microsoft Update,646,506 +1724271900,NTP,1980,2070 +1724271900,STUN,4970,0 +1724271900,VKontakte,2293,4932 +1724271900,Steam,1574,21434 +1724271900,Advanced Packaging Tool,104566,6354484 +1724271900,HTTPS,125965,434345 +1724271900,iCloud,4933,10989 +1724271900,Avast,896,914 +1724271900,SSL client,54485,164687 +1724271900,Ubuntu Update Manager,96586,6347590 +1724271900,Microsoft,35975,3105170 +1724271900,Yandex,2870,6490 +1724271900,Ubuntu,6480,6246 +1724271900,Microsoft CryptoAPI,1233,1009 +1724271900,ICMP,2161,0 +1724271900,Telegram,1557,1757 +1724271900,Edge Chromium,4677,12223 +1724271900,Grammarly,2242,7854 +1724271900,DNS over HTTPS,15873,58712 +1724272200,HTTPS,5659,8485 +1724272200,SSL client,5659,8485 +1724272200,Sharepoint Online,5659,8485 +1724272200,HTTPS,105109,40089 +1724272200,HTTPS,207333,78180 +1724272200,HTTPS,3452,6201 +1724272200,SSL client,3452,6201 +1724272200,Sharepoint Online,3452,6201 +1724272200,HTTPS,12219,8535 +1724272200,HTTPS,194369,150148 +1724272200,HTTPS,46410,9582 +1724272200,SSL client,42433,5127 +1724272200,Dropbox Download,42433,5127 +1724272200,__unknown,24010,19211 +1724272200,Google APIs,3462,12868 +1724272200,HTTPS,33010,99389 +1724272200,SSL client,4968,18779 +1724272200,Google Play,1506,5911 +1724272200,__unknown,11670,5270 +1724272200,Google APIs,3764,9230 +1724272200,Gmail,14737,38186 +1724272200,HTTP,2910,155605 +1724272200,TeamViewer,1559,9000 +1724272200,VKontakte,11970,6060 +1724272200,Advanced Packaging Tool,2910,155605 +1724272200,HTTPS,289581,2055700 +1724272200,SSL client,64553,146496 +1724272200,Microsoft,2104,7325 +1724272200,Mail.Ru,18963,47324 +1724272200,Yandex,2799,9821 +1724272200,Office 365,1741,7788 +1724272200,Sway,1753,8441 +1724272200,_err_4655,5163,3321 +1724272200,__unknown,502882,947972 +1724272200,Bing,3746,6422 +1724272200,Google APIs,5902,9908 +1724272200,Google,387314,408159 +1724272200,HTTP,887,2110 +1724272200,SSL,1527,1392 +1724272200,VKontakte,1297,4619 +1724272200,Steam,8833,17660 +1724272200,HTTPS,815130,2810228 +1724272200,WhatsApp,4323,5432 +1724272200,Apple sites,16019,11169 +1724272200,iCloud,3671,8358 +1724272200,SSL client,702298,906915 +1724272200,Microsoft,78459,104233 +1724272200,Mail.Ru,94673,101473 +1724272200,Yandex,57832,145061 +1724272200,Office 365,10027,55076 +1724272200,Microsoft Windows Live Services Authentication,13975,21219 +1724272200,Google Hangouts,1527,1392 +1724272200,Office Mobile,14004,8948 +1724272200,Telegram,7941,32544 +1724272200,DNS over HTTPS,5870,19095 +1724272200,_err_4655,5019,3218 +1724272200,ICMP,10004,0 +1724272200,SSL,2842,9189 +1724272200,CoAP,4508,3312 +1724272200,Google,14584,15805 +1724272200,HTTPS,14584,15805 +1724272200,SSL client,14584,15805 +1724272200,__unknown,4769,2976 +1724272200,HTTPS,78707,43356 +1724272200,SSL client,12494,8301 +1724272200,Microsoft,12494,8301 +1724272200,__unknown,2091,1104 +1724272200,Google,20708,20066 +1724272200,Gmail,14347,11800 +1724272200,HTTPS,49820,73661 +1724272200,SSL client,35055,31866 +1724272200,ICMP,4986,4860 +1724272200,Telegram,963,488 +1724272200,__unknown,287690,306134 +1724272200,BitTorrent,463,496 +1724272200,Google APIs,12326,33762 +1724272200,Google,23570,82811 +1724272200,BitTorrent tracker,153,0 +1724272200,DNS,16579,0 +1724272200,Gmail,15638,19765 +1724272200,HTTP,3842,35415 +1724272200,Microsoft Update,946,887 +1724272200,NetBIOS-dgm,250,0 +1724272200,NTP,1260,1260 +1724272200,STUN,1790,1850 +1724272200,HTTPS,110828,283358 +1724272200,SSL client,51534,136338 +1724272200,Microsoft,2330,32387 +1724272200,VeriSign,566,2141 +1724272200,Microsoft CryptoAPI,1512,3028 +1724272200,ICMP,4111,60 +1724272200,Telegram,1147,560 +1724272200,DNS over HTTPS,4834,15704 +1724272200,__unknown,194864,191021 +1724272200,DHCPv6,978,0 +1724272200,Google,43861,90563 +1724272200,DNS,43159,39273 +1724272200,HTTP,76893,1030685 +1724272200,Launchpad,3200,2190 +1724272200,Microsoft Update,1964,1782 +1724272200,Mobile Safari,485,680 +1724272200,NTP,15180,5430 +1724272200,Skype,1149,6910 +1724272200,SSL,855,7032 +1724272200,STUN,1860,3300 +1724272200,VKontakte,4591,9865 +1724272200,Odnoklassniki,2420,6931 +1724272200,Advanced Packaging Tool,53782,999494 +1724272200,HTTPS,155820,393674 +1724272200,Avast,1212,1239 +1724272200,SSL client,67523,157530 +1724272200,Ubuntu Update Manager,47599,994618 +1724272200,Microsoft,1450,1940 +1724272200,Yandex,10097,21654 +1724272200,Ubuntu,4258,4069 +1724272200,Microsoft CryptoAPI,2551,2285 +1724272200,Google Hangouts,855,7032 +1724272200,ICMP,1702,0 +1724272200,Telegram,4508,8156 +1724272200,Edge Chromium,1581,4095 +1724272200,DNS over TLS,2302,9640 +1724272200,DNS over HTTPS,15538,62016 +1724272200,CoAP,191,231 +1724272500,__unknown,86207,90372 +1724272500,__unknown,218151,140558 +1724272500,HTTPS,60113,113218 +1724272500,DNS over HTTPS,74471,160415 +1724272500,__unknown,1162,1760 +1724272500,HTTPS,142103,25409 +1724272500,SSL client,21838,4350 +1724272500,Google Play,21838,4350 +1724272500,__unknown,43394,45002 +1724272500,HTTPS,48418,40091 +1724272500,SSL client,21447,4521 +1724272500,Google Play,21447,4521 +1724272500,__unknown,30605,29929 +1724272500,Google,10435,17587 +1724272500,HTTPS,111642,147256 +1724272500,Mozilla,2087,4639 +1724272500,SSL client,63082,80099 +1724272500,Microsoft,16511,15311 +1724272500,Mail.Ru,8787,6604 +1724272500,Yandex,12428,8879 +1724272500,Office 365,12834,27079 +1724272500,__unknown,83495,183749 +1724272500,Dropbox,2995,1283 +1724272500,Google,4169,8381 +1724272500,HTTP,1648795,42759540 +1724272500,Microsoft Update,55323,53855 +1724272500,Advanced Packaging Tool,1852,1720 +1724272500,HTTPS,507446,6309825 +1724272500,WhatsApp,13311,636453 +1724272500,Apple sites,2632,10078 +1724272500,Mozilla,2361,4739 +1724272500,SSL client,437456,5313323 +1724272500,Ubuntu Update Manager,1283,1220 +1724272500,Microsoft,32046,58915 +1724272500,Mail.Ru,95436,125179 +1724272500,Yandex,225878,4982633 +1724272500,Ubuntu,569,500 +1724272500,Office 365,1689,7788 +1724272500,Microsoft Windows Live Services Authentication,7670,11629 +1724272500,Telegram,3759,8014 +1724272500,Edge Chromium,994,3370 +1724272500,DNS over HTTPS,80367,174793 +1724272500,Firefox Update,1987,4829 +1724272500,Discord,1175,6524 +1724272500,DeepL Translator,4622,39496 +1724272500,STUN,6642,6068 +1724272500,HTTPS,52346,68851 +1724272500,SSL client,52346,68851 +1724272500,Telegram,52346,68851 +1724272500,HTTPS,2341,34927 +1724272500,Spotify,2341,34927 +1724272500,SSL client,2341,34927 +1724272500,__unknown,3187,2097 +1724272500,__unknown,1706,1068 +1724272500,HTTPS,5945,8394 +1724272500,ICMP,1500,1500 +1724272500,__unknown,353343,336598 +1724272500,BitTorrent,310,496 +1724272500,DHCPv6,163,0 +1724272500,Google APIs,2873,8885 +1724272500,Google,25092,70511 +1724272500,Google Translate,5121,10625 +1724272500,DNS,14218,300 +1724272500,HTTP,1317,1269 +1724272500,Microsoft Update,1317,1269 +1724272500,NTP,25050,5550 +1724272500,STUN,2844,4188 +1724272500,HTTPS,65718,191617 +1724272500,SSL client,37526,102857 +1724272500,Microsoft CryptoAPI,1317,1269 +1724272500,ICMP,3281,600 +1724272500,Grammarly,2252,7887 +1724272500,DNS over HTTPS,2188,4949 +1724272500,__unknown,425169,7489208 +1724272500,BitTorrent,153,537 +1724272500,DHCPv6,978,0 +1724272500,Google,56163,109186 +1724272500,QQ,414,1581 +1724272500,BitTorrent tracker,153,537 +1724272500,DNS,47882,46087 +1724272500,HTTP,116658,1631321 +1724272500,iTunes,3709,18620 +1724272500,Launchpad,2560,1984 +1724272500,Microsoft Update,646,506 +1724272500,NetBIOS-dgm,243,0 +1724272500,NTP,13200,3450 +1724272500,VKontakte,2294,5064 +1724272500,Advanced Packaging Tool,68846,1560472 +1724272500,HTTPS,146083,410696 +1724272500,iCloud,6151,15369 +1724272500,Avast,1212,1239 +1724272500,SSL client,82583,187630 +1724272500,Ubuntu Update Manager,61554,1554238 +1724272500,Microsoft,693,7993 +1724272500,Yandex,5389,23673 +1724272500,Ubuntu,6498,6086 +1724272500,Microsoft CryptoAPI,2129,1973 +1724272500,Microsoft WNS,693,7993 +1724272500,ICMP,2448,60 +1724272500,Telegram,3250,2010 +1724272500,Google Sign in,6207,3997 +1724272500,Edge Chromium,5103,16194 +1724272500,DNS over TLS,2314,13937 +1724272500,DNS over HTTPS,15995,65635 +1724272799,HTTPS,204378,72527 +1724272799,HTTPS,7689,11004 +1724272799,SSL client,7689,11004 +1724272799,DNS over HTTPS,7689,11004 +1724272799,Windows Live,9146,9798 +1724272799,Skype,3977,8741 +1724272799,HTTPS,29510,254215 +1724272799,SSL client,29510,254215 +1724272799,Microsoft,13492,228418 +1724272799,Microsoft Teams,2895,7258 +1724272799,__unknown,4680,6859 +1724272799,HTTPS,53877,61545 +1724272799,SSL client,53877,61545 +1724272799,Telegram,53877,61545 +1724272799,__unknown,39114,39212 +1724272799,HTTPS,78466,7907817 +1724272799,__unknown,13248,10795 +1724272799,HTTPS,268148,10879242 +1724272799,Avast,1122,9465 +1724272799,SSL client,241703,10853777 +1724272799,Microsoft,18792,19269 +1724272799,Office 365,1741,7788 +1724272799,GISMETEO,2194,9307 +1724272799,Grammarly,2602,7001 +1724272799,DNS over HTTPS,4067,11264 +1724272799,Firefox Update,215252,10800947 +1724272799,__unknown,53496,57642 +1724272799,Dropbox,4061,7570 +1724272799,Google,83890,55460 +1724272799,Gmail,2889,13565 +1724272799,HTTP,4478,3140 +1724272799,iTunes,1093,6097 +1724272799,Launchpad,640,496 +1724272799,Microsoft Update,642,501 +1724272799,Skype,6572,15779 +1724272799,VKontakte,2236,4874 +1724272799,Steam,17319,30104 +1724272799,Advanced Packaging Tool,2201,1926 +1724272799,HTTPS,757574,6656938 +1724272799,WhatsApp,3224,6931 +1724272799,Apple sites,27595,23804 +1724272799,iCloud,36396,57132 +1724272799,Mozilla,1905,5266 +1724272799,SSL client,669871,6473751 +1724272799,CloudFront,2265,1747 +1724272799,Ubuntu Update Manager,1561,1430 +1724272799,Microsoft,59878,118101 +1724272799,Mail.Ru,123943,139574 +1724272799,Yandex,271491,5909021 +1724272799,Microsoft CryptoAPI,642,501 +1724272799,Office 365,3016,8524 +1724272799,Microsoft Windows Live Services Authentication,16289,23014 +1724272799,Telegram,3731,8014 +1724272799,Google Inbox,6106,44476 +1724272799,DNS over TLS,859,4770 +1724272799,DNS over HTTPS,14444,49623 +1724272799,__unknown,1580,12219 +1724272799,__unknown,188,229 +1724272799,ICMP,5248,0 +1724272799,__unknown,103926,99501 +1724272799,HTTPS,7116,11242 +1724272799,__unknown,10363,16518 +1724272799,__unknown,15498,10261 +1724272799,HTTPS,8168,11844 +1724272799,ICMP,902,0 +1724272799,Telegram,2270,1524 +1724272799,CoAP,2352,1656 +1724272799,__unknown,349441,733540 +1724272799,BitTorrent,463,496 +1724272799,DHCPv6,163,0 +1724272799,Google APIs,33304,8670 +1724272799,Google Drive,25344,43716 +1724272799,Google,29325,69218 +1724272799,BitTorrent tracker,153,0 +1724272799,DNS,22100,0 +1724272799,Gmail,12775,11061 +1724272799,HTTP,2346,3649 +1724272799,Microsoft Update,606,502 +1724272799,NTP,1080,1080 +1724272799,STUN,4704,7488 +1724272799,HTTPS,152361,258423 +1724272799,Apple sites,1612,7914 +1724272799,Mozilla,1876,4611 +1724272799,SSL client,115371,178056 +1724272799,Microsoft,922,7532 +1724272799,VeriSign,566,2141 +1724272799,Microsoft CryptoAPI,2346,3649 +1724272799,Google Play,3478,5731 +1724272799,ICMP,13431,0 +1724272799,Grammarly,2250,7888 +1724272799,DNS over HTTPS,12871,34851 +1724272799,Google Meet,4485,11715 +1724272799,__unknown,339306,606657 +1724272799,Bing,4718,7755 +1724272799,Google APIs,3689,8350 +1724272799,Google,59307,116990 +1724272799,Chrome,1970,34410 +1724272799,DNS,45075,40220 +1724272799,Gmail,19542,26248 +1724272799,HTTP,98493,161980 +1724272799,Internet Explorer,762,660 +1724272799,Launchpad,3200,2480 +1724272799,Microsoft Update,1288,1004 +1724272799,NetBIOS-dgm,250,0 +1724272799,NTP,1080,1080 +1724272799,SSL,797,7092 +1724272799,STUN,1860,3300 +1724272799,VKontakte,2206,4949 +1724272799,Odnoklassniki,3759,2733 +1724272799,Advanced Packaging Tool,27358,24982 +1724272799,HTTPS,221105,1120494 +1724272799,Avast,764,782 +1724272799,SSL client,125252,812411 +1724272799,Ubuntu Update Manager,19953,18720 +1724272799,Microsoft,633,7993 +1724272799,Mail.Ru,2492,4946 +1724272799,Yandex,35527,652169 +1724272799,Ubuntu,5133,4766 +1724272799,Microsoft CryptoAPI,2418,2018 +1724272799,Microsoft WNS,633,7993 +1724272799,Google Hangouts,797,7092 +1724272799,ICMP,1990,0 +1724272799,Telegram,2750,1032 +1724272799,Edge Chromium,9379,27682 +1724272799,DNS over HTTPS,7044,21677 +1724273100,HTTPS,41610,63510 +1724273100,HTTPS,82373,91693 +1724273100,Google,52149,83974 +1724273100,HTTPS,52149,83974 +1724273100,SSL client,52149,83974 +1724273100,__unknown,144523,39448 +1724273100,__unknown,1036,1648 +1724273100,HTTPS,85396,31693 +1724273100,SSL client,51832,14418 +1724273100,Yandex,4224,8909 +1724273100,Dropbox Download,47608,5509 +1724273100,HTTPS,73076,49566 +1724273100,SSL client,42000,36838 +1724273100,Google Play,42000,36838 +1724273100,__unknown,59068,1961948 +1724273100,Dropbox,1709,1509 +1724273100,MSN,2069,11721 +1724273100,VKontakte,3800,8663 +1724273100,HTTPS,165520,476717 +1724273100,SSL client,45071,129213 +1724273100,Microsoft,6136,14654 +1724273100,Mail.Ru,15120,46258 +1724273100,Yandex,12138,29269 +1724273100,Sway,1965,7832 +1724273100,GISMETEO,2134,9307 +1724273100,DNS over HTTPS,49034,147491 +1724273100,__unknown,628949,588471 +1724273100,Google APIs,7594,15185 +1724273100,MSN,7343,17487 +1724273100,HTTP,975,3065 +1724273100,iTunes,1045,6097 +1724273100,TeamViewer,1448,8838 +1724273100,VKontakte,7845,17848 +1724273100,HTTPS,628454,6996706 +1724273100,Apple sites,2102,8680 +1724273100,iCloud,18255,51783 +1724273100,SSL client,525063,6766598 +1724273100,Microsoft,30259,63335 +1724273100,Mail.Ru,121239,232173 +1724273100,Yandex,258638,6167836 +1724273100,Nvidia,7258,10314 +1724273100,Google Play,1313,6098 +1724273100,Office 365,5359,14743 +1724273100,Microsoft Windows Live Services Authentication,55365,146181 +1724273100,Telegram,3819,8014 +1724273100,Edge Chromium,527,1364 +1724273100,DNS over HTTPS,6178,22239 +1724273100,__unknown,326,1848 +1724273100,HTTPS,14247,18786 +1724273100,SSL client,14247,18786 +1724273100,DNS over HTTPS,14247,18786 +1724273100,ICMP,4018,0 +1724273100,__unknown,5014,17525 +1724273100,Windows Live,7303,22612 +1724273100,HTTPS,59513,59881 +1724273100,SSL client,7303,22612 +1724273100,ICMP,1230,0 +1724273100,__unknown,15564,41244 +1724273100,Google,38841,30316 +1724273100,Steam,2596,2883 +1724273100,HTTPS,44708,38539 +1724273100,SSL client,41437,33199 +1724273100,ICMP,1148,0 +1724273100,DNS over HTTPS,10446,26353 +1724273100,__unknown,465090,343219 +1724273100,BitTorrent,310,496 +1724273100,Google APIs,35303,8698 +1724273100,Google Drive,14969,15098 +1724273100,Google,30379,58436 +1724273100,DNS,18783,244 +1724273100,HTTP,2086,18615 +1724273100,Microsoft Update,641,507 +1724273100,NTP,25140,5640 +1724273100,STUN,984,888 +1724273100,Steam,938,17575 +1724273100,HTTPS,170404,232115 +1724273100,SSL client,90542,106815 +1724273100,Microsoft,924,3664 +1724273100,Microsoft CryptoAPI,641,507 +1724273100,ICMP,5066,0 +1724273100,Google Sign in,4468,8083 +1724273100,Grammarly,2311,7887 +1724273100,DNS over HTTPS,8149,22902 +1724273100,__unknown,366075,3884400 +1724273100,BITS,2328,9399 +1724273100,BitTorrent,153,198 +1724273100,DHCPv6,1141,0 +1724273100,Google APIs,2349,6746 +1724273100,Google,35700,49238 +1724273100,BitTorrent tracker,153,198 +1724273100,Chrome,5492,9000 +1724273100,DNS,64737,61966 +1724273100,Firefox,1718,1794 +1724273100,HTTP,125619,159312 +1724273100,Internet Explorer,2998,4598 +1724273100,Launchpad,3126,2480 +1724273100,Microsoft Update,4226,3629 +1724273100,Mobile Safari,4971,4784 +1724273100,NTP,1620,1620 +1724273100,Safari,581,598 +1724273100,TFTP,61,0 +1724273100,VKontakte,4380,9797 +1724273100,Odnoklassniki,2609,7363 +1724273100,Advanced Packaging Tool,30144,27819 +1724273100,HTTPS,142794,387567 +1724273100,Google Toolbar,591,598 +1724273100,Avast,1701,5246 +1724273100,Opera,2930,4196 +1724273100,SSL client,63658,108614 +1724273100,Amazon Web Services,1741,12495 +1724273100,Ubuntu Update Manager,24083,22689 +1724273100,Microsoft,2328,9399 +1724273100,Yandex,10905,23316 +1724273100,Ubuntu,4628,4486 +1724273100,Microsoft CryptoAPI,4839,4148 +1724273100,ICMP,1290,0 +1724273100,Telegram,1138,590 +1724273100,Google Sign in,6259,4235 +1724273100,Edge Chromium,9501,27055 +1724273100,DNS over HTTPS,6729,17127 +1724273400,__unknown,171141,173793 +1724273400,__unknown,2527,2124 +1724273400,__unknown,1608,0 +1724273400,HTTPS,615730,1114934 +1724273400,Telegram,615730,1114934 +1724273400,__unknown,442,1788 +1724273400,HTTPS,5776,9008 +1724273400,__unknown,36924,19992 +1724273400,HTTPS,6604,8171 +1724273400,__unknown,21949,19390 +1724273400,HTTPS,325479,16649903 +1724273400,SSL client,21095,18491 +1724273400,Google Play,21095,18491 +1724273400,__unknown,13852,29422 +1724273400,Dropbox,6159,6989 +1724273400,Google Drive,5923,9951 +1724273400,Gmail,10143,9865 +1724273400,HTTP,1075,1826 +1724273400,iTunes,2415,23292 +1724273400,VKontakte,3124,32121 +1724273400,HTTPS,86083,196894 +1724273400,WhatsApp,3046,4209 +1724273400,Mozilla,2117,5091 +1724273400,SSL client,62561,171437 +1724273400,Microsoft,21775,53974 +1724273400,VeriSign,1075,1826 +1724273400,Yandex,6842,10346 +1724273400,Microsoft CryptoAPI,1075,1826 +1724273400,Office 365,1869,10574 +1724273400,GISMETEO,2194,9234 +1724273400,__unknown,272696,184920 +1724273400,Bing,3733,6420 +1724273400,Google,188298,203161 +1724273400,HTTP,6004,6114 +1724273400,iTunes,1033,6163 +1724273400,Launchpad,574,422 +1724273400,VKontakte,8323,27767 +1724273400,Advanced Packaging Tool,2135,1852 +1724273400,HTTPS,966700,3255035 +1724273400,Apple sites,1796,4533 +1724273400,iCloud,12394,35114 +1724273400,Mozilla,4224,9271 +1724273400,Avast,40173,100972 +1724273400,SSL client,639798,1058740 +1724273400,Ad Nexus,1276,3414 +1724273400,Ubuntu Update Manager,1561,1430 +1724273400,Microsoft,26775,51933 +1724273400,Mail.Ru,81574,125645 +1724273400,Yandex,189536,290039 +1724273400,Microsoft CryptoAPI,1052,886 +1724273400,uTorrent,21892,39096 +1724273400,Exchange Online,2558,14520 +1724273400,Office 365,26402,73673 +1724273400,Microsoft Windows Live Services Authentication,22556,38918 +1724273400,Edge Chromium,527,1364 +1724273400,DNS over HTTPS,9540,36152 +1724273400,_err_4655,7637,28492 +1724273400,DNS over HTTPS,221772,491447 +1724273400,Google,418429,555997 +1724273400,HTTPS,418429,555997 +1724273400,SSL client,418429,555997 +1724273400,__unknown,215,225 +1724273400,STUN,1662697,27964897 +1724273400,HTTPS,3924,10060 +1724273400,iCloud,3924,10060 +1724273400,SSL client,3924,10060 +1724273400,__unknown,5402,2779 +1724273400,STUN,2460,2220 +1724273400,HTTPS,7806,41410 +1724273400,Spotify,2627,27286 +1724273400,iCloud,5179,14124 +1724273400,SSL client,7806,41410 +1724273400,__unknown,6090,21548 +1724273400,SSL,3004,9189 +1724273400,HTTPS,342912,11276908 +1724273400,ICMP,12690,6480 +1724273400,Telegram,1171,608 +1724273400,CoAP,1372,1008 +1724273400,__unknown,599503,733211 +1724273400,BitTorrent,463,434 +1724273400,Google APIs,90193,27288 +1724273400,Google Drive,5970,9673 +1724273400,Google,35760,81095 +1724273400,BitTorrent tracker,153,0 +1724273400,DNS,27545,0 +1724273400,Gmail,23085,21498 +1724273400,HTTP,1403,1243 +1724273400,NetBIOS-dgm,243,0 +1724273400,NTP,18070,4455 +1724273400,STUN,2844,4188 +1724273400,HTTPS,234394,246864 +1724273400,SSL client,155008,139554 +1724273400,Microsoft CryptoAPI,1403,1243 +1724273400,ICMP,1673,0 +1724273400,DNS over HTTPS,2384,7883 +1724273400,__unknown,323034,269041 +1724273400,DHCPv6,978,0 +1724273400,Google APIs,18659,24907 +1724273400,Google,40933,92866 +1724273400,Chrome,16210,15495 +1724273400,DNS,42087,38388 +1724273400,Gmail,9517,12037 +1724273400,HTTP,88676,115204 +1724273400,Launchpad,3200,2480 +1724273400,Microsoft Update,637,497 +1724273400,NTP,2520,2520 +1724273400,VKontakte,4590,9930 +1724273400,Odnoklassniki,1848,1187 +1724273400,Advanced Packaging Tool,28538,25917 +1724273400,HTTPS,220541,542546 +1724273400,Spotify,1838,4674 +1724273400,Apple sites,5584,19423 +1724273400,Avast,764,782 +1724273400,SSL client,105387,240806 +1724273400,Ubuntu Update Manager,23529,21811 +1724273400,Microsoft,633,7994 +1724273400,Yandex,17704,62134 +1724273400,Ubuntu,3084,3009 +1724273400,Microsoft CryptoAPI,5995,5466 +1724273400,Microsoft NCSI,1028,1275 +1724273400,Microsoft WNS,633,7994 +1724273400,ICMP,1864,0 +1724273400,ICMP for IPv6,70,0 +1724273400,Telegram,3181,1104 +1724273400,Edge Chromium,9253,27625 +1724273400,Grammarly,2229,8186 +1724273400,DNS over TLS,2158,9540 +1724273400,DNS over HTTPS,19834,66027 +1724273700,Google,34316,61019 +1724273700,HTTPS,34316,61019 +1724273700,SSL client,34316,61019 +1724273700,DNS over HTTPS,198883,433493 +1724273700,Windows Live,49829,11783 +1724273700,HTTPS,49829,11783 +1724273700,SSL client,49829,11783 +1724273700,HTTPS,20462,25727 +1724273700,HTTPS,38012,26174 +1724273700,Dropbox,116519,20623 +1724273700,HTTPS,127447,152360 +1724273700,SSL client,127447,152360 +1724273700,Microsoft,10928,131737 +1724273700,HTTP,691,2904 +1724273700,TeamViewer,31503,47229 +1724273700,HTTPS,255376,306600 +1724273700,SSL client,1190,5919 +1724273700,Google Play,1190,5919 +1724273700,TeamViewer,2969,17694 +1724273700,TwitchTV,6367,7221 +1724273700,HTTPS,893559,11519847 +1724273700,WhatsApp,1349,4208 +1724273700,Avast,1188,8372 +1724273700,SSL client,224753,134782 +1724273700,Microsoft,24298,51551 +1724273700,Yandex,63708,19394 +1724273700,Microsoft Azure,120134,10397 +1724273700,Office 365,1406,7099 +1724273700,OneDrive,2744,10276 +1724273700,GISMETEO,1939,2778 +1724273700,__unknown,85262,62944 +1724273700,Bing,3210,6454 +1724273700,Google APIs,19770,553023 +1724273700,Google,44254,72307 +1724273700,HTTP,705,531 +1724273700,iTunes,2615,44651 +1724273700,SSL,10870,4983 +1724273700,Odnoklassniki,3182,7889 +1724273700,Steam,2112,4924 +1724273700,HTTPS,581994,1358350 +1724273700,WhatsApp,1357,1216 +1724273700,Apple sites,4817,17021 +1724273700,Mozilla,2414,2045 +1724273700,Avast,76988,146265 +1724273700,SSL client,376050,1154330 +1724273700,Amazon Web Services,3199,21430 +1724273700,CloudFront,3742,1093 +1724273700,Microsoft,32874,51838 +1724273700,Mail.Ru,101794,103793 +1724273700,Yandex,54651,92992 +1724273700,GitHub,1526,6040 +1724273700,uTorrent,7244,13008 +1724273700,Telegram,3635,8014 +1724273700,Grammarly,12040,9948 +1724273700,DNS over HTTPS,4078,19958 +1724273700,ICMP,2788,0 +1724273700,DNS over HTTPS,26663,60089 +1724273700,HTTPS,7618,8685 +1724273700,__unknown,1964,1576 +1724273700,__unknown,820,548 +1724273700,Google,157853,78219 +1724273700,HTTPS,162430,81434 +1724273700,SSL client,157853,78219 +1724273700,ICMP,3106,2040 +1724273700,__unknown,1742010,1820538 +1724273700,BitTorrent,310,496 +1724273700,DHCPv6,163,0 +1724273700,Google APIs,44799,9954 +1724273700,Google Drive,53972,27253 +1724273700,Google,24749,61786 +1724273700,Chrome,43950,3992 +1724273700,DNS,16724,0 +1724273700,HTTP,45233,4996 +1724273700,Microsoft Update,1283,1004 +1724273700,NetBIOS-dgm,250,0 +1724273700,NTP,25590,6090 +1724273700,SSL,797,7092 +1724273700,STUN,984,888 +1724273700,HTTPS,191774,404966 +1724273700,SSL client,83950,107974 +1724273700,Microsoft CryptoAPI,1283,1004 +1724273700,Google Hangouts,797,7092 +1724273700,ICMP,16050,0 +1724273700,DNS over HTTPS,7886,18381 +1724273700,__unknown,329556,344209 +1724273700,BITS,4608,13139 +1724273700,BitTorrent,153,537 +1724273700,Google APIs,3293,8332 +1724273700,Google,29288,55142 +1724273700,IKE,506,466 +1724273700,BitTorrent tracker,153,537 +1724273700,Chrome,1829,1656 +1724273700,DNS,45859,42446 +1724273700,HTTP,226577,3965010 +1724273700,Internet Explorer,762,660 +1724273700,Launchpad,2560,1984 +1724273700,Microsoft Update,2263,1820 +1724273700,NTP,6277,6988 +1724273700,VKontakte,1046,4537 +1724273700,Odnoklassniki,2609,7439 +1724273700,Steam,2294,55899 +1724273700,Advanced Packaging Tool,29540,26364 +1724273700,HTTPS,172326,452346 +1724273700,Avast,1146,1173 +1724273700,SSL client,57529,122186 +1724273700,Ubuntu Update Manager,20870,19308 +1724273700,Microsoft,124580,3792730 +1724273700,Yandex,15528,47107 +1724273700,Ubuntu,7451,6451 +1724273700,Microsoft CryptoAPI,5488,6225 +1724273700,Microsoft WNS,705,7967 +1724273700,Office 365,940,2318 +1724273700,ICMP,1869,0 +1724273700,Telegram,639,374 +1724273700,Google Sign in,6260,4448 +1724273700,Edge Chromium,6744,20867 +1724273700,DNS over HTTPS,13552,47089 +1724274000,HTTP,51352647,44867938 +1724274000,HTTPS,98097,555494 +1724274000,__unknown,11659,20679 +1724274000,__unknown,642,0 +1724274000,HTTPS,83914,67508 +1724274000,ICMP,21484,0 +1724274000,__unknown,52041,67731 +1724274000,HTTPS,69076,85257 +1724274000,SSL client,53442,63251 +1724274000,Telegram,53442,63251 +1724274000,HTTPS,4142,6382 +1724274000,SSL client,4142,6382 +1724274000,Sharepoint Online,4142,6382 +1724274000,HTTPS,22731,26958 +1724274000,SSL client,22731,26958 +1724274000,DNS over HTTPS,22731,26958 +1724274000,HTTPS,53937,60994 +1724274000,SSL client,53937,60994 +1724274000,Telegram,53937,60994 +1724274000,__unknown,135277,35865 +1724274000,HTTPS,61887,22639 +1724274000,SSL client,48283,6060 +1724274000,Dropbox Download,48283,6060 +1724274000,__unknown,240589,275461 +1724274000,Dropbox,3185,4809 +1724274000,Google,202960,4058247 +1724274000,iTunes,3674,18971 +1724274000,Skype,2973,9876 +1724274000,HTTPS,1582461,33386564 +1724274000,WhatsApp,1275380,29119454 +1724274000,iCloud,5690,10499 +1724274000,Mozilla,9105,18640 +1724274000,SSL client,266741,4225412 +1724274000,Microsoft,8332,21891 +1724274000,Mail.Ru,6945,62294 +1724274000,Yandex,21617,10659 +1724274000,GISMETEO,2260,9526 +1724274000,DNS over HTTPS,5719,17652 +1724274000,__unknown,22147,47710 +1724274000,Dropbox,7785,223925 +1724274000,MSN,5471,16658 +1724274000,HTTP,5010,4711 +1724274000,iTunes,853,5875 +1724274000,Skype,3249,8102 +1724274000,SSL,2771,9537 +1724274000,Advanced Packaging Tool,2775,2623 +1724274000,HTTPS,470409,1331168 +1724274000,WhatsApp,10073,175435 +1724274000,iCloud,9623,26099 +1724274000,Mozilla,7088,13385 +1724274000,Avast,1096,5795 +1724274000,SSL client,252843,660092 +1724274000,Ubuntu Update Manager,2775,2623 +1724274000,Microsoft,76528,131052 +1724274000,Mail.Ru,64609,66120 +1724274000,Yandex,68618,139436 +1724274000,Office 365,1494,7099 +1724274000,Microsoft Windows Live Services Authentication,6429,16546 +1724274000,Telegram,3731,7910 +1724274000,DNS over HTTPS,5619,18942 +1724274000,HTTPS,452312,519484 +1724274000,HTTPS,42421,52639 +1724274000,SSL client,42421,52639 +1724274000,Telegram,42421,52639 +1724274000,HTTPS,7712,11967 +1724274000,__unknown,7850,90766 +1724274000,HTTPS,46035,42946 +1724274000,SSL client,17725,27228 +1724274000,Telegram,17725,27228 +1724274000,__unknown,2217,1463 +1724274000,Google,39154,74255 +1724274000,HTTPS,76028,120843 +1724274000,Spotify,2197,9745 +1724274000,SSL client,41351,84000 +1724274000,ICMP,1044,0 +1724274000,Telegram,943,504 +1724274000,__unknown,382997,459802 +1724274000,BitTorrent,401,496 +1724274000,DHCPv6,978,0 +1724274000,Google APIs,21463,348837 +1724274000,Google,60474,154194 +1724274000,BitTorrent tracker,153,0 +1724274000,DNS,21557,0 +1724274000,Gmail,23859,64842 +1724274000,HTTP,1654,1499 +1724274000,NetBIOS-dgm,243,0 +1724274000,NTP,630,630 +1724274000,VKontakte,2803,6097 +1724274000,HTTPS,190089,781061 +1724274000,Apple sites,7905,30216 +1724274000,SSL client,121937,619373 +1724274000,Microsoft CryptoAPI,1147,966 +1724274000,ICMP,73032,3780 +1724274000,DNS over HTTPS,14979,37601 +1724274000,__unknown,263738,201415 +1724274000,DHCPv6,163,0 +1724274000,Google Drive,7525,10320 +1724274000,Google,28799,58892 +1724274000,IKE,506,466 +1724274000,Chrome,31108,12074 +1724274000,DNS,46125,44411 +1724274000,Gmail,11779,15852 +1724274000,HTTP,121873,389093 +1724274000,Launchpad,3200,2480 +1724274000,Microsoft Update,23180,302807 +1724274000,NTP,13650,3900 +1724274000,STUN,984,888 +1724274000,Odnoklassniki,2609,7500 +1724274000,Advanced Packaging Tool,32565,29407 +1724274000,Windows Update,18046,298235 +1724274000,HTTPS,148362,382663 +1724274000,Apple sites,3733,11503 +1724274000,Avast,1146,1173 +1724274000,SSL client,78440,168813 +1724274000,Ubuntu Update Manager,22764,20989 +1724274000,Microsoft,8026,18163 +1724274000,Yandex,15702,48875 +1724274000,Ubuntu,7451,6856 +1724274000,Microsoft CryptoAPI,8181,7066 +1724274000,ICMP,22690,0 +1724274000,Telegram,4516,7881 +1724274000,Edge Chromium,4049,12162 +1724274000,DNS over HTTPS,6942,17908 +1724274300,__unknown,278932,443584 +1724274300,HTTPS,121352,304836 +1724274300,HTTPS,157352,687381 +1724274300,SSL client,157352,687381 +1724274300,Mail.Ru,157352,687381 +1724274300,DNS over HTTPS,259908,578553 +1724274300,HTTPS,112681,49610 +1724274300,HTTPS,52176,13714 +1724274300,HTTPS,47294,1555290 +1724274300,__unknown,0,1344 +1724274300,HTTPS,150209,11696475 +1724274300,SSL client,3123,6500 +1724274300,Yandex,3123,6500 +1724274300,__unknown,3316479,3029337 +1724274300,Google,3264,7340 +1724274300,HTTP,581,502 +1724274300,Microsoft Update,581,502 +1724274300,HTTPS,76240,134698 +1724274300,Apple sites,1933,7893 +1724274300,SSL client,47692,103560 +1724274300,Microsoft,4993,14021 +1724274300,Mail.Ru,23956,46281 +1724274300,Yandex,7462,9504 +1724274300,Microsoft CryptoAPI,581,502 +1724274300,Office 365,1582,4294 +1724274300,GISMETEO,2194,9234 +1724274300,DNS over HTTPS,7311,22019 +1724274300,__unknown,20561,71556 +1724274300,Google APIs,49784,66060 +1724274300,Google,27610,41467 +1724274300,Windows Live,5344,8469 +1724274300,Chrome,707,460 +1724274300,HTTP,7745,144439 +1724274300,TeamViewer,1584,8893 +1724274300,VKontakte,6461,9977 +1724274300,HTTPS,620783,7379028 +1724274300,WhatsApp,9758,17054 +1724274300,Apple sites,1623,6132 +1724274300,Mozilla,1889,5147 +1724274300,Avast,3066,12647 +1724274300,SSL client,419337,549257 +1724274300,Microsoft,54721,111605 +1724274300,Mail.Ru,98692,145339 +1724274300,Yandex,153714,96108 +1724274300,Microsoft CryptoAPI,1888,3059 +1724274300,Office 365,867,2217 +1724274300,Microsoft Windows Live Services Authentication,14849,37413 +1724274300,Telegram,3727,8090 +1724274300,DNS over HTTPS,9440,31119 +1724274300,Google,18489,28828 +1724274300,HTTPS,18489,28828 +1724274300,SSL client,18489,28828 +1724274300,DNS over HTTPS,18645,50195 +1724274300,HTTPS,107066,130601 +1724274300,SSL client,107066,130601 +1724274300,Telegram,107066,130601 +1724274300,__unknown,188,229 +1724274300,__unknown,161343,190309 +1724274300,HTTPS,7530,10102 +1724274300,ICMP,21484,0 +1724274300,__unknown,3185,1772 +1724274300,HTTPS,53877,61545 +1724274300,SSL client,53877,61545 +1724274300,Telegram,53877,61545 +1724274300,__unknown,26433,295034 +1724274300,Google,66931,53583 +1724274300,HTTPS,73912,66919 +1724274300,SSL client,66931,53583 +1724274300,ICMP,758,0 +1724274300,__unknown,540751,923778 +1724274300,BitTorrent,310,496 +1724274300,Google APIs,11213,18089 +1724274300,Google Drive,8892,10945 +1724274300,Google,72492,272626 +1724274300,Chrome,2073,1011 +1724274300,DNS,16862,0 +1724274300,HTTP,3561,2440 +1724274300,Microsoft Update,981,887 +1724274300,NetBIOS-dgm,250,0 +1724274300,NTP,5590,1725 +1724274300,HTTPS,277626,540066 +1724274300,Mozilla,2664,5722 +1724274300,SSL client,217503,328081 +1724274300,Atlassian,122242,20699 +1724274300,Microsoft CryptoAPI,981,887 +1724274300,ICMP,32496,900 +1724274300,__unknown,374519,2027500 +1724274300,BITS,1195,852 +1724274300,BitTorrent,153,198 +1724274300,DHCPv6,978,0 +1724274300,Google APIs,8953,17119 +1724274300,Google,15139,31623 +1724274300,QQ,1023,2527 +1724274300,BitTorrent tracker,153,198 +1724274300,Chrome,2565,1046 +1724274300,DNS,54536,46775 +1724274300,HTTP,92196,372740 +1724274300,Launchpad,2856,1918 +1724274300,Microsoft Update,981,887 +1724274300,NTP,360,360 +1724274300,STUN,984,888 +1724274300,Advanced Packaging Tool,38284,289283 +1724274300,HTTPS,166245,497493 +1724274300,Apple sites,853,2484 +1724274300,Avast,382,391 +1724274300,SSL client,46733,96477 +1724274300,Ubuntu Update Manager,31762,284077 +1724274300,Microsoft,693,7993 +1724274300,VeriSign,566,2141 +1724274300,Mail.Ru,821,450 +1724274300,Yandex,14921,41250 +1724274300,Ubuntu,4516,4206 +1724274300,Microsoft CryptoAPI,3535,4774 +1724274300,Microsoft WNS,693,7993 +1724274300,ICMP,5604,0 +1724274300,Google Sign in,6261,4204 +1724274300,Edge Chromium,8325,24960 +1724274300,DNS over TLS,1145,4770 +1724274300,DNS over HTTPS,12940,48599 +1724274600,HTTPS,378513,414963 +1724274600,SSL client,378513,414963 +1724274600,Yandex,378513,414963 +1724274600,__unknown,22646,25314 +1724274600,HTTPS,64989,257513 +1724274600,HTTPS,21558,95502 +1724274600,SSL client,21558,95502 +1724274600,Yandex,21558,95502 +1724274600,ICMP,44634,0 +1724274600,__unknown,4629,6473 +1724274600,__unknown,360,7132 +1724274600,Dropbox,126407,21746 +1724274600,HTTPS,126407,21746 +1724274600,SSL client,126407,21746 +1724274600,__unknown,313076,148636 +1724274600,Google,4683,9599 +1724274600,HTTPS,43525,53804 +1724274600,SSL client,4683,9599 +1724274600,__unknown,16044,33853 +1724274600,Google,8168,5230 +1724274600,HTTPS,90163,138926 +1724274600,SSL client,62315,75677 +1724274600,Microsoft,10152,25542 +1724274600,Mail.Ru,5608,27883 +1724274600,Yandex,36253,7962 +1724274600,GISMETEO,2134,9060 +1724274600,DNS over HTTPS,0,1270 +1724274600,__unknown,459468,115707 +1724274600,Bing,3525,6542 +1724274600,Dropbox,3199,1326 +1724274600,Google APIs,42589,24681 +1724274600,Google,183509,202681 +1724274600,HTTP,4851,7794 +1724274600,Internet Explorer,446,923 +1724274600,Microsoft Update,1469,3488 +1724274600,Skype,3296,7885 +1724274600,Advanced Packaging Tool,1861,1723 +1724274600,HTTPS,1330615,46985838 +1724274600,WhatsApp,7358,42219 +1724274600,Apple sites,1423,8022 +1724274600,Avast,8791,35411 +1724274600,SSL client,771156,3109793 +1724274600,Amazon Web Services,3385,21542 +1724274600,CloudFront,6206,1213 +1724274600,Ubuntu Update Manager,1274,1193 +1724274600,Microsoft,22067,42988 +1724274600,Mail.Ru,107969,84312 +1724274600,Yandex,286426,2552916 +1724274600,Ubuntu,587,530 +1724274600,Google Play,43254,37179 +1724274600,Office 365,4805,13508 +1724274600,Microsoft Windows Live Services Authentication,50675,69358 +1724274600,Telegram,4772,8266 +1724274600,Edge Chromium,587,2005 +1724274600,DNS over HTTPS,14164,43551 +1724274600,__unknown,12436,16745 +1724274600,__unknown,3019,22778 +1724274600,HTTPS,3301,5416 +1724274600,__unknown,27168,33808 +1724274600,Google,14575,17660 +1724274600,HTTPS,47842,73340 +1724274600,iCloud,3287,9174 +1724274600,SSL client,20189,33385 +1724274600,GitHub,2327,6551 +1724274600,Apple Maps,2800,6824 +1724274600,ICMP,9868,6540 +1724274600,__unknown,561138,710517 +1724274600,BitTorrent,310,496 +1724274600,DHCPv6,163,0 +1724274600,Google APIs,46858,18665 +1724274600,Google Drive,9393,10916 +1724274600,Google,30025,54207 +1724274600,Android browser,456,333 +1724274600,DNS,19338,0 +1724274600,HTTP,3006,2542 +1724274600,NTP,25860,6360 +1724274600,HTTPS,132542,188321 +1724274600,WhatsApp,1735,5361 +1724274600,SSL client,85820,83455 +1724274600,Microsoft CryptoAPI,2550,2209 +1724274600,ICMP,3242,60 +1724274600,ICMP for IPv6,70,0 +1724274600,DNS over HTTPS,16860,49510 +1724274600,__unknown,365431,469433 +1724274600,Google APIs,7400,56764 +1724274600,Google,17542,47709 +1724274600,DNS,55870,45128 +1724274600,Gmail,14691,52307 +1724274600,HTTP,89164,105700 +1724274600,Internet Explorer,6345,1950 +1724274600,Launchpad,3200,2480 +1724274600,Microsoft Update,2663,2209 +1724274600,NetBIOS-dgm,243,0 +1724274600,NTP,720,720 +1724274600,SSL,855,7032 +1724274600,STUN,984,888 +1724274600,Steam,637,3697 +1724274600,Advanced Packaging Tool,30957,28658 +1724274600,HTTPS,160735,923341 +1724274600,Apple sites,3985,11546 +1724274600,Mozilla,2058,4595 +1724274600,Avast,830,848 +1724274600,SSL client,90872,645256 +1724274600,Ubuntu Update Manager,23504,22360 +1724274600,Mail.Ru,877,4646 +1724274600,Yandex,21702,45261 +1724274600,GitHub,1967,5714 +1724274600,Ubuntu,5169,4740 +1724274600,Microsoft CryptoAPI,5011,4221 +1724274600,Google Play,13281,28101 +1724274600,ICMP,1410,0 +1724274600,JetBrains,13631,394177 +1724274600,Telegram,2051,681 +1724274600,Edge Chromium,5163,16777 +1724274600,DNS over TLS,1223,4868 +1724274600,DNS over HTTPS,24444,83237 +1724274900,__unknown,1522,2090 +1724274900,HTTPS,90754,130499 +1724274900,SSL client,90754,130499 +1724274900,Telegram,90754,130499 +1724274900,__unknown,20196,17028 +1724274900,__unknown,3752,2513 +1724274900,Windows Live,9146,13320 +1724274900,HTTPS,35906,143910 +1724274900,SSL client,17746,131618 +1724274900,Microsoft,8600,118298 +1724274900,HTTPS,147353,110937 +1724274900,SSL client,115608,69750 +1724274900,Dropbox Download,62263,6852 +1724274900,Telegram,53345,62898 +1724274900,__unknown,0,1564 +1724274900,HTTPS,29063,32138 +1724274900,SSL client,12910,24138 +1724274900,Google Play,2803,11881 +1724274900,Yandex Market,10107,12257 +1724274900,__unknown,412252,187602 +1724274900,HTTP,473,617 +1724274900,Microsoft Update,473,617 +1724274900,Windows Update,473,617 +1724274900,HTTPS,183971,5575227 +1724274900,Mozilla,2534,1678 +1724274900,SSL client,26642,73375 +1724274900,Microsoft,4171,7388 +1724274900,Mail.Ru,6069,39124 +1724274900,Yandex,2626,6826 +1724274900,Google Play,9048,9053 +1724274900,GISMETEO,2194,9306 +1724274900,DNS over HTTPS,4584,12521 +1724274900,__unknown,358489,306265 +1724274900,MSN,1709,11721 +1724274900,VKontakte,22718,38128 +1724274900,HTTPS,791096,17646717 +1724274900,WhatsApp,1073,802 +1724274900,Apple sites,2364,13889 +1724274900,Mozilla,4583,7396 +1724274900,Opera,9637,6072 +1724274900,SSL client,585628,14074161 +1724274900,Microsoft,16172,39930 +1724274900,Mail.Ru,80395,82375 +1724274900,Yandex,418972,13774841 +1724274900,GitHub,1592,6062 +1724274900,Apple Maps,1949,7560 +1724274900,Exchange Online,1509,6467 +1724274900,Office 365,1548,5956 +1724274900,Microsoft Windows Live Services Authentication,34066,87396 +1724274900,Telegram,7848,36627 +1724274900,STUN,5412,4958 +1724274900,CoAP,5194,4032 +1724274900,__unknown,81585,72766 +1724274900,ICMP,42968,0 +1724274900,__unknown,3684,2197 +1724274900,__unknown,13073,997 +1724274900,HTTPS,12782,21840 +1724274900,ICMP,1558,0 +1724274900,__unknown,944927,603202 +1724274900,BitTorrent,310,496 +1724274900,DHCPv6,978,0 +1724274900,Google APIs,2184,6890 +1724274900,Google,29917,68868 +1724274900,DNS,18394,0 +1724274900,HTTP,1798,1556 +1724274900,Microsoft Update,982,818 +1724274900,NTP,24600,5100 +1724274900,HTTPS,103094,192879 +1724274900,SSL client,32101,75758 +1724274900,Microsoft CryptoAPI,1798,1556 +1724274900,ICMP,6630,180 +1724274900,ICMP for IPv6,70,0 +1724274900,DNS over HTTPS,14885,40843 +1724274900,__unknown,391198,289202 +1724274900,BITS,2803,27678 +1724274900,BitTorrent,153,537 +1724274900,DHCPv6,163,0 +1724274900,Google APIs,7517,8389 +1724274900,Google,40039,120296 +1724274900,BitTorrent tracker,153,537 +1724274900,DNS,55520,46752 +1724274900,HTTP,62734,110606 +1724274900,Launchpad,3200,2480 +1724274900,Microsoft Update,701,645 +1724274900,NetBIOS-dgm,250,0 +1724274900,NTP,12840,3090 +1724274900,STUN,5480,1998 +1724274900,Advanced Packaging Tool,27850,25876 +1724274900,HTTPS,160814,542484 +1724274900,Mozilla,2758,1673 +1724274900,Avast,764,782 +1724274900,SSL client,70118,183931 +1724274900,Ubuntu Update Manager,19858,19084 +1724274900,Yandex,14030,40642 +1724274900,Ubuntu,5642,5234 +1724274900,Nvidia,1625,5957 +1724274900,Microsoft CryptoAPI,2104,1946 +1724274900,ICMP,1332,0 +1724274900,Edge Chromium,7271,22242 +1724274900,Grammarly,2243,7836 +1724274900,DNS over HTTPS,21786,71370 +1724275199,__unknown,491691,513050 +1724275199,Google,611863,266486 +1724275199,HTTPS,611863,266486 +1724275199,SSL client,611863,266486 +1724275199,__unknown,5537,2949 +1724275199,HTTPS,85647,39995 +1724275199,__unknown,2003,4188 +1724275199,Google APIs,4054,14521 +1724275199,HTTPS,46141,60402 +1724275199,SSL client,26757,39014 +1724275199,Google Play,22703,24493 +1724275199,__unknown,29328,28665 +1724275199,Dropbox,3094,1374 +1724275199,MSN,1049,5863 +1724275199,HTTP,2509,2179 +1724275199,Microsoft Update,2009,1716 +1724275199,TeamViewer,1518,8847 +1724275199,HTTPS,80446,180501 +1724275199,Mozilla,11080,27552 +1724275199,SSL client,62925,160286 +1724275199,Microsoft,10572,18382 +1724275199,Mail.Ru,31370,86093 +1724275199,Yandex,2433,1601 +1724275199,Microsoft CryptoAPI,2509,2179 +1724275199,Office 365,1809,10574 +1724275199,__unknown,81345,47641 +1724275199,Dropbox,4435,169209 +1724275199,Google,793538,397630 +1724275199,HTTP,6018,12454 +1724275199,Skype,1840,86314 +1724275199,TwitchTV,5465,7287 +1724275199,HTTPS,1202711,1355224 +1724275199,Pinterest,2240,7592 +1724275199,Apple sites,7537,33447 +1724275199,iCloud,2718,8639 +1724275199,Mozilla,6797,16845 +1724275199,SSL client,1073135,1063678 +1724275199,Microsoft,35808,57098 +1724275199,Mail.Ru,145875,164582 +1724275199,Yandex,39178,61893 +1724275199,Ubuntu,293,140 +1724275199,Google Update,4347,10830 +1724275199,uTorrent,21648,38995 +1724275199,Microsoft Windows Live Services Authentication,8296,21739 +1724275199,Telegram,3515,7894 +1724275199,AnyDesk,1928,2611 +1724275199,Edge Chromium,407,1178 +1724275199,DNS over HTTPS,2440,11026 +1724275199,ICMP,46742,0 +1724275199,Google,15030,22983 +1724275199,HTTPS,15030,22983 +1724275199,SSL client,15030,22983 +1724275199,__unknown,215,225 +1724275199,DNS over HTTPS,17626,38404 +1724275199,__unknown,18585,315809 +1724275199,Windows Live,8404,28726 +1724275199,HTTPS,16255,40480 +1724275199,SSL client,8404,28726 +1724275199,__unknown,3971,2283 +1724275199,Google,41073,30565 +1724275199,HTTPS,59012,60245 +1724275199,Spotify,2053,8112 +1724275199,SSL client,43126,38677 +1724275199,ICMP,3240,3180 +1724275199,Telegram,1639,1020 +1724275199,__unknown,423894,467208 +1724275199,BitTorrent,310,496 +1724275199,Google APIs,43563,8471 +1724275199,Google Drive,6041,9819 +1724275199,Google,49906,72893 +1724275199,DNS,19435,0 +1724275199,Gmail,47664,87472 +1724275199,HTTP,642,508 +1724275199,Microsoft Update,642,508 +1724275199,NTP,540,540 +1724275199,STUN,2418,4042 +1724275199,HTTPS,210066,256731 +1724275199,Mozilla,2615,1712 +1724275199,SSL client,149789,180367 +1724275199,Microsoft CryptoAPI,642,508 +1724275199,ICMP,3845,0 +1724275199,__unknown,303180,289482 +1724275199,DHCPv6,652,0 +1724275199,Google,28625,55297 +1724275199,DNS,47802,39314 +1724275199,HTTP,113277,487046 +1724275199,Launchpad,3274,2414 +1724275199,NTP,1620,1530 +1724275199,STUN,984,888 +1724275199,VKontakte,2258,5003 +1724275199,Advanced Packaging Tool,43181,389811 +1724275199,HTTPS,185556,413198 +1724275199,Apple sites,4045,8634 +1724275199,Avast,1146,1173 +1724275199,SSL client,81816,134531 +1724275199,Ubuntu Update Manager,36289,384145 +1724275199,Microsoft,573,7946 +1724275199,Yandex,45683,60992 +1724275199,Ubuntu,5319,5092 +1724275199,Microsoft CryptoAPI,736,528 +1724275199,Microsoft WNS,573,7946 +1724275199,ICMP,2090,0 +1724275199,Telegram,1974,601 +1724275199,Edge Chromium,8792,25735 +1724275199,DNS over TLS,2710,9753 +1724275199,DNS over HTTPS,25825,86912 +1724275500,Google APIs,8821,27885 +1724275500,HTTPS,33900,53089 +1724275500,SSL client,8821,27885 +1724275500,__unknown,49046,49823 +1724275500,Dropbox,118036,21302 +1724275500,HTTPS,199910,105589 +1724275500,SSL client,178288,58016 +1724275500,Google Play,60252,36714 +1724275500,__unknown,109869,99830 +1724275500,HTTPS,20266,45244 +1724275500,__unknown,99021,285840 +1724275500,Google,8209,5129 +1724275500,HTTP,582,508 +1724275500,Microsoft Update,582,508 +1724275500,VKontakte,5869,6836 +1724275500,HTTPS,2605176,74645848 +1724275500,SSL client,2313471,74580706 +1724275500,Mail.Ru,3056,5536 +1724275500,Yandex,16692,18299 +1724275500,Microsoft CryptoAPI,582,508 +1724275500,DNS over HTTPS,3275,9709 +1724275500,Firefox Update,2279645,74544906 +1724275500,__unknown,48758,37941 +1724275500,Dropbox,2817,4451 +1724275500,Google,4712,13477 +1724275500,HTTP,11107,190350 +1724275500,Microsoft Update,526,506 +1724275500,VKontakte,2236,4988 +1724275500,Steam,2052,3897 +1724275500,Advanced Packaging Tool,1283,1288 +1724275500,HTTPS,1211245,37711028 +1724275500,iCloud,3988,8744 +1724275500,SSL client,248268,357397 +1724275500,Amazon Web Services,3347,21662 +1724275500,Ubuntu Update Manager,1283,1288 +1724275500,Microsoft,69653,107452 +1724275500,Mail.Ru,111716,137238 +1724275500,Yandex,32871,35006 +1724275500,GitHub,1658,5975 +1724275500,Google Update,4390,10370 +1724275500,Microsoft CryptoAPI,1070,2625 +1724275500,Exchange Online,1244,6455 +1724275500,Telegram,3639,7904 +1724275500,Edge Chromium,467,1364 +1724275500,Grammarly,12590,9948 +1724275500,__unknown,963,1410 +1724275500,__unknown,3710,12140 +1724275500,ICMP,940,0 +1724275500,DNS over HTTPS,0,1251 +1724275500,__unknown,1367,2373 +1724275500,HTTPS,5428,10952 +1724275500,ICMP,8038,0 +1724275500,__unknown,368936,509081 +1724275500,BitTorrent,310,496 +1724275500,DHCPv6,163,0 +1724275500,Google,45551,892209 +1724275500,DNS,13379,0 +1724275500,HTTP,3448,2994 +1724275500,Microsoft Update,642,508 +1724275500,NetBIOS-dgm,243,0 +1724275500,NTP,630,720 +1724275500,STUN,1612,3300 +1724275500,HTTPS,120477,1040992 +1724275500,SSL client,47741,900155 +1724275500,Microsoft CryptoAPI,3448,2994 +1724275500,ICMP,5982,3000 +1724275500,Grammarly,2190,7946 +1724275500,DNS over HTTPS,7856,24728 +1724275500,__unknown,422123,324902 +1724275500,Apple Update,1804,4933 +1724275500,BITS,1195,792 +1724275500,BitTorrent,153,0 +1724275500,DHCPv6,978,0 +1724275500,Google,175796,51675 +1724275500,BitTorrent tracker,153,0 +1724275500,DNS,40496,38373 +1724275500,HTTP,109440,508074 +1724275500,Internet Explorer,822,660 +1724275500,Launchpad,3200,2480 +1724275500,Microsoft Update,646,506 +1724275500,NTP,23120,5640 +1724275500,STUN,984,888 +1724275500,Odnoklassniki,1911,1471 +1724275500,Advanced Packaging Tool,42667,415259 +1724275500,HTTPS,295048,310111 +1724275500,Avast,382,391 +1724275500,SSL client,184287,73792 +1724275500,Ubuntu Update Manager,34785,408434 +1724275500,Yandex,6804,14187 +1724275500,GitHub,1436,6063 +1724275500,Ubuntu,5210,4994 +1724275500,Microsoft CryptoAPI,1998,1556 +1724275500,ICMP,2161,0 +1724275500,Edge Chromium,8792,25733 +1724275500,DNS over TLS,1145,4770 +1724275500,DNS over HTTPS,16660,61357 +1724275800,__unknown,30900,34037 +1724275800,HTTPS,37530,50563 +1724275800,Windows Live,54184,11964 +1724275800,HTTPS,54184,11964 +1724275800,SSL client,54184,11964 +1724275800,Google APIs,2362,6184 +1724275800,HTTPS,59618,112582 +1724275800,SSL client,56390,110531 +1724275800,Microsoft,7265,98535 +1724275800,Dropbox Download,46763,5812 +1724275800,HTTPS,3552,12026 +1724275800,SSL client,3552,12026 +1724275800,Google Play,3552,12026 +1724275800,__unknown,2144,1365 +1724275800,TeamViewer,3020,17685 +1724275800,TwitchTV,6431,7089 +1724275800,HTTPS,101810,201633 +1724275800,SSL client,55997,122223 +1724275800,Microsoft,22657,75669 +1724275800,Mail.Ru,15112,12445 +1724275800,Yandex,8777,9335 +1724275800,__unknown,48574,28075 +1724275800,Bing,11764,18155 +1724275800,Dropbox,2694,1283 +1724275800,Google,131699,158776 +1724275800,Skype,5277,94292 +1724275800,SSL,12537,19920 +1724275800,HTTPS,513328,1153314 +1724275800,Apple sites,4063,16012 +1724275800,SSL client,394851,652479 +1724275800,Microsoft,73816,79020 +1724275800,Mail.Ru,101625,106613 +1724275800,Yandex,45131,127369 +1724275800,Office 365,3642,24075 +1724275800,Hola,12537,19920 +1724275800,Telegram,3815,8084 +1724275800,Grammarly,2603,6964 +1724275800,__unknown,772,532 +1724275800,HTTPS,3151,5416 +1724275800,ICMP,1786,0 +1724275800,CoAP,3136,2304 +1724275800,__unknown,1079,576 +1724275800,HTTP,737,474 +1724275800,HTTPS,4465,25373 +1724275800,ICMP,2820,0 +1724275800,Telegram,1079,576 +1724275800,__unknown,354490,1348435 +1724275800,Apple Update,1721,4927 +1724275800,BitTorrent,310,496 +1724275800,DHCPv6,163,0 +1724275800,Google APIs,9192,38444 +1724275800,Google,9835,21214 +1724275800,DNS,17027,0 +1724275800,Gmail,7102,4478 +1724275800,HTTP,2459,3940 +1724275800,Microsoft Update,1282,1014 +1724275800,NetBIOS-dgm,250,0 +1724275800,NTP,360,360 +1724275800,STUN,4214,962 +1724275800,VKontakte,2744,6035 +1724275800,Odnoklassniki,2549,7423 +1724275800,HTTPS,87937,230675 +1724275800,SSL client,43869,99534 +1724275800,VeriSign,566,2141 +1724275800,Microsoft CryptoAPI,1848,3155 +1724275800,ICMP,3454,0 +1724275800,Google Sign in,6227,4250 +1724275800,Grammarly,2311,7813 +1724275800,DNS over HTTPS,15320,46786 +1724275800,__unknown,176773,186179 +1724275800,Google Drive,7469,9796 +1724275800,Google,37708,92250 +1724275800,DNS,43530,39109 +1724275800,Gmail,12926,11513 +1724275800,HTTP,79797,98277 +1724275800,Launchpad,2560,1984 +1724275800,Microsoft Update,1292,1012 +1724275800,NTP,990,990 +1724275800,SSL,1592,14063 +1724275800,STUN,984,888 +1724275800,Odnoklassniki,3820,2673 +1724275800,Advanced Packaging Tool,32009,28776 +1724275800,HTTPS,156903,873700 +1724275800,iCloud,8470,19676 +1724275800,Avast,382,391 +1724275800,SSL client,78766,176496 +1724275800,Ubuntu Update Manager,22800,20818 +1724275800,Yandex,7713,33203 +1724275800,Ubuntu,7924,7357 +1724275800,Microsoft CryptoAPI,3085,3217 +1724275800,Office 365,619,1199 +1724275800,Google Hangouts,1592,14063 +1724275800,ICMP,2586,0 +1724275800,Telegram,3991,7958 +1724275800,Edge Chromium,8912,27027 +1724275800,DNS over HTTPS,4136,9796 +1724276100,HTTPS,59461,112477 +1724276100,__unknown,1056,1770 +1724276100,HTTPS,12946,17341 +1724276100,SSL client,12946,17341 +1724276100,DNS over HTTPS,12946,17341 +1724276100,HTTPS,104987,130797 +1724276100,SSL client,104987,130797 +1724276100,Telegram,104987,130797 +1724276100,HTTPS,54409,61976 +1724276100,SSL client,54409,61976 +1724276100,Telegram,54409,61976 +1724276100,Google APIs,4234,14418 +1724276100,HTTPS,129105,98213 +1724276100,SSL client,117659,84720 +1724276100,Google Play,113425,70302 +1724276100,__unknown,1802,1685 +1724276100,TeamViewer,1511,8847 +1724276100,HTTPS,68684,90383 +1724276100,Mozilla,2267,1578 +1724276100,SSL client,24343,39148 +1724276100,Microsoft,8779,18547 +1724276100,Mail.Ru,6765,6234 +1724276100,Google Sign in,5021,3942 +1724276100,DNS over HTTPS,5869,15442 +1724276100,__unknown,14939,15855 +1724276100,Bing,5159,15871 +1724276100,Dropbox,6175,6165 +1724276100,MSN,3277,9441 +1724276100,HTTP,2357,1998 +1724276100,Advanced Packaging Tool,1909,1792 +1724276100,HTTPS,370758,688543 +1724276100,Apple sites,5154,23945 +1724276100,iCloud,5366,29800 +1724276100,Mozilla,2475,1738 +1724276100,SSL client,268488,430914 +1724276100,Amazon Web Services,13384,28544 +1724276100,Ubuntu Update Manager,1274,1226 +1724276100,Microsoft,43384,90640 +1724276100,Mail.Ru,114588,117464 +1724276100,Yandex,63180,85074 +1724276100,Ubuntu,635,566 +1724276100,Exchange Online,2497,14528 +1724276100,Office 365,3849,7704 +1724276100,Telegram,3515,7894 +1724276100,DNS over HTTPS,104823,240129 +1724276100,ICMP,5494,0 +1724276100,__unknown,187,229 +1724276100,__unknown,4998,4128 +1724276100,__unknown,4393,2563 +1724276100,Google,52866,38498 +1724276100,HTTPS,52866,38498 +1724276100,SSL client,52866,38498 +1724276100,ICMP,4428,0 +1724276100,__unknown,120,1081 +1724276100,Google Translate,12995,13715 +1724276100,HTTPS,19658,24608 +1724276100,SSL client,12995,13715 +1724276100,ICMP,5288,5100 +1724276100,__unknown,385535,3940294 +1724276100,BitTorrent,310,496 +1724276100,Google APIs,2827,11543 +1724276100,Google Drive,9976,35640 +1724276100,Google,26785,54117 +1724276100,DNS,13616,0 +1724276100,HTTP,1317,1269 +1724276100,Microsoft Update,1317,1269 +1724276100,NTP,25320,5910 +1724276100,VKontakte,2802,6215 +1724276100,HTTPS,122111,220766 +1724276100,Apple sites,1835,9010 +1724276100,SSL client,48707,128820 +1724276100,Microsoft CryptoAPI,1317,1269 +1724276100,ICMP,5858,0 +1724276100,Google Meet,4482,12295 +1724276100,__unknown,273474,536821 +1724276100,BitTorrent,153,537 +1724276100,DHCPv6,1141,0 +1724276100,Google APIs,7093,20033 +1724276100,Google,16649,52762 +1724276100,Adobe Software,15645,446213 +1724276100,BitTorrent tracker,153,537 +1724276100,DNS,45279,43639 +1724276100,HTTP,87246,367492 +1724276100,Launchpad,3200,2480 +1724276100,Microsoft Update,14658,270911 +1724276100,NetBIOS-dgm,243,0 +1724276100,NTP,11740,3000 +1724276100,STUN,984,888 +1724276100,Wget,458,272 +1724276100,Odnoklassniki,3730,7454 +1724276100,Advanced Packaging Tool,27579,25573 +1724276100,Windows Update,14658,270911 +1724276100,HTTPS,120280,886479 +1724276100,Avast,382,391 +1724276100,SSL client,65669,578678 +1724276100,Ubuntu Update Manager,21887,20865 +1724276100,Microsoft,693,7948 +1724276100,Yandex,11371,38833 +1724276100,Ubuntu,3767,3607 +1724276100,Microsoft CryptoAPI,1938,1666 +1724276100,Microsoft WNS,693,7948 +1724276100,Google Play,9443,10725 +1724276100,ICMP,1356,0 +1724276100,Edge Chromium,4636,15405 +1724276100,Grammarly,2263,7852 +1724276100,DNS over HTTPS,19745,66107 +1724276400,HTTPS,44098,1843574 +1724276400,__unknown,27450,67410 +1724276400,ICMP,34020,34080 +1724276400,HTTPS,6726,9329 +1724276400,Google,170890,84415 +1724276400,HTTPS,170890,84415 +1724276400,SSL client,170890,84415 +1724276400,Dropbox,114990,20264 +1724276400,HTTPS,118648,22453 +1724276400,SSL client,114990,20264 +1724276400,HTTPS,11662,5624 +1724276400,Bing,3365,6424 +1724276400,Google APIs,2766,9165 +1724276400,Google,8326,5329 +1724276400,Gmail,10019,10347 +1724276400,HTTP,919,696 +1724276400,Microsoft Update,919,696 +1724276400,HTTPS,94438,259656 +1724276400,Apple sites,6791,29306 +1724276400,SSL client,58797,196505 +1724276400,Microsoft,13012,29297 +1724276400,Mail.Ru,5303,16717 +1724276400,Microsoft CryptoAPI,919,696 +1724276400,Office 365,7021,80612 +1724276400,Telegram,4570,30478 +1724276400,GISMETEO,2194,9308 +1724276400,DNS over HTTPS,10002,30109 +1724276400,__unknown,52511,48399 +1724276400,Dropbox,5070,6543 +1724276400,Google,4831,13385 +1724276400,MSN,5123,9503 +1724276400,HTTP,4574,4774 +1724276400,Odnoklassniki,2609,7484 +1724276400,Advanced Packaging Tool,2775,2623 +1724276400,HTTPS,449858,3460126 +1724276400,Apple sites,1862,4535 +1724276400,SSL client,230743,342440 +1724276400,CloudFront,6207,1153 +1724276400,Ubuntu Update Manager,2775,2623 +1724276400,Microsoft,18948,47263 +1724276400,Mail.Ru,62976,73694 +1724276400,Yandex,114403,154488 +1724276400,Microsoft CryptoAPI,558,1139 +1724276400,Office 365,8020,20545 +1724276400,BlueStacks,1599,5046 +1724276400,Telegram,120,120 +1724276400,Edge Chromium,347,60 +1724276400,ICMP,4100,0 +1724276400,HTTPS,105318,134327 +1724276400,SSL client,105318,134327 +1724276400,Telegram,105318,134327 +1724276400,__unknown,7842,7610 +1724276400,ICMP,1804,0 +1724276400,Google,64190,48144 +1724276400,HTTPS,64190,48144 +1724276400,SSL client,64190,48144 +1724276400,__unknown,2118,15198 +1724276400,HTTPS,3367,8180 +1724276400,SSL client,3367,8180 +1724276400,Microsoft,3367,8180 +1724276400,__unknown,7381,30106 +1724276400,iTunes,4190,10026 +1724276400,HTTPS,7969,21705 +1724276400,iCloud,3779,11679 +1724276400,SSL client,7969,21705 +1724276400,__unknown,1982,1108 +1724276400,SSL,12701,13857 +1724276400,HTTPS,10520,31991 +1724276400,SSL client,1508,1392 +1724276400,Google Hangouts,1508,1392 +1724276400,ICMP,1098,0 +1724276400,Telegram,1015,580 +1724276400,__unknown,320991,3755931 +1724276400,BitTorrent,310,496 +1724276400,Google APIs,8109,15793 +1724276400,Google,40922,71725 +1724276400,DNS,21826,0 +1724276400,Gmail,8189,5927 +1724276400,HTTP,1581,1864 +1724276400,Microsoft Update,981,887 +1724276400,NTP,26040,6540 +1724276400,VKontakte,2744,6097 +1724276400,HTTPS,90839,209040 +1724276400,Mozilla,1876,4611 +1724276400,SSL client,61840,104153 +1724276400,Microsoft CryptoAPI,1581,1864 +1724276400,ICMP,16912,0 +1724276400,DNS over HTTPS,17281,44095 +1724276400,__unknown,619195,1046126 +1724276400,DHCPv6,978,0 +1724276400,Google APIs,12029,39622 +1724276400,Google Drive,9522,11366 +1724276400,Google,216702,137491 +1724276400,Android browser,1176,798 +1724276400,DNS,51336,43921 +1724276400,Gmail,7484,10154 +1724276400,HTTP,95427,122987 +1724276400,Internet Explorer,762,660 +1724276400,Launchpad,3200,2480 +1724276400,Microsoft Update,2579,2019 +1724276400,NetBIOS-dgm,250,0 +1724276400,NTP,810,810 +1724276400,SSL,855,7031 +1724276400,STUN,984,888 +1724276400,Wget,458,272 +1724276400,Odnoklassniki,3699,2376 +1724276400,Steam,638,2020 +1724276400,Advanced Packaging Tool,31615,28875 +1724276400,HTTPS,343818,507522 +1724276400,Avast,764,782 +1724276400,SSL client,265053,261398 +1724276400,Ubuntu Update Manager,22353,20951 +1724276400,Microsoft,633,7948 +1724276400,VeriSign,566,2141 +1724276400,Yandex,16429,57755 +1724276400,Ubuntu,7337,6827 +1724276400,Microsoft CryptoAPI,7200,7600 +1724276400,Microsoft WNS,633,7948 +1724276400,Google Hangouts,855,7031 +1724276400,ICMP,1960,0 +1724276400,Telegram,2047,737 +1724276400,Edge Chromium,4109,14048 +1724276400,Grammarly,2203,7947 +1724276400,DNS over HTTPS,12745,33392 +1724276700,STUN,72446031,5666273 +1724276700,HTTPS,45443,63820 +1724276700,SSL client,45443,63820 +1724276700,Telegram,45443,63820 +1724276700,Skype,3977,8567 +1724276700,HTTPS,67407,147150 +1724276700,SSL client,67407,147150 +1724276700,Microsoft,9327,125213 +1724276700,Dropbox Download,51208,6111 +1724276700,Microsoft Teams,2895,7259 +1724276700,Gmail,30955,34021 +1724276700,HTTPS,72478,66213 +1724276700,SSL client,70442,64868 +1724276700,Google Play,39487,30847 +1724276700,__unknown,697,906 +1724276700,Google APIs,4677,7599 +1724276700,Gmail,8502,15250 +1724276700,HTTPS,77552,168669 +1724276700,SSL client,47177,122767 +1724276700,Microsoft,13907,30595 +1724276700,Mail.Ru,12877,56028 +1724276700,GISMETEO,2194,9308 +1724276700,Google Sign in,5020,3987 +1724276700,DNS over HTTPS,3827,7573 +1724276700,__unknown,194157,140360 +1724276700,Bing,19788,75538 +1724276700,Dropbox,7393,11170 +1724276700,Google,8140,16421 +1724276700,HTTP,2687,2248 +1724276700,Skype,3266,7019 +1724276700,HTTPS,554950,2099145 +1724276700,SSL client,240993,408117 +1724276700,Microsoft,36436,50526 +1724276700,Mail.Ru,114838,121781 +1724276700,Yandex,36145,73925 +1724276700,GitHub,1592,6062 +1724276700,Ubuntu,293,140 +1724276700,Microsoft CryptoAPI,587,443 +1724276700,Office 365,5207,23364 +1724276700,Microsoft Windows Live Services Authentication,8188,22311 +1724276700,Telegram,8382,46566 +1724276700,HTTPS,21948,32632 +1724276700,SSL client,21948,32632 +1724276700,DNS over HTTPS,21948,32632 +1724276700,HTTPS,47471,25042 +1724276700,__unknown,215,225 +1724276700,ICMP,1558,0 +1724276700,__unknown,2056,1476 +1724276700,__unknown,52316,19598 +1724276700,Gmail,15543,47441 +1724276700,HTTPS,20156,117346 +1724276700,SSL client,15543,47441 +1724276700,ICMP,1562,0 +1724276700,DNS over HTTPS,5850,15526 +1724276700,__unknown,435868,599461 +1724276700,BitTorrent,310,496 +1724276700,DHCPv6,163,0 +1724276700,Google APIs,7021,21097 +1724276700,Google Drive,14935,14876 +1724276700,Google,22890,43938 +1724276700,DNS,15255,0 +1724276700,HTTP,2155,1893 +1724276700,Microsoft Update,981,887 +1724276700,NTP,720,720 +1724276700,SSL,10752,9918 +1724276700,Odnoklassniki,2610,7501 +1724276700,HTTPS,168933,243870 +1724276700,SSL client,91439,100929 +1724276700,Atlassian,43983,13517 +1724276700,Microsoft CryptoAPI,2155,1893 +1724276700,ICMP,8289,4560 +1724276700,DNS over HTTPS,12065,38528 +1724276700,__unknown,314809,303396 +1724276700,BitTorrent,153,198 +1724276700,Google APIs,2348,6567 +1724276700,Google,34067,69812 +1724276700,BitTorrent tracker,153,198 +1724276700,DNS,47820,44228 +1724276700,HTTP,51547,66574 +1724276700,Launchpad,3200,2480 +1724276700,Microsoft Update,982,818 +1724276700,NTP,12750,3000 +1724276700,STUN,984,888 +1724276700,Odnoklassniki,3790,7589 +1724276700,Advanced Packaging Tool,33604,30725 +1724276700,HTTPS,168458,426833 +1724276700,Avast,764,782 +1724276700,SSL client,83855,122727 +1724276700,Ubuntu Update Manager,25025,23403 +1724276700,Yandex,36388,35930 +1724276700,Ubuntu,7145,6678 +1724276700,Microsoft CryptoAPI,2156,1824 +1724276700,ICMP,1197,0 +1724276700,ICMP for IPv6,70,0 +1724276700,Google Sign in,6259,4486 +1724276700,Edge Chromium,4696,16110 +1724276700,Grammarly,2846,8284 +1724276700,DNS over HTTPS,15017,45350 +1724276999,__unknown,32760,36201 +1724276999,HTTPS,426948,121206 +1724276999,Google,47662,78800 +1724276999,HTTPS,47662,78800 +1724276999,SSL client,47662,78800 +1724276999,__unknown,1608,0 +1724276999,HTTPS,3687,6200 +1724276999,SSL client,3687,6200 +1724276999,Sharepoint Online,3687,6200 +1724276999,Windows Live,77435,19217 +1724276999,HTTPS,77435,19217 +1724276999,SSL client,77435,19217 +1724276999,HTTPS,54409,61922 +1724276999,SSL client,54409,61922 +1724276999,Telegram,54409,61922 +1724276999,HTTPS,59945,55379 +1724276999,SSL client,41157,36623 +1724276999,Google Play,41157,36623 +1724276999,DNS over HTTPS,95378,243510 +1724276999,__unknown,26917,22060 +1724276999,Dropbox,3342,2538 +1724276999,HTTP,2521,3998 +1724276999,Microsoft Update,1446,2172 +1724276999,HTTPS,81845,298763 +1724276999,Mozilla,2118,5091 +1724276999,Avast,1254,8512 +1724276999,SSL client,47130,202920 +1724276999,Microsoft,29817,168220 +1724276999,VeriSign,1075,1826 +1724276999,Mail.Ru,6357,5838 +1724276999,Yandex,2433,2064 +1724276999,Microsoft CryptoAPI,2521,3998 +1724276999,Office 365,1809,10657 +1724276999,Telegram,4273,30688 +1724276999,__unknown,191689,240587 +1724276999,Dropbox,3480,2978 +1724276999,Google APIs,1795,21932 +1724276999,Google,128146,124529 +1724276999,MSN,4029,13774 +1724276999,Gmail,12447,744603 +1724276999,HTTP,3040,3665 +1724276999,TwitchTV,5521,7089 +1724276999,IMAPS,12447,744603 +1724276999,HTTPS,517583,1364776 +1724276999,iCloud,9789,22746 +1724276999,Mozilla,4498,10382 +1724276999,Avast,1320,9411 +1724276999,SSL client,459115,1963067 +1724276999,Microsoft,40815,67802 +1724276999,Mail.Ru,144696,171742 +1724276999,Yandex,76129,680686 +1724276999,Microsoft CryptoAPI,2059,1843 +1724276999,Google Play,3215,6017 +1724276999,Office 365,23235,79376 +1724276999,Telegram,120,120 +1724276999,DNS over HTTPS,4470,18483 +1724276999,STUN,2486601,42978776 +1724276999,CoAP,3528,2592 +1724276999,__unknown,3276,1675 +1724276999,ICMP,1886,0 +1724276999,__unknown,1587,1100 +1724276999,Google,41038,31359 +1724276999,HTTP,521,447 +1724276999,Microsoft Update,521,447 +1724276999,HTTPS,70971,63257 +1724276999,Spotify,1987,8112 +1724276999,SSL client,45299,45867 +1724276999,Microsoft CryptoAPI,521,447 +1724276999,ICMP,984,0 +1724276999,Telegram,1587,1100 +1724276999,DNS over HTTPS,2274,6396 +1724276999,__unknown,312901,452688 +1724276999,BitTorrent,310,496 +1724276999,DHCPv6,978,0 +1724276999,Google APIs,52447,26412 +1724276999,Google Drive,6028,9845 +1724276999,Google,10924,26100 +1724276999,DNS,20134,0 +1724276999,Gmail,19495,19167 +1724276999,HTTP,732,1109 +1724276999,NetBIOS-dgm,243,0 +1724276999,NTP,360,360 +1724276999,VKontakte,2743,6042 +1724276999,Odnoklassniki,2609,7364 +1724276999,HTTPS,192153,259746 +1724276999,SSL client,94246,94930 +1724276999,MDNS,364,0 +1724276999,Microsoft CryptoAPI,732,1109 +1724276999,ICMP,9566,2940 +1724276999,__unknown,451575,382186 +1724276999,DHCPv6,163,0 +1724276999,Google APIs,2885,11888 +1724276999,Google,49272,172830 +1724276999,DNS,46507,43623 +1724276999,Gmail,13543,11653 +1724276999,HTTP,102036,267782 +1724276999,Launchpad,3200,2480 +1724276999,NTP,25320,5820 +1724276999,STUN,984,888 +1724276999,Odnoklassniki,3790,7514 +1724276999,Advanced Packaging Tool,33487,162630 +1724276999,HTTPS,133699,573846 +1724276999,Mozilla,2460,5066 +1724276999,Avast,2638,9710 +1724276999,SSL client,77232,225202 +1724276999,Ubuntu Update Manager,22362,20951 +1724276999,Microsoft,633,7948 +1724276999,Yandex,4718,19974 +1724276999,Ubuntu,8775,140117 +1724276999,Microsoft CryptoAPI,3603,2990 +1724276999,Microsoft NCSI,1160,1106 +1724276999,Microsoft WNS,633,7948 +1724276999,ICMP,1434,60 +1724276999,Synology DSM,1386,7027 +1724276999,Telegram,1895,661 +1724276999,Edge Chromium,4109,14057 +1724276999,DNS over HTTPS,23087,80130 +1724277300,HTTPS,20839,26702 +1724277300,AnyDesk,20839,26702 +1724277300,HTTPS,14692,17279 +1724277300,Dropbox,121717,21407 +1724277300,HTTPS,121717,21407 +1724277300,SSL client,121717,21407 +1724277300,TeamViewer,31119,54347 +1724277300,HTTPS,26762,158894 +1724277300,SSL client,2977,11991 +1724277300,Google Play,2977,11991 +1724277300,__unknown,24199,74177 +1724277300,SSL,3254,6241 +1724277300,HTTPS,179522,147056 +1724277300,SSL client,38159,64144 +1724277300,Microsoft,8429,24215 +1724277300,Mail.Ru,8787,6605 +1724277300,Siri,6649,7589 +1724277300,uTorrent,11040,19494 +1724277300,Hola,3254,6241 +1724277300,__unknown,59146,96029 +1724277300,Bing,3547,6423 +1724277300,Dropbox,5400,8794 +1724277300,Google,35260,62659 +1724277300,OpenVPN,0,395 +1724277300,HTTP,8825,9203 +1724277300,SSL,4282,1336 +1724277300,Steam,9458,17331 +1724277300,Advanced Packaging Tool,1214,1164 +1724277300,HTTPS,570173,909282 +1724277300,Apple sites,2757,11760 +1724277300,Avast,3288,12278 +1724277300,SSL client,427166,494294 +1724277300,Ubuntu Update Manager,1214,1164 +1724277300,Microsoft,220388,150797 +1724277300,Mail.Ru,93106,98905 +1724277300,Yandex,18959,33310 +1724277300,GitHub,1592,6062 +1724277300,Office 365,15064,58434 +1724277300,Microsoft Windows Live Services Authentication,8756,21695 +1724277300,Telegram,1328,812 +1724277300,Grammarly,12449,9856 +1724277300,DNS over HTTPS,1930,9169 +1724277300,__unknown,236053,163259 +1724277300,HTTPS,110578,237003 +1724277300,HTTPS,4149,4895 +1724277300,ICMP,3608,0 +1724277300,__unknown,1810,11116 +1724277300,HTTPS,8339,20297 +1724277300,iCloud,4413,13519 +1724277300,SSL client,4413,13519 +1724277300,__unknown,60,1802 +1724277300,HTTPS,21982,12994 +1724277300,ICMP,1198,0 +1724277300,DNS over HTTPS,0,1736 +1724277300,__unknown,450935,554524 +1724277300,BITS,5825,30427 +1724277300,BitTorrent,310,496 +1724277300,Google APIs,4641,14507 +1724277300,Google,19953,50886 +1724277300,Chrome,1335,809 +1724277300,DNS,14607,0 +1724277300,HTTP,8240,39730 +1724277300,NetBIOS-dgm,250,0 +1724277300,NTP,12480,2730 +1724277300,STUN,1860,3300 +1724277300,VKontakte,2744,6101 +1724277300,HTTPS,106691,154225 +1724277300,SSL client,27338,71494 +1724277300,Microsoft,573,7961 +1724277300,Yandex,1215,792 +1724277300,Microsoft WNS,573,7961 +1724277300,ICMP,6572,2640 +1724277300,DNS over HTTPS,10334,28382 +1724277300,__unknown,555942,7158205 +1724277300,BitTorrent,153,537 +1724277300,DHCPv6,978,0 +1724277300,Google APIs,2349,6746 +1724277300,Google,39474,122099 +1724277300,BitTorrent tracker,153,537 +1724277300,DNS,50870,44971 +1724277300,HTTP,87702,181721 +1724277300,Internet Explorer,762,660 +1724277300,Launchpad,3200,2414 +1724277300,Microsoft Update,2694,10433 +1724277300,NTP,13560,3810 +1724277300,Steam,4448,71062 +1724277300,Advanced Packaging Tool,32190,29207 +1724277300,HTTPS,115829,281947 +1724277300,Spotify,1838,4674 +1724277300,Avast,764,782 +1724277300,SSL client,56793,161095 +1724277300,Ubuntu Update Manager,22245,20747 +1724277300,Yandex,9442,21812 +1724277300,Ubuntu,8020,7429 +1724277300,Microsoft CryptoAPI,4888,13797 +1724277300,Office 365,940,2318 +1724277300,ICMP,942,0 +1724277300,Google Sign in,4531,8097 +1724277300,Edge Chromium,4109,14048 +1724277300,DNS over TLS,2158,9542 +1724277300,DNS over HTTPS,21461,77272 +1724277600,__unknown,1537515,3076365 +1724277600,HTTPS,56854493,2537576672 +1724277600,HTTPS,1836435,35713523 +1724277600,SSL,9575,18392 +1724277600,SSL client,9575,18392 +1724277600,Google Hangouts,9575,18392 +1724277600,HTTPS,17037,21025 +1724277600,HTTPS,692937,16465552 +1724277600,SSL client,37673,12553 +1724277600,Sharepoint Online,4380,6868 +1724277600,Dropbox Download,33293,5685 +1724277600,HTTPS,5104,10406 +1724277600,SSL client,1628,5903 +1724277600,Google Play,1628,5903 +1724277600,__unknown,2788,3804 +1724277600,Dropbox,1647,1519 +1724277600,Google Drive,16973,349814 +1724277600,Google,4284,5655 +1724277600,Skype,2973,9743 +1724277600,HTTPS,96283,524959 +1724277600,Mozilla,4411,10182 +1724277600,Avast,1254,8260 +1724277600,SSL client,49661,437511 +1724277600,Microsoft,4374,9361 +1724277600,Mail.Ru,5670,28037 +1724277600,Office 365,2090,10680 +1724277600,Google Sign in,5985,4260 +1724277600,__unknown,295466,301282 +1724277600,Bing,3400,6424 +1724277600,Dropbox,10011,3303 +1724277600,Google APIs,10007,17379 +1724277600,Google,98760,3776814 +1724277600,MSN,2779,7591 +1724277600,Chrome,2250,649 +1724277600,HTTP,7997,8128 +1724277600,Microsoft Update,100293,261176 +1724277600,Skype,3027,6909 +1724277600,TwitchTV,6567,7155 +1724277600,Advanced Packaging Tool,1561,1490 +1724277600,HTTPS,627016,5799393 +1724277600,Apple sites,2228,8730 +1724277600,iCloud,11566,9198 +1724277600,SSL client,504726,4534541 +1724277600,Amazon Web Services,2031,7342 +1724277600,Ubuntu Update Manager,1561,1490 +1724277600,Microsoft,100960,200698 +1724277600,Mail.Ru,95672,103423 +1724277600,Yandex,40378,79740 +1724277600,Ubuntu,557,511 +1724277600,Microsoft CryptoAPI,1502,2168 +1724277600,Office 365,2519,7303 +1724277600,Microsoft Windows Live Services Authentication,16030,33524 +1724277600,Telegram,66,570 +1724277600,DNS over HTTPS,0,9706 +1724277600,__unknown,110063,419657 +1724277600,Google,111782,98925 +1724277600,HTTPS,129712,121669 +1724277600,SSL client,129712,121669 +1724277600,DNS over HTTPS,17930,22744 +1724277600,__unknown,21912,20972 +1724277600,__unknown,2133,1137 +1724277600,ICMP,1148,0 +1724277600,HTTPS,7553,2887 +1724277600,Avast,7553,2887 +1724277600,SSL client,7553,2887 +1724277600,ICMP,492,0 +1724277600,__unknown,458700,481884 +1724277600,BitTorrent,310,496 +1724277600,DHCPv6,163,0 +1724277600,Google APIs,8647,24561 +1724277600,Google,12589,31037 +1724277600,DNS,19357,0 +1724277600,Gmail,10002,6097 +1724277600,HTTP,1581,1803 +1724277600,Microsoft Update,981,826 +1724277600,NetBIOS-dgm,243,0 +1724277600,NTP,13830,4080 +1724277600,STUN,984,888 +1724277600,VKontakte,2863,6156 +1724277600,Odnoklassniki,2695,2486 +1724277600,HTTPS,111783,192232 +1724277600,SSL client,67738,97015 +1724277600,Microsoft CryptoAPI,1581,1803 +1724277600,Google Play,30942,26678 +1724277600,ICMP,6382,0 +1724277600,DNS over HTTPS,9647,31375 +1724277600,__unknown,224019,233974 +1724277600,DHCPv6,978,0 +1724277600,Google APIs,22357,36846 +1724277600,Google,27600,61985 +1724277600,Chrome,1130,968 +1724277600,DNS,47901,42798 +1724277600,HTTP,57398,72913 +1724277600,Launchpad,3200,2414 +1724277600,Microsoft Update,2573,2004 +1724277600,NTP,810,810 +1724277600,SSL,797,7093 +1724277600,YouTube,1913,10868 +1724277600,Advanced Packaging Tool,25826,23382 +1724277600,HTTPS,96658,222035 +1724277600,Mozilla,2879,5875 +1724277600,Avast,764,782 +1724277600,SSL client,63936,140954 +1724277600,Ubuntu Update Manager,18421,17186 +1724277600,Yandex,7528,18963 +1724277600,Ubuntu,5905,5626 +1724277600,Microsoft CryptoAPI,6279,5111 +1724277600,Google Hangouts,797,7093 +1724277600,ICMP,1066,0 +1724277600,Telegram,1965,7361 +1724277600,Edge Chromium,4696,16107 +1724277600,Grammarly,2223,7656 +1724277600,DNS over HTTPS,17310,56498 +1724277901,HTTPS,33986,96225 +1724277901,SSL client,33986,96225 +1724277901,Yandex,33986,96225 +1724277901,HTTPS,12955,13219 +1724277901,SSL client,12955,13219 +1724277901,Yandex,12955,13219 +1724277901,HTTPS,155554,697147 +1724277901,SSL client,155554,697147 +1724277901,Mail.Ru,155554,697147 +1724277901,DNS over HTTPS,257103,574964 +1724277901,__unknown,5276,7198 +1724277901,HTTPS,18941,18932 +1724277901,HTTPS,97719,158584 +1724277901,SSL client,97719,158584 +1724277901,Yandex,7711,26890 +1724277901,Telegram,90008,131694 +1724277901,HTTPS,34235,43489 +1724277901,HTTPS,2667,4760 +1724277901,ICMP,22176,0 +1724277901,HTTPS,30844,201460 +1724277901,SSL client,22782,18521 +1724277901,Google Play,22782,18521 +1724277901,__unknown,45722,46882 +1724277901,HTTPS,57872,54789 +1724277901,SSL client,42971,42750 +1724277901,Google Play,42971,42750 +1724277901,__unknown,4894174,7412935 +1724277901,Bing,43052,331237 +1724277901,Dropbox,1730,1595 +1724277901,Skype,3362,9485 +1724277901,HTTPS,557314,486209 +1724277901,Avast,1122,8477 +1724277901,SSL client,75524,400322 +1724277901,Microsoft,5365,22896 +1724277901,Mail.Ru,8883,6605 +1724277901,Yandex,2433,1538 +1724277901,Office 365,3147,11843 +1724277901,Stripe,6430,6646 +1724277901,__unknown,36731,49707 +1724277901,Bing,3489,6428 +1724277901,Dropbox,3398,2994 +1724277901,Google APIs,2755,6660 +1724277901,Windows Live,5345,8469 +1724277901,Chrome,552,186 +1724277901,HTTP,2169,1782 +1724277901,Launchpad,640,496 +1724277901,Skype,3254,7019 +1724277901,Advanced Packaging Tool,640,496 +1724277901,HTTPS,572582,1600184 +1724277901,Apple sites,4540,19054 +1724277901,iCloud,4016,10560 +1724277901,Bing Maps,2751,19031 +1724277901,Mozilla,10874,5988 +1724277901,Avast,1884,4276 +1724277901,SSL client,234029,405454 +1724277901,Amazon Web Services,3265,21602 +1724277901,Microsoft,17490,36753 +1724277901,Mail.Ru,80175,85031 +1724277901,Yandex,54946,75174 +1724277901,GitHub,1586,5973 +1724277901,Exchange Online,1458,6467 +1724277901,Office 365,3017,14099 +1724277901,Microsoft Windows Live Services Authentication,24766,56047 +1724277901,Grammarly,5020,13829 +1724277901,DNS over HTTPS,4530,18355 +1724277901,Google,97593,99380 +1724277901,HTTPS,97593,99380 +1724277901,SSL client,97593,99380 +1724277901,__unknown,5736,0 +1724277901,HTTPS,53789,70624 +1724277901,SSL client,53789,70624 +1724277901,Telegram,53789,70624 +1724277901,DNS over HTTPS,17577,37741 +1724277901,__unknown,5432,3791 +1724277901,ICMP,1394,0 +1724277901,Telegram,1515,1172 +1724277901,CoAP,2548,1872 +1724277901,__unknown,60,973 +1724277901,HTTPS,25648,51687 +1724277901,Spotify,2053,8112 +1724277901,SSL client,2053,8112 +1724277901,__unknown,406552,372165 +1724277901,BITS,3909,29078 +1724277901,BitTorrent,310,496 +1724277901,DHCPv6,163,0 +1724277901,Google APIs,11917,32266 +1724277901,Google,34111,95880 +1724277901,DNS,15195,0 +1724277901,Gmail,6770,7709 +1724277901,HTTP,6384,30792 +1724277901,Microsoft Update,1281,695 +1724277901,NetBIOS-dgm,250,0 +1724277901,NTP,13650,3900 +1724277901,SSL,797,7092 +1724277901,STUN,2844,4188 +1724277901,VKontakte,2803,6083 +1724277901,Odnoklassniki,2549,7423 +1724277901,HTTPS,92754,191053 +1724277901,SSL client,58947,156453 +1724277901,Microsoft CryptoAPI,2475,1714 +1724277901,Google Hangouts,797,7092 +1724277901,ICMP,28931,3420 +1724277901,__unknown,271164,257406 +1724277901,BitTorrent,153,198 +1724277901,Google APIs,3016,7010 +1724277901,Google,29705,113374 +1724277901,BitTorrent tracker,153,198 +1724277901,Chrome,941,2977 +1724277901,DNS,52522,46844 +1724277901,Gmail,6937,7531 +1724277901,HTTP,71329,211026 +1724277901,Launchpad,4320,2488 +1724277901,Microsoft Update,1247,1002 +1724277901,NTP,1350,1350 +1724277901,Advanced Packaging Tool,36271,163116 +1724277901,HTTPS,111465,342059 +1724277901,Mozilla,2874,5918 +1724277901,Avast,382,391 +1724277901,SSL client,58402,172253 +1724277901,Ubuntu Update Manager,28381,157346 +1724277901,VeriSign,566,2140 +1724277901,Yandex,2981,14385 +1724277901,GitHub,1727,5582 +1724277901,Ubuntu,4420,4196 +1724277901,Microsoft CryptoAPI,4471,5213 +1724277901,ICMP,1688,0 +1724277901,Telegram,1887,669 +1724277901,Google Sign in,6198,4134 +1724277901,Edge Chromium,1174,4019 +1724277901,DNS over TLS,2554,9540 +1724277901,DNS over HTTPS,21451,78611 +1724278200,ICMP,235080,234540 +1724278200,ICMP,547020,547080 +1724278200,Google,49899,54434 +1724278200,HTTPS,49899,54434 +1724278200,SSL client,49899,54434 +1724278200,HTTPS,204312,68447 +1724278200,__unknown,480,420 +1724278200,__unknown,1608,0 +1724278200,Google APIs,7578,14222 +1724278200,HTTPS,7578,14222 +1724278200,SSL client,7578,14222 +1724278200,Dropbox,129278,21359 +1724278200,HTTPS,167221,45997 +1724278200,SSL client,158976,39885 +1724278200,Google Play,29698,18526 +1724278200,HTTPS,17884,19800 +1724278200,__unknown,14152,43365 +1724278200,Google,11302,17373 +1724278200,HTTPS,105967,144242 +1724278200,SSL client,56441,99421 +1724278200,Microsoft,24619,59013 +1724278200,Mail.Ru,12831,8490 +1724278200,Yandex,3586,5851 +1724278200,Google Play,4103,8694 +1724278200,__unknown,16067,6776 +1724278200,Bing,2048,9271 +1724278200,Dropbox,20982,220433 +1724278200,Google,51947,68960 +1724278200,MSN,4433,16460 +1724278200,HTTP,3535,6780 +1724278200,Microsoft Update,105912,303885 +1724278200,Steam,577,2459 +1724278200,Advanced Packaging Tool,527,530 +1724278200,HTTPS,716695,1181547 +1724278200,Apple sites,1913,9604 +1724278200,SSL client,399128,991287 +1724278200,CloudFront,5191,2155 +1724278200,Microsoft,34950,69794 +1724278200,Mail.Ru,37471,30734 +1724278200,Yandex,35782,66611 +1724278200,Ubuntu,527,530 +1724278200,Microsoft CryptoAPI,919,827 +1724278200,Google Play,34693,26812 +1724278200,Exchange Online,5046,29065 +1724278200,Office 365,15514,64709 +1724278200,Microsoft Windows Live Services Authentication,42570,67870 +1724278200,Edge Chromium,527,2009 +1724278200,Grammarly,2122,7760 +1724278200,DNS over HTTPS,7011,21298 +1724278200,__unknown,251854,233216 +1724278200,__unknown,1475,5915 +1724278200,Google,53107,38011 +1724278200,HTTPS,53107,38011 +1724278200,SSL client,53107,38011 +1724278200,__unknown,2725,13383 +1724278200,HTTPS,29199,49034 +1724278200,SSL client,25898,43558 +1724278200,ICMP,1066,0 +1724278200,Telegram,25898,43558 +1724278200,__unknown,7303,1632 +1724278200,Google,11570,17517 +1724278200,HTTPS,25407,45151 +1724278200,SSL client,11570,17517 +1724278200,ICMP,3172,3000 +1724278200,__unknown,455754,491960 +1724278200,BitTorrent,310,496 +1724278200,Google Drive,9513,11133 +1724278200,Google,22758,56896 +1724278200,DNS,19031,0 +1724278200,Gmail,28837,29080 +1724278200,HTTP,562,463 +1724278200,NTP,37170,7920 +1724278200,STUN,984,888 +1724278200,VKontakte,2802,6101 +1724278200,Odnoklassniki,2726,7547 +1724278200,HTTPS,125669,203034 +1724278200,SSL client,71632,125372 +1724278200,Yandex,1251,6151 +1724278200,Microsoft CryptoAPI,562,463 +1724278200,Google Play,3745,8464 +1724278200,ICMP,3316,0 +1724278200,ICMP for IPv6,70,0 +1724278200,DNS over HTTPS,22915,66409 +1724278200,__unknown,339936,328570 +1724278200,DHCPv6,978,0 +1724278200,Google APIs,13880,41089 +1724278200,Google,25074,86664 +1724278200,DNS,45679,40578 +1724278200,Gmail,12616,17721 +1724278200,HTTP,79487,218896 +1724278200,Internet Explorer,6286,2106 +1724278200,Launchpad,3200,2480 +1724278200,Microsoft Update,642,502 +1724278200,NetBIOS-dgm,243,0 +1724278200,NTP,2880,2880 +1724278200,Advanced Packaging Tool,41508,166380 +1724278200,HTTPS,140807,355974 +1724278200,Apple sites,4316,12064 +1724278200,Mozilla,2058,4535 +1724278200,Avast,764,782 +1724278200,SSL client,73447,210995 +1724278200,Ubuntu Update Manager,34007,159980 +1724278200,Microsoft,633,7947 +1724278200,Yandex,10105,13625 +1724278200,Ubuntu,6232,5900 +1724278200,Microsoft CryptoAPI,6759,5764 +1724278200,Microsoft WNS,633,7947 +1724278200,ICMP,2640,1440 +1724278200,Telegram,3291,9261 +1724278200,Edge Chromium,4216,10914 +1724278200,DNS over TLS,4749,19296 +1724278200,DNS over HTTPS,22054,78113 +1724278499,ICMP,195180,194760 +1724278499,HTTPS,62928,70680 +1724278499,HTTPS,32956,26981 +1724278499,__unknown,1390,1904 +1724278499,__unknown,360,7635 +1724278499,HTTPS,36334,1108820 +1724278499,HTTPS,39915,32373 +1724278499,__unknown,29652,15514 +1724278499,Bing,3732,6425 +1724278499,MSN,1029,6837 +1724278499,HTTPS,112840,171387 +1724278499,Mozilla,1933,5151 +1724278499,Avast,1194,8001 +1724278499,SSL client,39373,78733 +1724278499,Microsoft,8161,20507 +1724278499,Mail.Ru,8787,6601 +1724278499,Google Play,13163,17867 +1724278499,Office 365,1374,7344 +1724278499,__unknown,198514,334107 +1724278499,Bing,5584,15812 +1724278499,Google APIs,13491,9969 +1724278499,HTTP,2835,2623 +1724278499,Microsoft Update,2190,5988 +1724278499,Skype,3249,8276 +1724278499,Advanced Packaging Tool,2835,2623 +1724278499,HTTPS,579499,1075687 +1724278499,iCloud,15487,42041 +1724278499,Mozilla,2467,1704 +1724278499,Avast,2082,11590 +1724278499,Opera,9691,6072 +1724278499,SSL client,469678,590807 +1724278499,Ubuntu Update Manager,2835,2623 +1724278499,Microsoft,16622,39644 +1724278499,Mail.Ru,152609,161282 +1724278499,Yandex,219973,205700 +1724278499,Office 365,1522,1425 +1724278499,Microsoft Windows Live Services Authentication,34402,87376 +1724278499,HTTPS,9806,12750 +1724278499,__unknown,214,225 +1724278499,HTTPS,10333,19503 +1724278499,SSL client,10333,19503 +1724278499,DNS over HTTPS,10333,19503 +1724278499,ICMP,1558,0 +1724278499,Windows Live,8464,29141 +1724278499,HTTPS,51797,75770 +1724278499,SSL client,15396,41138 +1724278499,DNS over HTTPS,6932,11997 +1724278499,__unknown,1047,580 +1724278499,__unknown,8522,12444 +1724278499,Chrome,809,3003 +1724278499,HTTP,809,3003 +1724278499,HTTPS,17921,35594 +1724278499,SSL client,2975,5708 +1724278499,ICMP,656,0 +1724278499,DNS over HTTPS,2975,5708 +1724278499,__unknown,564871,569020 +1724278499,BitTorrent,310,496 +1724278499,DHCPv6,163,0 +1724278499,Google APIs,1639,2291 +1724278499,Google,24909,37058 +1724278499,DNS,17897,0 +1724278499,Gmail,8680,15569 +1724278499,HTTP,646,501 +1724278499,Microsoft Update,646,501 +1724278499,NTP,1170,1170 +1724278499,STUN,984,888 +1724278499,Odnoklassniki,2609,7439 +1724278499,HTTPS,134522,191165 +1724278499,SSL client,37837,62357 +1724278499,Microsoft CryptoAPI,646,501 +1724278499,ICMP,11431,5760 +1724278499,DNS over HTTPS,18102,51132 +1724278499,__unknown,348436,439276 +1724278499,BitTorrent,153,537 +1724278499,DHCPv6,978,0 +1724278499,Google,23105,50517 +1724278499,BitTorrent tracker,153,537 +1724278499,DNS,44718,43570 +1724278499,HTTP,73989,93729 +1724278499,Launchpad,3200,2480 +1724278499,Microsoft Update,2263,1901 +1724278499,NetBIOS-dgm,250,0 +1724278499,NTP,36900,7650 +1724278499,Odnoklassniki,2489,7196 +1724278499,Advanced Packaging Tool,33106,30294 +1724278499,HTTPS,104967,231380 +1724278499,Mozilla,2758,1883 +1724278499,Avast,764,782 +1724278499,SSL client,34074,78481 +1724278499,Ubuntu Update Manager,23844,22306 +1724278499,Yandex,4365,17168 +1724278499,GitHub,1727,5589 +1724278499,Ubuntu,8822,8262 +1724278499,Microsoft CryptoAPI,2850,2404 +1724278499,Microsoft NCSI,1396,1461 +1724278499,ICMP,1322,0 +1724278499,ICMP for IPv6,70,0 +1724278499,Edge Chromium,8792,25690 +1724278499,DNS over HTTPS,16643,51451 +1724278801,__unknown,243292,486818 +1724278801,HTTPS,184110,144379 +1724278801,HTTPS,17356,188027 +1724278801,HTTPS,267816,79865 +1724278801,Skype,3977,8654 +1724278801,HTTPS,54976,402277 +1724278801,SSL client,54976,402277 +1724278801,Microsoft,12625,226745 +1724278801,Mail.Ru,38374,166878 +1724278801,HTTPS,46048,93949 +1724278801,SSL client,36161,22776 +1724278801,Google Play,36161,22776 +1724278801,__unknown,13050,3297 +1724278801,Google,8257,5179 +1724278801,HTTPS,73232,101600 +1724278801,iCloud,2452,8991 +1724278801,Avast,1024,9699 +1724278801,SSL client,32049,55371 +1724278801,Microsoft,2230,3726 +1724278801,Mail.Ru,8851,6603 +1724278801,Yandex,7426,10599 +1724278801,Office 365,1809,10574 +1724278801,__unknown,34245,24219 +1724278801,Dropbox,7557,223891 +1724278801,Google,181391,199258 +1724278801,MSN,3279,9506 +1724278801,HTTP,7966,13428 +1724278801,Microsoft Update,1675,5433 +1724278801,Skype,3254,7019 +1724278801,Advanced Packaging Tool,1783,1699 +1724278801,HTTPS,951568,1265819 +1724278801,Mozilla,5536,1895 +1724278801,SSL client,664406,891365 +1724278801,Amazon Web Services,3019,21430 +1724278801,Ubuntu Update Manager,1214,1133 +1724278801,Microsoft,40320,110566 +1724278801,Mail.Ru,156605,138137 +1724278801,Yandex,247628,121900 +1724278801,Ubuntu,569,566 +1724278801,Google Update,4340,10310 +1724278801,Microsoft CryptoAPI,500,403 +1724278801,Exchange Online,2829,14532 +1724278801,Office 365,11313,37798 +1724278801,DNS over HTTPS,2398,10860 +1724278801,ICMP,10920,10920 +1724278801,__unknown,116725,124172 +1724278801,HTTPS,15116,6369 +1724278801,__unknown,2309,1271 +1724278801,HTTPS,32794,24706 +1724278801,Telegram,1111,564 +1724278801,__unknown,145,60 +1724278801,Google,40992,31180 +1724278801,HTTPS,40992,31180 +1724278801,SSL client,40992,31180 +1724278801,ICMP,6944,6600 +1724278801,__unknown,354142,701510 +1724278801,BitTorrent,310,496 +1724278801,DHCPv6,163,0 +1724278801,Google APIs,45433,25540 +1724278801,Google Drive,11032,18680 +1724278801,Google,19063,22987 +1724278801,DNS,19555,0 +1724278801,Gmail,18602,21887 +1724278801,HTTP,642,508 +1724278801,Microsoft Update,642,508 +1724278801,NTP,12480,2730 +1724278801,STUN,984,888 +1724278801,HTTPS,188397,180575 +1724278801,Mozilla,2615,1712 +1724278801,SSL client,96745,90806 +1724278801,Microsoft CryptoAPI,642,508 +1724278801,ICMP,4212,0 +1724278801,DNS over HTTPS,13702,30396 +1724278801,__unknown,258535,250657 +1724278801,Google,25260,47703 +1724278801,DNS,39809,35509 +1724278801,Gmail,11832,7895 +1724278801,HTTP,86654,376839 +1724278801,Launchpad,3496,2480 +1724278801,Microsoft Update,947,887 +1724278801,NTP,13020,3270 +1724278801,SSL,1652,14126 +1724278801,STUN,30574,222 +1724278801,Steam,2451,46236 +1724278801,Advanced Packaging Tool,31348,250101 +1724278801,HTTPS,133666,260613 +1724278801,Avast,764,782 +1724278801,SSL client,45539,84927 +1724278801,Ubuntu Update Manager,24773,244797 +1724278801,Microsoft,633,7962 +1724278801,Yandex,4109,14051 +1724278801,GitHub,1727,5580 +1724278801,Ubuntu,4420,4199 +1724278801,Microsoft CryptoAPI,1683,1415 +1724278801,Microsoft WNS,633,7962 +1724278801,Google Hangouts,855,7033 +1724278801,ICMP,1251,0 +1724278801,Telegram,2548,898 +1724278801,Edge Chromium,5690,18145 +1724278801,Grammarly,2221,7854 +1724278801,DNS over HTTPS,24565,77683 +1724279101,__unknown,535660,2647133 +1724279101,HTTPS,254234,304528 +1724279101,HTTP,16279808,12241321 +1724279101,HTTPS,21102,23019 +1724279101,HTTPS,82998,70406 +1724279101,SSL client,82998,70406 +1724279101,Microsoft,29121,8981 +1724279101,Telegram,53877,61425 +1724279101,Dropbox,126172,21592 +1724279101,HTTPS,136223,35619 +1724279101,SSL client,126172,21592 +1724279101,__unknown,34060,17118 +1724279101,Google APIs,2574,7759 +1724279101,HTTP,2574,7759 +1724279101,Microsoft Update,1555,5433 +1724279101,Skype,2593,8334 +1724279101,HTTPS,62539,133838 +1724279101,Avast,1254,8958 +1724279101,SSL client,32671,101941 +1724279101,Microsoft,4055,10918 +1724279101,Mail.Ru,16731,45417 +1724279101,Yandex,6483,22881 +1724279101,DNS over HTTPS,1290,3630 +1724279101,__unknown,53663,115820 +1724279101,Google APIs,2620,9195 +1724279101,HTTP,6407,12532 +1724279101,iTunes,2040,6663 +1724279101,SSL,24789,601148 +1724279101,Advanced Packaging Tool,1031,1211 +1724279101,HTTPS,465787,587179 +1724279101,Apple sites,7610,10415 +1724279101,Bing Maps,1415,8805 +1724279101,Avast,1254,8460 +1724279101,SSL client,396832,441541 +1724279101,CloudFront,2265,1747 +1724279101,Microsoft,25360,109425 +1724279101,Mail.Ru,96169,86119 +1724279101,Yandex,233396,144965 +1724279101,Ubuntu,527,470 +1724279101,Game Center,2629,5074 +1724279101,Google Update,4391,10370 +1724279101,Office 365,1749,7788 +1724279101,Microsoft Windows Live Services Authentication,20325,42885 +1724279101,DNS over HTTPS,10977,39538 +1724279101,__unknown,2753,1596 +1724279101,__unknown,12931,24487 +1724279101,Google,16405,31428 +1724279101,HTTPS,18725,36844 +1724279101,SSL client,16405,31428 +1724279101,ICMP,2418,1680 +1724279101,__unknown,320077,372638 +1724279101,BitTorrent,310,496 +1724279101,Google,30673,83668 +1724279101,DNS,12711,0 +1724279101,HTTP,1816,1514 +1724279101,Microsoft Update,642,508 +1724279101,NetBIOS-dgm,243,0 +1724279101,NTP,900,900 +1724279101,STUN,984,888 +1724279101,Odnoklassniki,2609,7485 +1724279101,HTTPS,116888,339477 +1724279101,SSL client,33282,91153 +1724279101,Microsoft CryptoAPI,1816,1514 +1724279101,ICMP,6376,1140 +1724279101,DNS over HTTPS,10487,33403 +1724279101,__unknown,395223,404827 +1724279101,BitTorrent,153,198 +1724279101,DHCPv6,1141,0 +1724279101,Google APIs,4760,13432 +1724279101,Google,36296,99171 +1724279101,BitTorrent tracker,153,198 +1724279101,DNS,56337,47799 +1724279101,HTTP,100797,1717637 +1724279101,Internet Explorer,822,660 +1724279101,Launchpad,3200,2480 +1724279101,NTP,1260,1260 +1724279101,Advanced Packaging Tool,52310,1645262 +1724279101,HTTPS,124366,295502 +1724279101,Avast,764,782 +1724279101,SSL client,50044,139273 +1724279101,Ubuntu Update Manager,43635,1637868 +1724279101,Yandex,9603,31421 +1724279101,Ubuntu,7175,6750 +1724279101,Microsoft CryptoAPI,1120,924 +1724279101,ICMP,2144,0 +1724279101,Edge Chromium,7271,22240 +1724279101,DNS over HTTPS,12101,45504 +1724279400,__unknown,97756,100914 +1724279400,HTTPS,99719,118822 +1724279400,HTTPS,15321,16814 +1724279400,Google APIs,2087,7371 +1724279400,HTTPS,10566,16044 +1724279400,SSL client,2087,7371 +1724279400,HTTPS,40494,106296 +1724279400,Avast,1254,8420 +1724279400,SSL client,24894,86577 +1724279400,Microsoft,4136,7390 +1724279400,Yandex,17310,61423 +1724279400,GISMETEO,2194,9344 +1724279400,__unknown,32773,191241 +1724279400,Bing,3497,6419 +1724279400,Google,1569,1663 +1724279400,Dell,1051,4365 +1724279400,HTTP,777,847 +1724279400,Steam,2080,4928 +1724279400,HTTPS,449640,544266 +1724279400,Apple sites,3715,11654 +1724279400,Bing Maps,2870,19089 +1724279400,Avast,3905,12603 +1724279400,SSL client,344569,349330 +1724279400,Amazon Web Services,3139,21430 +1724279400,Microsoft,53806,85960 +1724279400,Mail.Ru,71104,71242 +1724279400,Yandex,188201,79650 +1724279400,Office 365,1632,7133 +1724279400,Microsoft Windows Live Services Authentication,8322,23585 +1724279400,Telegram,120,120 +1724279400,DNS over HTTPS,2444,7764 +1724279400,HTTPS,46462,1345149 +1724279400,__unknown,188,229 +1724279400,ICMP,2132,0 +1724279400,__unknown,94,660 +1724279400,CoAP,5292,3888 +1724279400,__unknown,4912,12724 +1724279400,HTTPS,37560,25144 +1724279400,ICMP,1066,0 +1724279400,__unknown,832,440 +1724279400,HTTPS,10835,17641 +1724279400,Google,13768,26165 +1724279400,HTTPS,13768,26165 +1724279400,SSL client,13768,26165 +1724279400,ICMP,3546,3300 +1724279400,__unknown,503609,776491 +1724279400,BitTorrent,310,496 +1724279400,Google APIs,3873,11993 +1724279400,Google Drive,81927,4537582 +1724279400,Google,45329,103181 +1724279400,DNS,17707,0 +1724279400,Gmail,6311,8762 +1724279400,NetBIOS-dgm,250,0 +1724279400,NTP,36810,7560 +1724279400,STUN,984,888 +1724279400,Odnoklassniki,2455,2383 +1724279400,HTTPS,189035,4722532 +1724279400,SSL client,144374,4679154 +1724279400,CloudFront,2231,10303 +1724279400,ICMP,4066,0 +1724279400,DNS over HTTPS,11464,32581 +1724279400,__unknown,271910,514887 +1724279400,DHCPv6,978,0 +1724279400,Google APIs,4618,2741 +1724279400,Google,23310,38458 +1724279400,DNS,47198,39917 +1724279400,Gmail,280359,120791 +1724279400,HTTP,64438,88242 +1724279400,Launchpad,3200,2480 +1724279400,Microsoft Update,1248,1003 +1724279400,NTP,1260,1260 +1724279400,SSL,797,7092 +1724279400,Advanced Packaging Tool,38454,35739 +1724279400,HTTPS,408962,400135 +1724279400,Avast,764,782 +1724279400,SSL client,356743,221691 +1724279400,Ubuntu Update Manager,30366,28743 +1724279400,Yandex,42612,34987 +1724279400,Ubuntu,6666,6352 +1724279400,Microsoft CryptoAPI,3870,4421 +1724279400,Office 365,619,1199 +1724279400,Google Hangouts,797,7092 +1724279400,ICMP,2704,120 +1724279400,Telegram,1905,7285 +1724279400,Edge Chromium,9966,29701 +1724279400,DNS over TLS,5367,23717 +1724279400,DNS over HTTPS,13046,46275 +1724279701,__unknown,55896,140502 +1724279701,HTTPS,38234,1340125 +1724279701,Google,34066,42008 +1724279701,HTTPS,34066,42008 +1724279701,SSL client,34066,42008 +1724279701,__unknown,1162,1760 +1724279701,HTTPS,55570,69683 +1724279701,SSL client,55570,69683 +1724279701,Exchange Online,2289,6498 +1724279701,Telegram,53281,63185 +1724279701,HTTPS,4140,6499 +1724279701,SSL client,4140,6499 +1724279701,Sharepoint Online,4140,6499 +1724279701,HTTPS,16524,19317 +1724279701,Google APIs,4174,14563 +1724279701,HTTPS,51032,57120 +1724279701,SSL client,24944,32752 +1724279701,Google Play,20770,18189 +1724279701,DNS over HTTPS,33894,83418 +1724279701,__unknown,11932,6082 +1724279701,Google Drive,171121,5351201 +1724279701,Microsoft Update,2078,6052 +1724279701,HTTPS,234619,5449901 +1724279701,Mozilla,2142,4579 +1724279701,Avast,997,9299 +1724279701,SSL client,207559,5415179 +1724279701,Microsoft,7372,14637 +1724279701,Mail.Ru,8819,6602 +1724279701,Yandex,7877,9713 +1724279701,GISMETEO,2194,9345 +1724279701,Google Sign in,4959,3751 +1724279701,__unknown,11677,19902 +1724279701,Dropbox,1787,5579 +1724279701,Google,23180,30300 +1724279701,Windows Live,1481,8469 +1724279701,Adobe Software,117284,3159095 +1724279701,HTTP,3395,6184 +1724279701,Advanced Packaging Tool,2088,2080 +1724279701,HTTPS,608590,4055996 +1724279701,Bing Maps,4786,160934 +1724279701,Mozilla,3393,9031 +1724279701,SSL client,524357,3784632 +1724279701,Amazon Web Services,3613,24288 +1724279701,Ubuntu Update Manager,1561,1550 +1724279701,Microsoft,38107,58300 +1724279701,Mail.Ru,108099,109786 +1724279701,Yandex,194013,93409 +1724279701,Ubuntu,527,530 +1724279701,Microsoft CryptoAPI,1307,4104 +1724279701,Office 365,6827,86481 +1724279701,Microsoft Windows Live Services Authentication,21787,38960 +1724279701,DNS over HTTPS,80119,176554 +1724279701,ICMP,3526,0 +1724279701,ICMP,21730,0 +1724279701,HTTPS,31042,26743 +1724279701,__unknown,1414,3852 +1724279701,__unknown,275,291 +1724279701,HTTPS,6664,10799 +1724279701,DNS over HTTPS,13142,33344 +1724279701,__unknown,385468,464514 +1724279701,BitTorrent,310,496 +1724279701,DHCPv6,163,0 +1724279701,Google APIs,8459,16063 +1724279701,Google Drive,7459,9951 +1724279701,Google,28621,63943 +1724279701,DNS,13832,0 +1724279701,HTTP,560,462 +1724279701,NTP,13560,3810 +1724279701,STUN,2844,4188 +1724279701,Odnoklassniki,2609,7363 +1724279701,HTTPS,87756,196195 +1724279701,SSL client,51506,111176 +1724279701,GitHub,2147,6045 +1724279701,Microsoft CryptoAPI,560,462 +1724279701,ICMP,29018,5460 +1724279701,Grammarly,2211,7811 +1724279701,__unknown,394676,336959 +1724279701,BitTorrent,153,537 +1724279701,Google APIs,6291,25857 +1724279701,Google Drive,27722,32306 +1724279701,Google,27708,34993 +1724279701,BitTorrent tracker,153,537 +1724279701,DNS,67273,55546 +1724279701,HTTP,160787,2378455 +1724279701,Launchpad,3200,2480 +1724279701,Microsoft Update,77652,2272264 +1724279701,NetBIOS-dgm,243,0 +1724279701,NTP,12750,3000 +1724279701,Advanced Packaging Tool,26073,23629 +1724279701,Windows Update,72405,1308011 +1724279701,HTTPS,142644,518558 +1724279701,Avast,448,457 +1724279701,SSL client,78489,135255 +1724279701,Ubuntu Update Manager,19938,18499 +1724279701,Yandex,11272,29859 +1724279701,GitHub,1727,5582 +1724279701,Ubuntu,3360,3111 +1724279701,Microsoft CryptoAPI,1963,1706 +1724279701,ICMP,1554,0 +1724279701,Edge Chromium,8852,26322 +1724279701,Grammarly,2223,7775 +1724279701,DNS over HTTPS,20286,74188 +1724280000,__unknown,402412,294041 +1724280000,HTTP,223187499,6276251772 +1724280000,_err_742,223187499,6276251772 +1724280000,HTTPS,694225,172058 +1724280000,SSL client,694225,172058 +1724280000,Yandex,694225,172058 +1724280000,HTTPS,65572,36898 +1724280000,SSL client,65572,36898 +1724280000,Yandex,65572,36898 +1724280000,HTTPS,62889,86975 +1724280000,HTTPS,61003,114805 +1724280000,HTTPS,5732,9898 +1724280000,HTTPS,5335,9990 +1724280000,SSL client,5335,9990 +1724280000,Yandex,5335,9990 +1724280000,Windows Live,45184,11272 +1724280000,HTTPS,50056,19900 +1724280000,SSL client,50056,19900 +1724280000,Yandex,4872,8628 +1724280000,HTTPS,8608,23814 +1724280000,SSL client,8608,23814 +1724280000,Yandex,8608,23814 +1724280000,Windows Live,3337,6421 +1724280000,Skype,2767,8873 +1724280000,HTTPS,35053,141050 +1724280000,SSL client,35053,141050 +1724280000,Microsoft,28949,125756 +1724280000,HTTPS,53877,61305 +1724280000,SSL client,53877,61305 +1724280000,Telegram,53877,61305 +1724280000,HTTPS,30203,31500 +1724280000,__unknown,6291,7862 +1724280000,Dropbox,1842,1962 +1724280000,HTTPS,149174,144726 +1724280000,Mozilla,45437,12489 +1724280000,SSL client,104563,86029 +1724280000,Microsoft,46331,54520 +1724280000,Mail.Ru,8879,6605 +1724280000,GISMETEO,2074,10453 +1724280000,__unknown,12783,16931 +1724280000,Bing,3914,6488 +1724280000,Dropbox,1786,5626 +1724280000,Google APIs,10287,27780 +1724280000,Google,20629,1231551 +1724280000,MSN,10716,17160 +1724280000,HTTP,507,536 +1724280000,Microsoft Update,6124,17329 +1724280000,Skype,3254,7019 +1724280000,YouTube,1829,5790 +1724280000,HTTPS,677358,2520334 +1724280000,WhatsApp,3225,5922 +1724280000,iCloud,9629,17700 +1724280000,Bing Maps,4109,27892 +1724280000,SSL client,500358,2259030 +1724280000,CloudFront,3742,1153 +1724280000,Microsoft,58199,201604 +1724280000,Mail.Ru,132187,136582 +1724280000,Yandex,227195,528622 +1724280000,Telegram,120,120 +1724280000,Xiaomi,6758,26734 +1724280000,Gmail,244770,177043 +1724280000,HTTPS,244770,177043 +1724280000,SSL client,244770,177043 +1724280000,__unknown,215,225 +1724280000,HTTPS,52436,65067 +1724280000,SSL client,52436,65067 +1724280000,ICMP,2870,0 +1724280000,Telegram,43784,53583 +1724280000,DNS over HTTPS,8652,11484 +1724280000,__unknown,8041,6400 +1724280000,DNS over HTTPS,10247,25154 +1724280000,__unknown,966,486 +1724280000,Google,16789,20923 +1724280000,HTTPS,37776,44001 +1724280000,Spotify,2131,9337 +1724280000,SSL client,18920,30260 +1724280000,ICMP,3798,3060 +1724280000,CoAP,1568,1152 +1724280000,__unknown,197857,679658 +1724280000,BitTorrent,310,496 +1724280000,DHCPv6,978,0 +1724280000,Google APIs,39499,26512 +1724280000,Google,91958,525229 +1724280000,DNS,23180,0 +1724280000,HTTP,4059,32439 +1724280000,Microsoft Update,1006,816 +1724280000,NTP,13650,3900 +1724280000,STUN,984,888 +1724280000,HTTPS,208154,689903 +1724280000,Mozilla,1876,4611 +1724280000,SSL client,133333,556352 +1724280000,Microsoft,1705,30521 +1724280000,Microsoft CryptoAPI,2354,1918 +1724280000,ICMP,8446,1200 +1724280000,DNS over HTTPS,15441,47358 +1724280000,__unknown,154498,160538 +1724280000,Bing,4779,7760 +1724280000,DHCPv6,163,0 +1724280000,Google APIs,1279,1664 +1724280000,Google,22312,34914 +1724280000,Chrome,1130,968 +1724280000,DNS,58130,47186 +1724280000,Firefox,1534,1198 +1724280000,Gmail,7428,9835 +1724280000,HTTP,117913,447911 +1724280000,Internet Explorer,822,660 +1724280000,Launchpad,3200,2480 +1724280000,Microsoft Update,1933,1503 +1724280000,NetBIOS-dgm,250,0 +1724280000,NTP,13650,3900 +1724280000,SSL,855,7032 +1724280000,Advanced Packaging Tool,27310,24925 +1724280000,HTTPS,101900,334660 +1724280000,Avast,764,782 +1724280000,SSL client,51741,107970 +1724280000,Ubuntu Update Manager,21079,19725 +1724280000,Microsoft,12996,319306 +1724280000,Yandex,18500,58358 +1724280000,Ubuntu,5156,5009 +1724280000,Microsoft CryptoAPI,4344,3948 +1724280000,Apple Maps,2204,5365 +1724280000,Google Hangouts,855,7032 +1724280000,ICMP,928,0 +1724280000,Telegram,1927,625 +1724280000,Edge Chromium,9379,27699 +1724280000,DNS over HTTPS,7678,25209 +1724280301,__unknown,37080,41013 +1724280301,ICMP,169816,0 +1724280301,HTTPS,46045,49861 +1724280301,HTTPS,36106,1626608 +1724280301,HTTPS,71885,29546 +1724280301,STUN,18204,16502 +1724280301,Dropbox,112901,19881 +1724280301,HTTPS,112901,19881 +1724280301,SSL client,112901,19881 +1724280301,DNS over HTTPS,11677,26221 +1724280301,Adobe Software,318969,1841706 +1724280301,HTTPS,323883,1846790 +1724280301,SSL client,318969,1841706 +1724280301,__unknown,28087,21283 +1724280301,Dropbox,4448,5926 +1724280301,MSN,1040,6868 +1724280301,HTTPS,156527,192880 +1724280301,SSL client,14480,33734 +1724280301,Microsoft,4144,10917 +1724280301,GISMETEO,1875,2824 +1724280301,Microsoft Teams,2973,7199 +1724280301,__unknown,22442,13254 +1724280301,Bing,7206,12932 +1724280301,Dropbox,1996,4758 +1724280301,HTTP,1071,1826 +1724280301,Skype,3333,7885 +1724280301,SSL,1553,1392 +1724280301,TeamViewer,1448,8838 +1724280301,HTTPS,415426,563183 +1724280301,Apple sites,2147,8571 +1724280301,Mozilla,21977,6197 +1724280301,SSL client,299108,375164 +1724280301,Amazon Web Services,3199,21490 +1724280301,Microsoft,23539,40434 +1724280301,VeriSign,1071,1826 +1724280301,Mail.Ru,137107,133272 +1724280301,Yandex,73980,70851 +1724280301,Microsoft CryptoAPI,1071,1826 +1724280301,Exchange Online,1418,7968 +1724280301,Office 365,5996,22195 +1724280301,Microsoft Windows Live Services Authentication,14209,28381 +1724280301,Google Hangouts,1553,1392 +1724280301,__unknown,0,1390 +1724280301,__unknown,2444,11443 +1724280301,ICMP,820,0 +1724280301,__unknown,36047,90340 +1724280301,ICMP,4220,2100 +1724280301,__unknown,355597,2224817 +1724280301,BitTorrent,310,496 +1724280301,Google APIs,31599,19498 +1724280301,Google Drive,21570,27724 +1724280301,Google,33413,80065 +1724280301,DNS,15853,0 +1724280301,HTTP,1157,1432 +1724280301,NTP,630,630 +1724280301,STUN,45048,1110 +1724280301,Odnoklassniki,2609,7499 +1724280301,HTTPS,163014,263094 +1724280301,Apple sites,1470,5456 +1724280301,iCloud,7658,16826 +1724280301,SSL client,112546,159041 +1724280301,Microsoft CryptoAPI,1157,1432 +1724280301,Google Play,14227,1973 +1724280301,ICMP,5288,840 +1724280301,DNS over HTTPS,9966,25195 +1724280301,__unknown,254317,3488956 +1724280301,BitTorrent,153,198 +1724280301,DHCPv6,978,0 +1724280301,Google APIs,3298,9354 +1724280301,Google,28791,55764 +1724280301,BitTorrent tracker,153,198 +1724280301,DNS,53220,48911 +1724280301,HTTP,1729523,81263825 +1724280301,Launchpad,3200,2480 +1724280301,NTP,13560,3810 +1724280301,STUN,3090,4410 +1724280301,Advanced Packaging Tool,1671145,81169408 +1724280301,HTTPS,118053,400535 +1724280301,Avast,764,782 +1724280301,SSL client,46260,113669 +1724280301,Ubuntu Update Manager,1663740,81163146 +1724280301,Microsoft,633,7948 +1724280301,Yandex,13304,49692 +1724280301,GitHub,1727,5581 +1724280301,Ubuntu,5905,5614 +1724280301,Microsoft CryptoAPI,1174,1006 +1724280301,Microsoft WNS,633,7948 +1724280301,ICMP,2090,0 +1724280301,Edge Chromium,9966,29712 +1724280301,DNS over HTTPS,20746,72553 +1724280600,__unknown,44324,57595 +1724280600,HTTPS,33571,14133 +1724280600,HTTPS,2482,2561 +1724280600,HTTPS,25967,21990 +1724280600,SSL client,20775,18523 +1724280600,Google Play,20775,18523 +1724280600,__unknown,2393463,2579382 +1724280600,BITS,1123,788 +1724280600,Dropbox,3342,2538 +1724280600,HTTP,2198,2674 +1724280600,Microsoft Update,1675,5433 +1724280600,HTTPS,62400,76049 +1724280600,Mozilla,14757,10462 +1724280600,SSL client,34728,49708 +1724280600,Microsoft,10592,18444 +1724280600,VeriSign,1075,1886 +1724280600,Yandex,3616,3045 +1724280600,Microsoft CryptoAPI,1075,1886 +1724280600,Office 365,1869,10574 +1724280600,__unknown,88017,21396 +1724280600,Dropbox,2817,4451 +1724280600,Google APIs,2611,6659 +1724280600,Google,6008,13099 +1724280600,HTTP,2811,2346 +1724280600,Microsoft Update,1555,5433 +1724280600,TwitchTV,5623,7089 +1724280600,HTTPS,391092,8110943 +1724280600,Bing Maps,4108,28148 +1724280600,Mozilla,6571,15252 +1724280600,SSL client,209594,381722 +1724280600,Microsoft,24524,50958 +1724280600,Mail.Ru,78937,69217 +1724280600,Yandex,28110,53327 +1724280600,Microsoft CryptoAPI,2125,2160 +1724280600,uTorrent,21956,39024 +1724280600,Exchange Online,2496,15793 +1724280600,Office 365,3088,18271 +1724280600,Microsoft Windows Live Services Authentication,21190,55001 +1724280600,Google,33497,42997 +1724280600,HTTPS,43078,55557 +1724280600,SSL client,43078,55557 +1724280600,DNS over HTTPS,9581,12560 +1724280600,Windows Live,2202,13058 +1724280600,HTTPS,14668,29540 +1724280600,SSL client,2202,13058 +1724280600,__unknown,5081,2847 +1724280600,__unknown,5291,11158 +1724280600,HTTPS,6381,11253 +1724280600,SSL client,2208,2712 +1724280600,ICMP,656,0 +1724280600,DNS over HTTPS,12941,27200 +1724280600,__unknown,432252,459615 +1724280600,BitTorrent,310,496 +1724280600,DHCPv6,163,0 +1724280600,Google APIs,38916,16454 +1724280600,Google,18088,39174 +1724280600,DNS,24215,0 +1724280600,HTTP,1174,1006 +1724280600,NetBIOS-dgm,243,0 +1724280600,NTP,12480,2730 +1724280600,Odnoklassniki,2609,7423 +1724280600,HTTPS,125550,383201 +1724280600,SSL client,69199,75720 +1724280600,Yandex,1133,670 +1724280600,Microsoft CryptoAPI,1174,1006 +1724280600,ICMP,3323,0 +1724280600,Google Sign in,6222,4111 +1724280600,Grammarly,2231,7888 +1724280600,DNS over HTTPS,7670,23736 +1724280600,__unknown,373865,358674 +1724280600,DHCPv6,978,0 +1724280600,Google,44793,102489 +1724280600,DNS,47179,39114 +1724280600,Firefox,807,1130 +1724280600,Gmail,8678,15542 +1724280600,HTTP,79032,109705 +1724280600,Launchpad,3200,2480 +1724280600,Microsoft Update,3230,3220 +1724280600,NTP,2880,2880 +1724280600,Advanced Packaging Tool,32263,29535 +1724280600,HTTPS,153572,433435 +1724280600,Avast,830,848 +1724280600,SSL client,68734,153805 +1724280600,Ubuntu Update Manager,23636,22177 +1724280600,Microsoft,633,7961 +1724280600,VeriSign,1132,4282 +1724280600,Yandex,15476,40622 +1724280600,Ubuntu,6702,6257 +1724280600,Microsoft CryptoAPI,7576,10216 +1724280600,Microsoft WNS,633,7961 +1724280600,ICMP,1904,120 +1724280600,ICMP for IPv6,70,0 +1724280600,Edge Chromium,6744,20876 +1724280600,DNS over HTTPS,18516,53805 +1724280900,HTTPS,26619,19706 +1724280900,HTTPS,4572,8804 +1724280900,DNS over HTTPS,200894,458055 +1724280900,Windows Live,23486,7254 +1724280900,HTTPS,114780,133954 +1724280900,SSL client,114780,133954 +1724280900,Telegram,91294,126700 +1724280900,HTTPS,181481,66027 +1724280900,HTTPS,69346,88067 +1724280900,HTTPS,58318,69586 +1724280900,SSL client,58318,69586 +1724280900,Microsoft,3849,7550 +1724280900,Telegram,54469,62036 +1724280900,HTTPS,63540,39829 +1724280900,__unknown,8624,4464 +1724280900,HTTP,1428,1011 +1724280900,Microsoft Update,1428,1011 +1724280900,HTTPS,52925,75803 +1724280900,Avast,1320,9191 +1724280900,SSL client,17441,34103 +1724280900,Microsoft,7302,18307 +1724280900,Mail.Ru,8819,6605 +1724280900,Microsoft CryptoAPI,1428,1011 +1724280900,__unknown,42231,50520 +1724280900,Bing,3758,6482 +1724280900,Dropbox,1769,1272 +1724280900,Google APIs,401248,177956 +1724280900,Google,35071,62475 +1724280900,HTTP,2148,2020 +1724280900,Skype,3188,7019 +1724280900,Advanced Packaging Tool,2148,2020 +1724280900,HTTPS,891265,748164 +1724280900,Apple sites,1741,8053 +1724280900,iCloud,2776,7730 +1724280900,Avast,3288,12278 +1724280900,SSL client,644294,545038 +1724280900,Ubuntu Update Manager,1621,1490 +1724280900,Microsoft,62155,69290 +1724280900,Mail.Ru,84226,66520 +1724280900,Siri,4005,6406 +1724280900,Yandex,28604,70273 +1724280900,Ubuntu,527,530 +1724280900,Office 365,12465,49284 +1724280900,DNS over HTTPS,230419,530461 +1724280900,HTTPS,41194,20266 +1724280900,HTTPS,2855,7591 +1724280900,HTTPS,31668,26676 +1724280900,__unknown,1125,1268 +1724280900,ICMP,2940,2940 +1724280900,Telegram,1031,608 +1724280900,CoAP,3332,2448 +1724280900,__unknown,3907,13049 +1724280900,HTTPS,3301,5383 +1724280900,ICMP,7162,0 +1724280900,__unknown,477760,475685 +1724280900,BitTorrent,310,496 +1724280900,DHCPv6,163,0 +1724280900,Google APIs,8420,27942 +1724280900,Google,21894,68106 +1724280900,Chrome,1275,869 +1724280900,DNS,13193,0 +1724280900,HTTP,1835,1332 +1724280900,NetBIOS-dgm,250,0 +1724280900,NTP,540,540 +1724280900,Odnoklassniki,2669,7499 +1724280900,HTTPS,128355,233064 +1724280900,SSL client,32983,103547 +1724280900,Microsoft CryptoAPI,560,463 +1724280900,ICMP,3763,60 +1724280900,DNS over HTTPS,5781,19086 +1724280900,__unknown,389861,345104 +1724280900,Google APIs,7963,20074 +1724280900,Google,46430,75569 +1724280900,DNS,50220,44391 +1724280900,HTTP,86905,153691 +1724280900,Internet Explorer,822,660 +1724280900,Launchpad,3200,2480 +1724280900,Microsoft Update,3584,3110 +1724280900,NTP,13470,3720 +1724280900,VKontakte,2293,4931 +1724280900,Odnoklassniki,1848,1203 +1724280900,Steam,2872,53569 +1724280900,Advanced Packaging Tool,34762,31827 +1724280900,HTTPS,165270,378848 +1724280900,Spotify,1838,4674 +1724280900,Avast,382,391 +1724280900,SSL client,82984,154667 +1724280900,Ubuntu Update Manager,27944,26095 +1724280900,Yandex,15087,35713 +1724280900,GitHub,1727,5583 +1724280900,Ubuntu,5318,5088 +1724280900,Microsoft CryptoAPI,5829,5106 +1724280900,ICMP,2058,0 +1724280900,Telegram,1970,697 +1724280900,Google Sign in,6263,4239 +1724280900,Edge Chromium,6744,20874 +1724280900,Grammarly,2242,7852 +1724280900,DNS over TLS,2224,9540 +1724280900,DNS over HTTPS,15917,65573 +1724281200,HTTPS,32834,149748 +1724281200,HTTPS,28779,32583 +1724281200,HTTPS,249402,48131 +1724281200,HTTPS,151406,76881 +1724281200,__unknown,1608,0 +1724281200,HTTPS,27460,49797 +1724281200,Dropbox,126180,21360 +1724281200,HTTPS,136248,42831 +1724281200,SSL client,126180,21360 +1724281200,HTTPS,20546,22660 +1724281200,SSL client,9191,6096 +1724281200,Google Play,9191,6096 +1724281200,__unknown,99820,42642 +1724281200,McAfee,2074,9134 +1724281200,Gmail,10179,5867 +1724281200,Skype,3105,9814 +1724281200,HTTPS,122252,176408 +1724281200,Mozilla,4439,9318 +1724281200,Avast,1254,8236 +1724281200,SSL client,56608,95644 +1724281200,Microsoft,8381,14777 +1724281200,Mail.Ru,19161,14367 +1724281200,Yandex,1133,907 +1724281200,GISMETEO,2134,9280 +1724281200,Grammarly,4748,13944 +1724281200,__unknown,96798,112287 +1724281200,Dropbox,3864,9887 +1724281200,Google APIs,3870,7510 +1724281200,Google,1635,1723 +1724281200,MSN,6129,17684 +1724281200,Dell,1111,4306 +1724281200,HTTP,1818,2110 +1724281200,TwitchTV,5529,7221 +1724281200,Advanced Packaging Tool,1274,1193 +1724281200,HTTPS,373299,723554 +1724281200,Apple sites,1796,4533 +1724281200,Mozilla,1355,4862 +1724281200,Avast,1254,8520 +1724281200,SSL client,232254,364012 +1724281200,Ubuntu Update Manager,1274,1193 +1724281200,Microsoft,56791,78537 +1724281200,Mail.Ru,81523,62876 +1724281200,Yandex,36276,111886 +1724281200,Microsoft CryptoAPI,544,917 +1724281200,Office 365,3036,2730 +1724281200,Dropbox Download,1287,4605 +1724281200,Microsoft Windows Live Services Authentication,14237,27151 +1724281200,Grammarly,12561,9981 +1724281200,__unknown,188,229 +1724281200,ICMP,2624,0 +1724281200,HTTPS,25527,10684 +1724281200,__unknown,1131,588 +1724281200,Google Drive,59668,28125 +1724281200,HTTPS,59668,28125 +1724281200,SSL client,59668,28125 +1724281200,Google,22466,34862 +1724281200,HTTPS,35633,114515 +1724281200,SSL client,22466,34862 +1724281200,ICMP,3972,3480 +1724281200,__unknown,400475,729204 +1724281200,BitTorrent,463,1033 +1724281200,Google APIs,6697,24393 +1724281200,Google,32184,73686 +1724281200,BitTorrent tracker,153,537 +1724281200,DNS,19090,0 +1724281200,Gmail,19456,19218 +1724281200,HTTP,3399,2823 +1724281200,Microsoft Update,3399,2823 +1724281200,NetBIOS-dgm,243,0 +1724281200,NTP,37170,7920 +1724281200,HTTPS,124879,307437 +1724281200,SSL client,60645,122247 +1724281200,Microsoft CryptoAPI,3399,2823 +1724281200,ICMP,4394,0 +1724281200,DNS over HTTPS,10290,30364 +1724281200,__unknown,237123,385336 +1724281200,DHCPv6,1141,0 +1724281200,Google,61824,721571 +1724281200,DNS,50567,46873 +1724281200,Firefox,3042,4087 +1724281200,HTTP,78035,229619 +1724281200,Launchpad,3200,2414 +1724281200,Microsoft Update,1283,1003 +1724281200,NTP,1260,1260 +1724281200,VKontakte,2297,5005 +1724281200,Odnoklassniki,1851,1189 +1724281200,Advanced Packaging Tool,36414,163780 +1724281200,HTTPS,132453,996392 +1724281200,Apple sites,614,550 +1724281200,Avast,830,848 +1724281200,SSL client,79004,757813 +1724281200,Ubuntu Update Manager,27152,155922 +1724281200,Yandex,13784,36805 +1724281200,Ubuntu,6487,5901 +1724281200,Microsoft CryptoAPI,7495,6333 +1724281200,ICMP,2961,0 +1724281200,Telegram,1965,7285 +1724281200,Edge Chromium,6804,21512 +1724281200,DNS over HTTPS,6760,17650 +1724281500,__unknown,114900,118566 +1724281500,HTTPS,30975,35591 +1724281500,HTTPS,11661,21286 +1724281500,__unknown,1418,0 +1724281500,HTTPS,2224,11921 +1724281500,iCloud,2224,11921 +1724281500,SSL client,2224,11921 +1724281500,HTTPS,37106,15036 +1724281500,HTTPS,2934,1624 +1724281500,HTTPS,16103,13932 +1724281500,SSL client,9305,6061 +1724281500,Google Play,9305,6061 +1724281500,__unknown,3404046,5939841 +1724281500,Google APIs,2995,7394 +1724281500,Google,58550,72427 +1724281500,HTTP,871,2221 +1724281500,HTTPS,202783,628730 +1724281500,Avast,1254,8076 +1724281500,SSL client,168892,234476 +1724281500,Microsoft,33262,52064 +1724281500,Yandex,2493,1626 +1724281500,Microsoft CryptoAPI,871,2221 +1724281500,Google Play,64807,71174 +1724281500,Office 365,4202,14303 +1724281500,GISMETEO,2200,9633 +1724281500,__unknown,25497,35303 +1724281500,Google,89530,69351 +1724281500,MSN,3451,9499 +1724281500,Gmail,2206,2270 +1724281500,HTTP,2377,2420 +1724281500,TeamViewer,1584,8893 +1724281500,Advanced Packaging Tool,1870,1884 +1724281500,IMAPS,2206,2270 +1724281500,HTTPS,501249,910740 +1724281500,iCloud,39084,62735 +1724281500,Mozilla,6968,10809 +1724281500,Avast,3084,13533 +1724281500,SSL client,379925,536820 +1724281500,Ubuntu Update Manager,1283,1354 +1724281500,Microsoft,37120,70511 +1724281500,Mail.Ru,72669,84621 +1724281500,King.com,968,4549 +1724281500,Yandex,58321,84165 +1724281500,Ubuntu,587,530 +1724281500,Nvidia,4713,11292 +1724281500,Google Play,35080,36037 +1724281500,Office 365,4886,47073 +1724281500,Microsoft Windows Live Services Authentication,7730,11629 +1724281500,Grammarly,12531,9853 +1724281500,DNS over HTTPS,8000,27558 +1724281500,ICMP,6720,6720 +1724281500,__unknown,6366,9840 +1724281500,SSL,2807,9189 +1724281500,HTTPS,15341,20545 +1724281500,__unknown,966,486 +1724281500,HTTPS,15729,13528 +1724281500,Spotify,2213,8268 +1724281500,SSL client,2213,8268 +1724281500,ICMP,8460,8460 +1724281500,DNS over HTTPS,8807,24168 +1724281500,__unknown,595639,933240 +1724281500,BitTorrent,310,496 +1724281500,Google APIs,5279,17206 +1724281500,Google Drive,7529,10054 +1724281500,Google,43266,83740 +1724281500,DNS,21030,356 +1724281500,NetBIOS-dgm,250,0 +1724281500,NTP,900,900 +1724281500,VKontakte,2354,5052 +1724281500,HTTPS,125330,223979 +1724281500,SSL client,60395,121896 +1724281500,GitHub,1967,5844 +1724281500,ICMP,45692,0 +1724281500,__unknown,325371,468435 +1724281500,DHCPv6,978,0 +1724281500,Google,23233,101911 +1724281500,QQ,414,1581 +1724281500,Chrome,1101,3294 +1724281500,DNS,53812,52209 +1724281500,Gmail,7063,7645 +1724281500,HTTP,57070,198720 +1724281500,Internet Explorer,427,682 +1724281500,Launchpad,3496,2414 +1724281500,Microsoft Update,1287,1001 +1724281500,Mobile Safari,1392,1198 +1724281500,NTP,2970,2970 +1724281500,VKontakte,2357,4999 +1724281500,Advanced Packaging Tool,34010,161574 +1724281500,HTTPS,454073,2839076 +1724281500,Avast,830,848 +1724281500,SSL client,71630,2392588 +1724281500,Ubuntu Update Manager,27483,156438 +1724281500,Yandex,30003,2268609 +1724281500,Ubuntu,4306,4105 +1724281500,Microsoft CryptoAPI,4445,3747 +1724281500,ICMP,2140,0 +1724281500,Google Sign in,6264,4305 +1724281500,Edge Chromium,3282,9473 +1724281500,DNS over HTTPS,15559,56956 +1724281800,__unknown,681159,1108931 +1724281800,Google APIs,15861,40347 +1724281800,HTTPS,15861,40347 +1724281800,SSL client,15861,40347 +1724281800,DNS over HTTPS,267793,602668 +1724281800,STUN,1972151,12137296 +1724281800,HTTPS,131828,149622 +1724281800,HTTPS,8338,5722 +1724281800,__unknown,45620,46336 +1724281800,HTTPS,18154,7136 +1724281800,__unknown,681974,1002619 +1724281800,HTTPS,55033,97744 +1724281800,Avast,1254,10392 +1724281800,SSL client,38613,81493 +1724281800,Microsoft,19459,49547 +1724281800,Mail.Ru,10418,7020 +1724281800,Yandex,5793,6746 +1724281800,Office 365,1689,7788 +1724281800,__unknown,97406,159705 +1724281800,Bing,3728,6542 +1724281800,HTTPS,297751,515919 +1724281800,Avast,1122,8544 +1724281800,SSL client,138622,351278 +1724281800,Amazon Web Services,3199,21490 +1724281800,CloudFront,1509,1062 +1724281800,Microsoft,31385,64016 +1724281800,Mail.Ru,61547,59447 +1724281800,Yandex,24375,51212 +1724281800,Office 365,11757,138965 +1724281800,DNS over HTTPS,2704,11214 +1724281800,Google,411594,496632 +1724281800,HTTPS,411594,496632 +1724281800,SSL client,411594,496632 +1724281800,__unknown,263907,170322 +1724281800,__unknown,0,1390 +1724281800,__unknown,215,225 +1724281800,HTTPS,8880,10474 +1724281800,__unknown,4510,21196 +1724281800,HTTPS,3301,5475 +1724281800,Telegram,1039,500 +1724281800,__unknown,7817,12313 +1724281800,HTTPS,2258,5400 +1724281800,ICMP,2180,0 +1724281800,__unknown,679041,6118487 +1724281800,BitTorrent,463,694 +1724281800,DHCPv6,163,0 +1724281800,Google APIs,3008,11647 +1724281800,Google Drive,9587,11163 +1724281800,Google,35270,85438 +1724281800,BitTorrent tracker,153,198 +1724281800,DNS,20200,0 +1724281800,Gmail,20273,22100 +1724281800,HTTP,1791,1557 +1724281800,Microsoft Update,977,819 +1724281800,NTP,14460,4710 +1724281800,Odnoklassniki,2549,7483 +1724281800,HTTPS,151777,267113 +1724281800,WhatsApp,1834,7898 +1724281800,SSL client,79421,163369 +1724281800,Microsoft,922,7534 +1724281800,Atlassian,3344,10153 +1724281800,Microsoft CryptoAPI,1791,1557 +1724281800,ICMP,7118,1140 +1724281800,ICMP for IPv6,70,0 +1724281800,Google Sign in,4468,7851 +1724281800,DNS over HTTPS,14017,40478 +1724281800,__unknown,265357,414995 +1724281800,Google APIs,8389,21841 +1724281800,Google,17361,57251 +1724281800,DNS,51503,44650 +1724281800,Gmail,25418,29668 +1724281800,HTTP,98796,124937 +1724281800,Internet Explorer,6282,1938 +1724281800,Launchpad,3200,2414 +1724281800,NetBIOS-dgm,243,0 +1724281800,NTP,13470,3720 +1724281800,SSL,797,7093 +1724281800,Advanced Packaging Tool,31967,29322 +1724281800,HTTPS,130681,379222 +1724281800,Mozilla,2058,4535 +1724281800,Avast,830,848 +1724281800,SSL client,75171,184255 +1724281800,Ubuntu Update Manager,23879,22398 +1724281800,Microsoft,1266,15894 +1724281800,VeriSign,566,2141 +1724281800,Yandex,15122,27701 +1724281800,GitHub,1727,5580 +1724281800,Ubuntu,6163,5889 +1724281800,Microsoft CryptoAPI,6200,6889 +1724281800,Microsoft NCSI,974,1040 +1724281800,Microsoft WNS,1266,15894 +1724281800,Google Play,2103,5922 +1724281800,Google Hangouts,797,7093 +1724281800,ICMP,1688,0 +1724281800,Edge Chromium,3162,8189 +1724281800,Grammarly,2162,7779 +1724281800,DNS over TLS,2420,9618 +1724281800,DNS over HTTPS,17165,58298 +1724282100,__unknown,1987219,2096392 +1724282100,HTTPS,37395,1105780 +1724282100,__unknown,1484,2060 +1724282100,HTTPS,44868,55683 +1724282100,__unknown,53789,64479 +1724282100,HTTPS,53623,64108 +1724282100,SSL client,53623,64108 +1724282100,Telegram,53623,64108 +1724282100,HTTPS,37601,1658150 +1724282100,HTTPS,62051,174829 +1724282100,SSL client,62051,174829 +1724282100,Microsoft,7582,112793 +1724282100,Telegram,54469,62036 +1724282100,Dropbox,116012,20940 +1724282100,HTTPS,142115,50114 +1724282100,SSL client,116012,20940 +1724282100,HTTPS,33489,9380 +1724282100,SSL client,33489,9380 +1724282100,Yandex,33489,9380 +1724282100,__unknown,83581,65358 +1724282100,Google,8204,5277 +1724282100,HTTP,558,1139 +1724282100,HTTPS,92260,856740 +1724282100,Avast,1254,8316 +1724282100,SSL client,42141,92952 +1724282100,Microsoft,14210,27843 +1724282100,Mail.Ru,10418,7019 +1724282100,Yandex,6366,36709 +1724282100,Microsoft CryptoAPI,558,1139 +1724282100,Office 365,2247,8927 +1724282100,DNS over HTTPS,7542,26596 +1724282100,__unknown,42078,90429 +1724282100,Bing,1872,9269 +1724282100,Google APIs,3034,7158 +1724282100,Google,3186319,1626242 +1724282100,MSN,2069,13263 +1724282100,iTunes,2249,36833 +1724282100,Skype,3235,7877 +1724282100,HTTPS,3397271,2074060 +1724282100,Apple sites,853,2551 +1724282100,Bing Maps,4104,27889 +1724282100,Mozilla,4728,9596 +1724282100,Avast,1942,6624 +1724282100,SSL client,3330378,1924146 +1724282100,Microsoft,32319,83550 +1724282100,Mail.Ru,61148,45772 +1724282100,Siri,1880,6245 +1724282100,Yandex,20898,34664 +1724282100,Office 365,3728,6613 +1724282100,HTTPS,53789,63892 +1724282100,SSL client,53789,63892 +1724282100,Telegram,53789,63892 +1724282100,HTTPS,56822,38288 +1724282100,HTTPS,32654,27243 +1724282100,CoAP,3724,2736 +1724282100,__unknown,240,6103 +1724282100,ICMP,492,0 +1724282100,__unknown,60,156 +1724282100,HTTPS,19968,12558 +1724282100,__unknown,407865,504716 +1724282100,BitTorrent,310,496 +1724282100,Google APIs,39407,16200 +1724282100,Google,24250,59889 +1724282100,DNS,22728,0 +1724282100,Gmail,8666,15139 +1724282100,HTTP,562,463 +1724282100,NTP,1080,1080 +1724282100,STUN,1860,3300 +1724282100,Odnoklassniki,2669,7499 +1724282100,HTTPS,192796,367525 +1724282100,SSL client,79758,129519 +1724282100,Yandex,2496,22940 +1724282100,Microsoft CryptoAPI,562,463 +1724282100,ICMP,7222,3240 +1724282100,ICMP for IPv6,70,0 +1724282100,Grammarly,2270,7852 +1724282100,DNS over HTTPS,25236,70346 +1724282100,__unknown,328513,312852 +1724282100,BITS,13218,468138 +1724282100,DHCPv6,1141,0 +1724282100,Google APIs,7617,25504 +1724282100,Google,8697,19315 +1724282100,Chrome,1130,968 +1724282100,DNS,41189,39082 +1724282100,HTTP,59475,530656 +1724282100,Launchpad,3200,2348 +1724282100,NetBIOS-dgm,250,0 +1724282100,NTP,12750,3000 +1724282100,Advanced Packaging Tool,25335,23004 +1724282100,HTTPS,61319,154430 +1724282100,Mozilla,2758,1739 +1724282100,Avast,764,782 +1724282100,SSL client,27295,70512 +1724282100,Ubuntu Update Manager,19739,18500 +1724282100,Yandex,3372,13211 +1724282100,GitHub,1787,5581 +1724282100,Ubuntu,2821,2617 +1724282100,Microsoft CryptoAPI,587,503 +1724282100,ICMP,1498,0 +1724282100,Telegram,1995,665 +1724282100,Edge Chromium,6037,17585 +1724282100,DNS over HTTPS,26725,91229 +1724282400,HTTPS,148736,667395 +1724282400,SSL client,148736,667395 +1724282400,Mail.Ru,148736,667395 +1724282400,HTTPS,4138,6377 +1724282400,SSL client,4138,6377 +1724282400,Sharepoint Online,4138,6377 +1724282400,HTTPS,15821,12197 +1724282400,SSL client,15821,12197 +1724282400,Google Play,15821,12197 +1724282400,Google APIs,3522,12605 +1724282400,HTTPS,32488,43919 +1724282400,SSL client,5028,18703 +1724282400,Google Play,1506,6098 +1724282400,__unknown,21525,31434 +1724282400,Dropbox,5761,222554 +1724282400,Google APIs,2613,11991 +1724282400,Google,5234,5144 +1724282400,Gmail,13018,8193 +1724282400,HTTPS,109561,353399 +1724282400,SSL client,68598,308489 +1724282400,Microsoft,9914,19151 +1724282400,Mail.Ru,25622,19524 +1724282400,Yandex,2493,1931 +1724282400,Office 365,1749,10657 +1724282400,GISMETEO,2194,9344 +1724282400,__unknown,33362,35190 +1724282400,Bing,1809,9328 +1724282400,Dropbox,6193,222484 +1724282400,Google APIs,2954,7096 +1724282400,MSN,3269,9504 +1724282400,OpenVPN,0,395 +1724282400,HTTP,5891,11634 +1724282400,Microsoft Update,1490,1264 +1724282400,Skype,1598,8200 +1724282400,VKontakte,17038,28548 +1724282400,HTTPS,276811,686174 +1724282400,iCloud,5727,10666 +1724282400,SSL client,185157,527390 +1724282400,Microsoft,41949,77374 +1724282400,Mail.Ru,72176,61601 +1724282400,Yandex,13718,33202 +1724282400,Google Update,4401,10370 +1724282400,Microsoft CryptoAPI,1490,1264 +1724282400,Apple Maps,2558,7159 +1724282400,Exchange Online,2612,12922 +1724282400,Office 365,7653,23728 +1724282400,Microsoft Windows Live Services Authentication,6375,15734 +1724282400,Telegram,120,120 +1724282400,Grammarly,2086,7003 +1724282400,DNS over HTTPS,877,5975 +1724282400,__unknown,156,66 +1724282400,HTTPS,53755,64114 +1724282400,SSL client,53755,64114 +1724282400,Telegram,53755,64114 +1724282400,DNS over HTTPS,31644,72463 +1724282400,__unknown,2663,1427 +1724282400,Windows Live,3303,19587 +1724282400,HTTPS,52936,57963 +1724282400,SSL client,3303,19587 +1724282400,__unknown,670,60 +1724282400,Google,41050,31371 +1724282400,HTTPS,64880,491772 +1724282400,SSL client,41050,31371 +1724282400,ICMP,3336,0 +1724282400,__unknown,481632,518295 +1724282400,BitTorrent,463,1033 +1724282400,Google APIs,39786,9261 +1724282400,Google Drive,33006,25861 +1724282400,Google,42006,70357 +1724282400,BitTorrent tracker,153,537 +1724282400,DNS,17607,0 +1724282400,Gmail,12869,57712 +1724282400,NTP,25230,5730 +1724282400,VKontakte,2802,6097 +1724282400,HTTPS,171226,215011 +1724282400,Mozilla,5075,6778 +1724282400,SSL client,137815,183952 +1724282400,ICMP,7610,4980 +1724282400,Grammarly,2271,7886 +1724282400,DNS over HTTPS,6018,17726 +1724282400,__unknown,250634,242004 +1724282400,DHCPv6,978,0 +1724282400,Google APIs,1944,6501 +1724282400,Google,55955,98696 +1724282400,DNS,44428,40157 +1724282400,Gmail,5652,8147 +1724282400,HTTP,101014,381520 +1724282400,Launchpad,3084,1918 +1724282400,NTP,450,450 +1724282400,SSL,855,7033 +1724282400,Advanced Packaging Tool,39203,289163 +1724282400,HTTPS,165806,414671 +1724282400,Apple sites,1802,4444 +1724282400,Avast,1146,1173 +1724282400,SSL client,72272,144460 +1724282400,Ubuntu Update Manager,31902,283501 +1724282400,Yandex,7293,28958 +1724282400,Ubuntu,6342,6041 +1724282400,Microsoft CryptoAPI,1174,1006 +1724282400,Google Hangouts,855,7033 +1724282400,ICMP,2295,0 +1724282400,Edge Chromium,9439,28391 +1724282400,DNS over HTTPS,16160,48060 +1724282700,__unknown,1519890,3138248 +1724282700,__unknown,83890,73584 +1724282700,HTTPS,8552,6038 +1724282700,__unknown,1080,22905 +1724282700,HTTPS,14021,19447 +1724282700,SSL client,5787,8289 +1724282700,Yandex,5787,8289 +1724282700,__unknown,2269,1818 +1724282700,Google,1319,1700 +1724282700,HTTPS,80249,127551 +1724282700,Mozilla,5933,5911 +1724282700,SSL client,29743,45027 +1724282700,Microsoft,3960,14654 +1724282700,Mail.Ru,15204,12504 +1724282700,Yandex,1133,907 +1724282700,GISMETEO,2194,9351 +1724282700,__unknown,10635,13492 +1724282700,Bing,3341,6481 +1724282700,Google,27166,855438 +1724282700,MSN,2168,8104 +1724282700,HTTP,4931,10752 +1724282700,Microsoft Update,1880,3869 +1724282700,TwitchTV,5399,7089 +1724282700,HTTPS,489574,1430078 +1724282700,Avast,1314,12126 +1724282700,SSL client,216610,1097662 +1724282700,CloudFront,6207,1093 +1724282700,Microsoft,39764,58488 +1724282700,Mail.Ru,71169,64836 +1724282700,Yandex,31341,43984 +1724282700,Google Update,4331,10370 +1724282700,Microsoft CryptoAPI,600,382 +1724282700,Rambler,15729,8650 +1724282700,Office 365,4062,16317 +1724282700,Microsoft Windows Live Services Authentication,7670,11569 +1724282700,DNS over HTTPS,995,4586 +1724282700,ICMP,4182,0 +1724282700,HTTPS,70627,109417 +1724282700,HTTPS,9458,13414 +1724282700,SSL client,9458,13414 +1724282700,DNS over HTTPS,9458,13414 +1724282700,__unknown,188,229 +1724282700,__unknown,2904,1464 +1724282700,HTTPS,23263,21093 +1724282700,HTTPS,26344,14671 +1724282700,__unknown,60,66 +1724282700,Google,9579,20610 +1724282700,HTTPS,30648,38003 +1724282700,SSL client,9579,20610 +1724282700,__unknown,1222782,1124372 +1724282700,BitTorrent,310,496 +1724282700,DHCPv6,163,0 +1724282700,Google APIs,3221,7871 +1724282700,Google,29006,57906 +1724282700,DNS,18904,0 +1724282700,HTTP,562,463 +1724282700,NetBIOS-dgm,243,0 +1724282700,NTP,12930,3180 +1724282700,VKontakte,2743,6094 +1724282700,Odnoklassniki,2670,7439 +1724282700,HTTPS,105586,278985 +1724282700,SSL client,39751,87548 +1724282700,CloudFront,2111,8238 +1724282700,Microsoft CryptoAPI,562,463 +1724282700,ICMP,30213,1200 +1724282700,DNS over HTTPS,8083,21325 +1724282700,__unknown,326453,295399 +1724282700,Google,18836,27898 +1724282700,DNS,41102,39341 +1724282700,Gmail,8618,15582 +1724282700,HTTP,279615,10210862 +1724282700,Internet Explorer,762,660 +1724282700,Launchpad,3200,2348 +1724282700,NTP,1980,1980 +1724282700,TwitchTV,5465,7023 +1724282700,Steam,6613,121733 +1724282700,Advanced Packaging Tool,32785,29885 +1724282700,HTTPS,156504,350267 +1724282700,Avast,382,391 +1724282700,SSL client,80739,94528 +1724282700,Ubuntu Update Manager,23523,22093 +1724282700,Microsoft,210441,10006426 +1724282700,Yandex,39828,38807 +1724282700,GitHub,1727,5582 +1724282700,Ubuntu,7337,6823 +1724282700,Microsoft CryptoAPI,1147,966 +1724282700,Google Play,3846,8284 +1724282700,ICMP,2282,0 +1724282700,Google Sign in,6263,4379 +1724282700,Edge Chromium,5690,18149 +1724282700,DNS over HTTPS,17478,67028 +1724283001,HTTPS,115767,131990 +1724283001,__unknown,480,420 +1724283001,HTTPS,8807,7020 +1724283001,Windows Live,82326,19159 +1724283001,HTTPS,82326,19159 +1724283001,SSL client,82326,19159 +1724283001,__unknown,4043,8741 +1724283001,Dropbox,125608,21167 +1724283001,HTTPS,188158,201451 +1724283001,SSL client,188158,201451 +1724283001,Microsoft,8081,118248 +1724283001,Telegram,54469,62036 +1724283001,Gmail,14444,11652 +1724283001,HTTPS,179148,5308135 +1724283001,SSL client,18809,25320 +1724283001,Yandex,2859,7709 +1724283001,Google Play,1506,5959 +1724283001,__unknown,40222,1694826 +1724283001,Google Drive,88097,425909 +1724283001,Google,27337,858373 +1724283001,HTTPS,156556,1378916 +1724283001,Avast,1314,11428 +1724283001,SSL client,141500,1360195 +1724283001,Microsoft,19736,46503 +1724283001,Yandex,1193,907 +1724283001,Office 365,1689,7788 +1724283001,GISMETEO,2134,9287 +1724283001,__unknown,83327,53652 +1724283001,Google,146192,183138 +1724283001,MSN,3441,9446 +1724283001,Dell,1111,4307 +1724283001,Skype,3101,7718 +1724283001,HTTPS,754271,728723 +1724283001,Apple sites,1862,4534 +1724283001,iCloud,9972,17979 +1724283001,SSL client,478946,542140 +1724283001,Microsoft,28300,55678 +1724283001,Mail.Ru,76353,69622 +1724283001,Yandex,187984,117387 +1724283001,Exchange Online,1330,6455 +1724283001,Office 365,9457,37448 +1724283001,Microsoft Windows Live Services Authentication,8374,21542 +1724283001,Malwarebytes,1469,6886 +1724283001,DNS over HTTPS,4532,21571 +1724283001,__unknown,0,1390 +1724283001,__unknown,94,660 +1724283001,__unknown,1765,10899 +1724283001,HTTPS,3275,6611 +1724283001,SSL client,3275,6611 +1724283001,Siri,3275,6611 +1724283001,ICMP,43296,0 +1724283001,__unknown,907,588 +1724283001,HTTPS,3211,5340 +1724283001,ICMP,656,0 +1724283001,Telegram,907,588 +1724283001,DNS over HTTPS,0,1390 +1724283001,__unknown,15122,28213 +1724283001,Google,28538,19758 +1724283001,SSL,2709,9191 +1724283001,HTTPS,66851,52509 +1724283001,SSL client,28538,19758 +1724283001,ICMP,2542,0 +1724283001,__unknown,389031,446974 +1724283001,BitTorrent,463,694 +1724283001,DHCPv6,978,0 +1724283001,Google APIs,6876,24064 +1724283001,Google,29725,79587 +1724283001,Kaspersky,608,607 +1724283001,BitTorrent tracker,153,198 +1724283001,DNS,19148,0 +1724283001,Gmail,7197,4841 +1724283001,HTTP,1782,1613 +1724283001,NetBIOS-dgm,250,0 +1724283001,NTP,12840,3090 +1724283001,STUN,3720,6600 +1724283001,VKontakte,2803,6086 +1724283001,Odnoklassniki,4517,8954 +1724283001,HTTPS,108022,389902 +1724283001,SSL client,58812,135114 +1724283001,CloudFront,1475,7365 +1724283001,Microsoft CryptoAPI,1174,1006 +1724283001,ICMP,6822,3780 +1724283001,Google Sign in,6219,4217 +1724283001,DNS over HTTPS,5778,17538 +1724283001,__unknown,278965,299130 +1724283001,DHCPv6,163,0 +1724283001,Google APIs,11810,33611 +1724283001,Google Drive,20458,445594 +1724283001,Google,44289,156760 +1724283001,DNS,48848,42155 +1724283001,Gmail,273755,111406 +1724283001,HTTP,50238,69453 +1724283001,Launchpad,3200,2348 +1724283001,Microsoft Update,1288,1002 +1724283001,NTP,13290,3540 +1724283001,Odnoklassniki,1851,1189 +1724283001,Advanced Packaging Tool,29132,26573 +1724283001,HTTPS,424434,963389 +1724283001,Spotify,1987,8112 +1724283001,iCloud,925,6552 +1724283001,Avast,764,782 +1724283001,SSL client,394724,800855 +1724283001,Ubuntu Update Manager,23488,22033 +1724283001,Yandex,34733,21276 +1724283001,Ubuntu,3786,3571 +1724283001,Microsoft CryptoAPI,1288,1002 +1724283001,ICMP,1620,0 +1724283001,Telegram,1965,7361 +1724283001,Edge Chromium,7211,21594 +1724283001,DNS over TLS,4736,19227 +1724283001,DNS over HTTPS,29720,95716 +1724283301,__unknown,8107851,11956479 +1724283301,__unknown,1244,1838 +1724283301,Gmail,6954,15993 +1724283301,IMAPS,6954,15993 +1724283301,SSL client,6954,15993 +1724283301,HTTPS,3291,2331 +1724283301,HTTPS,47805,14128 +1724283301,SSL client,47805,14128 +1724283301,Google Play,47805,14128 +1724283301,__unknown,45792,51450 +1724283301,Google APIs,4114,14377 +1724283301,HTTPS,97150,100349 +1724283301,SSL client,92016,94430 +1724283301,Google Play,87902,80053 +1724283301,__unknown,23334,23343 +1724283301,Dropbox,3407,1378 +1724283301,Google,8208,5318 +1724283301,HTTPS,47487,45634 +1724283301,Mozilla,2088,4579 +1724283301,Avast,1260,8935 +1724283301,SSL client,21169,27043 +1724283301,Microsoft,2191,3666 +1724283301,Yandex,2493,1802 +1724283301,Office 365,1522,1365 +1724283301,__unknown,19202,25422 +1724283301,Dropbox,6648,8429 +1724283301,Windows Live,5346,8468 +1724283301,HTTP,1765,8964 +1724283301,Microsoft Update,53733,34455 +1724283301,Steam,2131,4984 +1724283301,Advanced Packaging Tool,569,566 +1724283301,HTTPS,565112,787756 +1724283301,Mozilla,2302,4679 +1724283301,SSL client,460460,580235 +1724283301,Microsoft,86130,290354 +1724283301,Mail.Ru,64894,60702 +1724283301,Yandex,226287,129388 +1724283301,Ubuntu,1072,1017 +1724283301,Microsoft WNS,693,7947 +1724283301,Office 365,1385,7489 +1724283301,Microsoft Visual Studio,4868,5427 +1724283301,Grammarly,5118,13889 +1724283301,DNS over HTTPS,3698,11587 +1724283301,DeepL Translator,2311,19918 +1724283301,__unknown,9485,13260 +1724283301,HTTPS,32534,27003 +1724283301,ICMP,820,0 +1724283301,__unknown,674,14001 +1724283301,__unknown,60,66 +1724283301,HTTPS,7471,14800 +1724283301,ICMP,1980,1980 +1724283301,__unknown,589874,535830 +1724283301,BitTorrent,310,496 +1724283301,Google APIs,2827,11316 +1724283301,Google,27307,62686 +1724283301,Windows Live,5101,9494 +1724283301,DNS,18253,0 +1724283301,HTTP,560,463 +1724283301,NTP,450,450 +1724283301,STUN,32478,222 +1724283301,VKontakte,2803,6155 +1724283301,Odnoklassniki,4609,13813 +1724283301,HTTPS,101899,247075 +1724283301,SSL client,44775,108197 +1724283301,Microsoft CryptoAPI,560,463 +1724283301,ICMP,6070,0 +1724283301,DNS over HTTPS,17579,50074 +1724283301,__unknown,403346,3297003 +1724283301,DHCPv6,978,0 +1724283301,Google Drive,8908,11068 +1724283301,Google,24109,53065 +1724283301,DNS,51853,46383 +1724283301,Gmail,6745,7856 +1724283301,HTTP,63088,428677 +1724283301,Launchpad,3200,2480 +1724283301,Microsoft Update,2765,315468 +1724283301,NetBIOS-dgm,243,0 +1724283301,NTP,15180,5430 +1724283301,Odnoklassniki,1911,1255 +1724283301,Advanced Packaging Tool,28970,26363 +1724283301,HTTPS,119735,394956 +1724283301,Avast,830,848 +1724283301,SSL client,50651,104486 +1724283301,Ubuntu Update Manager,19708,18439 +1724283301,Microsoft,693,7948 +1724283301,Yandex,7322,28693 +1724283301,Ubuntu,6912,6362 +1724283301,Microsoft CryptoAPI,1403,1243 +1724283301,Microsoft WNS,693,7948 +1724283301,ICMP,2274,0 +1724283301,Google Sign in,1325,5805 +1724283301,Edge Chromium,10266,28998 +1724283301,Grammarly,2241,7855 +1724283301,DNS over HTTPS,18103,65624 +1724283599,Google,350697,172455 +1724283599,HTTPS,350697,172455 +1724283599,SSL client,350697,172455 +1724283599,HTTPS,45819,70618 +1724283599,SSL client,45819,70618 +1724283599,Telegram,45819,70618 +1724283599,VKontakte,84672,20221 +1724283599,HTTPS,138461,84173 +1724283599,SSL client,138461,84173 +1724283599,Telegram,53789,63952 +1724283599,HTTPS,14383,14842 +1724283599,HTTPS,3567,3430 +1724283599,__unknown,2148,1698 +1724283599,Google APIs,11888,38156 +1724283599,Google Drive,9460,11258 +1724283599,TeamViewer,1510,8867 +1724283599,HTTPS,349306,148294 +1724283599,SSL client,58592,101330 +1724283599,Microsoft,26260,33650 +1724283599,Yandex,7952,8034 +1724283599,Office 365,1522,1365 +1724283599,__unknown,33156,45162 +1724283599,Google APIs,2610,7011 +1724283599,Google,463150,269086 +1724283599,Gmail,11152,22752 +1724283599,HTTP,6324,13930 +1724283599,Steam,4104,9839 +1724283599,HTTPS,1097189,1311291 +1724283599,Bing Maps,5560,38267 +1724283599,Avast,8106,34657 +1724283599,SSL client,969113,836585 +1724283599,CloudFront,3742,1093 +1724283599,Microsoft,60565,120824 +1724283599,Mail.Ru,120825,109199 +1724283599,Yandex,265963,150863 +1724283599,Google Update,4372,10304 +1724283599,Office 365,5016,46690 +1724283599,Microsoft Windows Live Services Authentication,6495,17388 +1724283599,Grammarly,12550,9928 +1724283599,DNS over HTTPS,77627,166806 +1724283599,__unknown,215,225 +1724283599,HTTPS,7902,10828 +1724283599,SSL client,7902,10828 +1724283599,DNS over HTTPS,7902,10828 +1724283599,HTTPS,8394,11534 +1724283599,SSL client,8394,11534 +1724283599,ICMP,2460,0 +1724283599,DNS over HTTPS,8394,11534 +1724283599,Google,61378,40481 +1724283599,HTTPS,61378,40481 +1724283599,SSL client,61378,40481 +1724283599,HTTPS,25851,10195 +1724283599,__unknown,584,392 +1724283599,Google,14464,17927 +1724283599,HTTPS,20952,32354 +1724283599,SSL client,14464,17927 +1724283599,ICMP,1312,0 +1724283599,__unknown,430048,399240 +1724283599,BitTorrent,463,1033 +1724283599,DHCPv6,163,0 +1724283599,Google APIs,2887,9365 +1724283599,Google Drive,9528,11142 +1724283599,BitTorrent tracker,153,537 +1724283599,DNS,19144,0 +1724283599,NTP,12840,3090 +1724283599,VKontakte,2804,6085 +1724283599,Odnoklassniki,2609,7500 +1724283599,HTTPS,71063,130104 +1724283599,Mozilla,1876,4611 +1724283599,SSL client,26844,50372 +1724283599,Microsoft,922,7534 +1724283599,ICMP,6658,3600 +1724283599,Google Sign in,6218,4135 +1724283599,DNS over HTTPS,17509,47474 +1724283599,__unknown,232581,241958 +1724283599,Apple Update,1882,5212 +1724283599,Bing,4660,7696 +1724283599,DHCPv6,978,0 +1724283599,Google APIs,3016,7142 +1724283599,Google,12807,38023 +1724283599,DNS,44290,38777 +1724283599,Gmail,25506,79704 +1724283599,HTTP,72891,96072 +1724283599,Internet Explorer,762,660 +1724283599,Launchpad,3200,2480 +1724283599,Microsoft Update,1929,1521 +1724283599,NetBIOS-dgm,250,0 +1724283599,NTP,25950,6450 +1724283599,SSL,855,7032 +1724283599,Odnoklassniki,1942,6326 +1724283599,Advanced Packaging Tool,34596,31661 +1724283599,HTTPS,142048,529198 +1724283599,Apple sites,2051,7122 +1724283599,iCloud,5903,10995 +1724283599,Avast,830,848 +1724283599,SSL client,90203,240794 +1724283599,Ubuntu Update Manager,26604,24809 +1724283599,Microsoft,699,8014 +1724283599,Yandex,14274,51962 +1724283599,GitHub,1727,5581 +1724283599,Ubuntu,6917,6673 +1724283599,Microsoft CryptoAPI,2489,1983 +1724283599,Microsoft WNS,699,8014 +1724283599,Google Play,13418,10284 +1724283599,Google Hangouts,855,7032 +1724283599,ICMP,3014,0 +1724283599,Telegram,1703,589 +1724283599,Edge Chromium,6744,20871 +1724283599,DNS over TLS,1079,4770 +1724283599,DNS over HTTPS,15745,51971 +1724283900,__unknown,958510,332280 +1724283900,HTTPS,204534,72573 +1724283900,Dropbox,112110,19820 +1724283900,HTTPS,197439,122368 +1724283900,SSL client,166579,81796 +1724283900,Telegram,54469,61976 +1724283900,HTTPS,31721,25891 +1724283900,SSL client,20733,18288 +1724283900,Google Play,20733,18288 +1724283900,__unknown,698981,972914 +1724283900,Dropbox,1689,1472 +1724283900,Google Drive,19811,384957 +1724283900,HTTPS,356739,3538161 +1724283900,SSL client,82788,448690 +1724283900,Microsoft,9744,18969 +1724283900,Google Play,49735,35504 +1724283900,Office 365,1809,7788 +1724283900,__unknown,43546,38200 +1724283900,Bing,1929,9271 +1724283900,Dropbox,6558,12069 +1724283900,Google APIs,5033,9340 +1724283900,Google,3060,3260 +1724283900,Gmail,4351,10510 +1724283900,Skype,6410,15780 +1724283900,HTTPS,410373,638618 +1724283900,iCloud,4217,8693 +1724283900,Avast,1260,9255 +1724283900,SSL client,304547,455457 +1724283900,Microsoft,53683,80101 +1724283900,Mail.Ru,94078,94980 +1724283900,Yandex,86077,83263 +1724283900,Google Play,12234,19649 +1724283900,Office 365,1881,37268 +1724283900,Microsoft Windows Live Services Authentication,21054,54957 +1724283900,Grammarly,2722,7061 +1724283900,__unknown,170260,217275 +1724283900,__unknown,2910,1530 +1724283900,HTTPS,27964,11998 +1724283900,__unknown,1020,680 +1724283900,HTTPS,18529,30485 +1724283900,SSL client,18529,30485 +1724283900,Yandex,5072,8137 +1724283900,Telegram,13457,22348 +1724283900,__unknown,20777,21796 +1724283900,Google,3073,13083 +1724283900,Gmail,14777,11120 +1724283900,HTTPS,21768,92060 +1724283900,SSL client,17850,24203 +1724283900,ICMP,5894,4500 +1724283900,__unknown,579910,533336 +1724283900,BitTorrent,408,496 +1724283900,DHCPv6,163,0 +1724283900,Google APIs,49558,64472 +1724283900,Google Drive,328517,4910725 +1724283900,Google,153544,51103 +1724283900,BitTorrent tracker,98,0 +1724283900,DNS,15365,0 +1724283900,HTTP,1118,1607 +1724283900,NTP,1170,1170 +1724283900,VKontakte,2744,6086 +1724283900,Odnoklassniki,2609,7559 +1724283900,HTTPS,644730,5230272 +1724283900,SSL client,579971,5073525 +1724283900,Yandex,1133,670 +1724283900,Microsoft CryptoAPI,611,1074 +1724283900,Google Play,41866,32910 +1724283900,ICMP,6078,1680 +1724283900,DNS over HTTPS,10725,26821 +1724283900,__unknown,1084230,328131 +1724283900,Google APIs,6321,14381 +1724283900,Google,75888,122765 +1724283900,Chrome,664,1061 +1724283900,DNS,50348,46381 +1724283900,HTTP,86092,102317 +1724283900,Kerberos,180,0 +1724283900,Launchpad,3200,2480 +1724283900,Microsoft Update,1964,1654 +1724283900,NTP,450,450 +1724283900,Odnoklassniki,3699,2376 +1724283900,Advanced Packaging Tool,29164,26610 +1724283900,HTTPS,143810,353152 +1724283900,Avast,764,782 +1724283900,SSL client,104185,180487 +1724283900,Ubuntu Update Manager,21172,19818 +1724283900,Yandex,10373,34279 +1724283900,Ubuntu,5708,5230 +1724283900,Microsoft CryptoAPI,3111,2620 +1724283900,ICMP,1914,0 +1724283900,ICMP for IPv6,70,0 +1724283900,Google Sign in,6266,4142 +1724283900,Edge Chromium,6744,20929 +1724283900,Grammarly,2223,7853 +1724283900,DNS over HTTPS,15748,54933 +1724284199,HTTPS,53623,63952 +1724284199,SSL client,53623,63952 +1724284199,Telegram,53623,63952 +1724284199,__unknown,50141,52356 +1724284199,Skype,6804,17680 +1724284199,HTTPS,16136,142828 +1724284199,SSL client,16136,142828 +1724284199,Microsoft,9332,125148 +1724284199,__unknown,1140,0 +1724284199,__unknown,360,7635 +1724284199,Google APIs,1911,6250 +1724284199,HTTPS,66552,63153 +1724284199,SSL client,64248,61604 +1724284199,Google Play,62337,55354 +1724284199,Dropbox,3270,10724 +1724284199,Gmail,10401,5710 +1724284199,HTTP,1009,1401 +1724284199,HTTPS,81652,190076 +1724284199,Mozilla,2142,4639 +1724284199,Avast,2442,18809 +1724284199,SSL client,51370,164873 +1724284199,Microsoft,16640,38827 +1724284199,VeriSign,1009,1401 +1724284199,Yandex,8737,59433 +1724284199,Microsoft CryptoAPI,1009,1401 +1724284199,Google Play,4375,8813 +1724284199,Office 365,3363,17918 +1724284199,__unknown,229657,91080 +1724284199,Bing,9197,22290 +1724284199,Google,60743,70645 +1724284199,MSN,3266,9506 +1724284199,HTTP,3619,3362 +1724284199,Microsoft Update,1560,1521 +1724284199,Skype,5962,16324 +1724284199,TwitchTV,5499,7221 +1724284199,HTTPS,443600,724926 +1724284199,Apple sites,1796,4534 +1724284199,Bing Maps,1417,8805 +1724284199,Mozilla,4286,9398 +1724284199,SSL client,351370,533915 +1724284199,Microsoft,39492,68918 +1724284199,Mail.Ru,101339,107993 +1724284199,Yandex,36449,52071 +1724284199,Microsoft CryptoAPI,3619,3362 +1724284199,Google Play,33894,44944 +1724284199,Exchange Online,3018,12938 +1724284199,Office 365,19234,56031 +1724284199,Microsoft Windows Live Services Authentication,13169,32486 +1724284199,Grammarly,12609,9811 +1724284199,CoAP,6664,4896 +1724284199,__unknown,1623,10807 +1724284199,__unknown,899,527 +1724284199,SSL,2807,9191 +1724284199,HTTPS,61975,44564 +1724284199,__unknown,385,5002 +1724284199,HTTPS,8201,12869 +1724284199,SSL client,2274,3205 +1724284199,DNS over HTTPS,2274,3205 +1724284199,__unknown,461512,873037 +1724284199,BitTorrent,463,694 +1724284199,Google APIs,45348,16456 +1724284199,Google Drive,5972,9585 +1724284199,Google,24248,62063 +1724284199,BitTorrent tracker,153,198 +1724284199,DNS,22289,0 +1724284199,Gmail,13128,10585 +1724284199,HTTP,1147,965 +1724284199,NetBIOS-dgm,243,0 +1724284199,NTP,720,720 +1724284199,STUN,1860,3300 +1724284199,TFTP,61,0 +1724284199,VKontakte,2809,6620 +1724284199,HTTPS,159670,389438 +1724284199,SSL client,97723,109536 +1724284199,MDNS,630,0 +1724284199,Microsoft CryptoAPI,1147,965 +1724284199,ICMP,4363,120 +1724284199,Google Sign in,6218,4227 +1724284199,DNS over HTTPS,5072,15586 +1724284199,__unknown,563977,743629 +1724284199,DHCPv6,1141,0 +1724284199,Google APIs,2157,7168 +1724284199,Google,167227,32391 +1724284199,DNS,47438,40205 +1724284199,Gmail,15769,19302 +1724284199,HTTP,76176,521243 +1724284199,Launchpad,3200,2414 +1724284199,Microsoft Update,2575,2025 +1724284199,NTP,13020,3270 +1724284199,SSL,855,7033 +1724284199,STUN,1558,1406 +1724284199,Steam,2656,73103 +1724284199,Advanced Packaging Tool,46208,398497 +1724284199,HTTPS,322572,401873 +1724284199,WhatsApp,1966,7986 +1724284199,Apple sites,1802,4509 +1724284199,Avast,448,457 +1724284199,SSL client,204226,100646 +1724284199,Ubuntu Update Manager,32902,295274 +1724284199,VeriSign,566,2140 +1724284199,Yandex,16988,37963 +1724284199,Linux Mint,928,996 +1724284199,Ubuntu,7618,7239 +1724284199,Microsoft CryptoAPI,5445,6187 +1724284199,Google Hangouts,855,7033 +1724284199,ICMP,1620,60 +1724284199,Edge Chromium,4768,17339 +1724284199,DNS over HTTPS,19126,59172 +1724284500,HTTPS,92311,191929 +1724284500,SSL client,92311,191929 +1724284500,Yandex,92311,191929 +1724284500,HTTPS,16593,31710 +1724284500,SSL client,16593,31710 +1724284500,Yandex,16593,31710 +1724284500,HTTPS,86817,4574672 +1724284500,HTTPS,12604,15156 +1724284500,HTTPS,6482,6094 +1724284500,SSL client,6482,6094 +1724284500,Yandex,6482,6094 +1724284500,HTTPS,4344,8746 +1724284500,SSL client,4344,8746 +1724284500,Yandex,4344,8746 +1724284500,HTTPS,11437,9179 +1724284500,Google APIs,16278,14284 +1724284500,HTTPS,82645,65026 +1724284500,SSL client,50580,28731 +1724284500,Google Play,34302,14447 +1724284500,HTTPS,5979,6453 +1724284500,ICMP,21730,0 +1724284500,__unknown,15404,8388 +1724284500,Google,7961,16404 +1724284500,HTTPS,70014,119198 +1724284500,Avast,1254,8108 +1724284500,SSL client,50203,96258 +1724284500,Microsoft,12843,31617 +1724284500,Mail.Ru,8851,6605 +1724284500,Yandex,11036,14904 +1724284500,Office 365,1050,5342 +1724284500,GISMETEO,2194,9347 +1724284500,Google Sign in,5014,3931 +1724284500,__unknown,30739,32772 +1724284500,Google APIs,5837,9037 +1724284500,HTTP,3591,2946 +1724284500,Microsoft Update,4001,11453 +1724284500,Skype,2584,8266 +1724284500,HTTPS,589006,955544 +1724284500,Apple sites,1846,8573 +1724284500,iCloud,23626,62466 +1724284500,Avast,4548,21561 +1724284500,SSL client,347705,450197 +1724284500,CloudFront,2265,1747 +1724284500,Microsoft,43333,48226 +1724284500,Mail.Ru,172895,172415 +1724284500,Yandex,82160,97104 +1724284500,Google Update,3057,2188 +1724284500,Microsoft CryptoAPI,534,758 +1724284500,Microsoft Windows Live Services Authentication,7667,11537 +1724284500,Telegram,180,180 +1724284500,DNS over HTTPS,7834,28415 +1724284500,HTTPS,53623,63958 +1724284500,SSL client,53623,63958 +1724284500,Telegram,53623,63958 +1724284500,__unknown,4680,6727 +1724284500,HTTPS,8814,10253 +1724284500,__unknown,11097,14263 +1724284500,HTTPS,31874,27251 +1724284500,__unknown,2678,1556 +1724284500,Telegram,811,584 +1724284500,HTTPS,3241,5416 +1724284500,ICMP,2520,0 +1724284500,__unknown,442068,434375 +1724284500,BitTorrent,310,496 +1724284500,Google APIs,2124,6892 +1724284500,Google,34485,87303 +1724284500,Chrome,1275,869 +1724284500,DNS,17428,0 +1724284500,HTTP,3982,3197 +1724284500,Microsoft Update,1041,827 +1724284500,NetBIOS-dgm,250,0 +1724284500,NTP,1260,1260 +1724284500,STUN,2666,4262 +1724284500,VKontakte,2803,6085 +1724284500,HTTPS,150766,263089 +1724284500,SSL client,39412,100280 +1724284500,Microsoft CryptoAPI,2200,1795 +1724284500,ICMP,36954,5400 +1724284500,DNS over HTTPS,12006,30961 +1724284500,__unknown,297279,274843 +1724284500,DHCPv6,978,0 +1724284500,Google APIs,2350,6685 +1724284500,Google,39173,125605 +1724284500,Chrome,3110,3141 +1724284500,DNS,44150,42055 +1724284500,HTTP,75950,101286 +1724284500,Internet Explorer,822,660 +1724284500,Launchpad,3200,2480 +1724284500,Microsoft Update,1283,1172 +1724284500,NTP,450,450 +1724284500,YouTube,1437,6208 +1724284500,Advanced Packaging Tool,31347,28779 +1724284500,HTTPS,154851,607134 +1724284500,Avast,877,4464 +1724284500,SSL client,58822,173625 +1724284500,Ubuntu Update Manager,23355,21987 +1724284500,VeriSign,566,2140 +1724284500,Mail.Ru,4077,5900 +1724284500,Yandex,12520,34369 +1724284500,Ubuntu,6492,6144 +1724284500,Microsoft CryptoAPI,5789,8384 +1724284500,ICMP,2513,0 +1724284500,Edge Chromium,5690,18137 +1724284500,DNS over HTTPS,16424,55954 +1724284801,HTTPS,176394,194949 +1724284801,SSL client,176394,194949 +1724284801,Yandex,176394,194949 +1724284801,HTTPS,27944,65776 +1724284801,SSL client,27944,65776 +1724284801,Yandex,27944,65776 +1724284801,HTTPS,22282,28142 +1724284801,SSL client,22282,28142 +1724284801,Yandex,22282,28142 +1724284801,HTTPS,1785081,35608852 +1724284801,HTTPS,91638,127904 +1724284801,SSL client,91638,127904 +1724284801,Telegram,91638,127904 +1724284801,HTTPS,94626,420658 +1724284801,SSL client,94626,420658 +1724284801,Mail.Ru,94626,420658 +1724284801,HTTPS,8832,11659 +1724284801,SSL client,8832,11659 +1724284801,DNS over HTTPS,8832,11659 +1724284801,HTTPS,2795,1624 +1724284801,Dropbox,131066,21533 +1724284801,HTTPS,144362,48764 +1724284801,SSL client,131066,21533 +1724284801,HTTPS,7200,12471 +1724284801,SSL client,3414,8719 +1724284801,Yandex,3414,8719 +1724284801,__unknown,29119,46077 +1724284801,Google,44092,73282 +1724284801,Gmail,10173,6163 +1724284801,Skype,3034,9680 +1724284801,HTTPS,182088,263181 +1724284801,Mozilla,10011,14922 +1724284801,SSL client,116428,183555 +1724284801,Microsoft,27129,45497 +1724284801,Mail.Ru,14846,16591 +1724284801,Yandex,4949,8073 +1724284801,GISMETEO,2194,9347 +1724284801,__unknown,579661,750263 +1724284801,Bing,4870,87095 +1724284801,Google,3481,10729 +1724284801,MSN,3566,9503 +1724284801,Dell,1111,4306 +1724284801,Skype,5682,93187 +1724284801,SSL,1498,1392 +1724284801,HTTPS,567659,1107138 +1724284801,Apple sites,2129,7229 +1724284801,Mozilla,4721,10242 +1724284801,Avast,1254,9342 +1724284801,SSL client,278419,576669 +1724284801,Amazon Web Services,3139,21490 +1724284801,Microsoft,45508,84088 +1724284801,Mail.Ru,136172,121707 +1724284801,Yandex,56381,100252 +1724284801,Microsoft Windows Live Services Authentication,7741,11689 +1724284801,Google Hangouts,1498,1392 +1724284801,ICMP,19740,19680 +1724284801,Firefox Update,1166,4418 +1724284801,Google,20684,19537 +1724284801,HTTPS,20684,19537 +1724284801,SSL client,20684,19537 +1724284801,Google,85423,577099 +1724284801,HTTPS,85423,577099 +1724284801,SSL client,85423,577099 +1724284801,__unknown,1708,844 +1724284801,Google,64524,31454 +1724284801,HTTPS,64524,31454 +1724284801,SSL client,64524,31454 +1724284801,ICMP,820,0 +1724284801,__unknown,180,1594 +1724284801,HTTPS,67195,87012 +1724284801,SSL client,49577,73183 +1724284801,Telegram,49577,73183 +1724284801,CoAP,2548,1872 +1724284801,__unknown,616417,508570 +1724284801,BitTorrent,463,1033 +1724284801,DHCPv6,163,0 +1724284801,Google APIs,10710,24480 +1724284801,Google Drive,74908,153886 +1724284801,Google,35425,89239 +1724284801,BitTorrent tracker,153,537 +1724284801,DNS,18579,0 +1724284801,Gmail,9994,39374 +1724284801,HTTP,2193,1874 +1724284801,Microsoft Update,1377,1134 +1724284801,NetBIOS-dgm,243,0 +1724284801,NTP,12570,2820 +1724284801,STUN,1860,3300 +1724284801,VKontakte,2743,6024 +1724284801,Odnoklassniki,2669,7500 +1724284801,HTTPS,252036,1642225 +1724284801,SSL client,136449,320503 +1724284801,Microsoft CryptoAPI,2193,1874 +1724284801,ICMP,10544,0 +1724284801,DNS over HTTPS,7179,19275 +1724284801,__unknown,316981,359359 +1724284801,Google APIs,5988,16058 +1724284801,Google,39607,81918 +1724284801,DNS,47521,42603 +1724284801,Firefox,1481,1789 +1724284801,Gmail,6690,7434 +1724284801,HTTP,132489,712015 +1724284801,Launchpad,3200,2414 +1724284801,Microsoft Update,36591,577705 +1724284801,NTP,37800,8550 +1724284801,Advanced Packaging Tool,28917,26305 +1724284801,Windows Update,32709,574551 +1724284801,HTTPS,382083,2061818 +1724284801,Apple sites,1802,4445 +1724284801,Avast,437,1261 +1724284801,Opera,381,680 +1724284801,SSL client,69506,142572 +1724284801,CloudFront,2697,4095 +1724284801,Ubuntu Update Manager,19655,18447 +1724284801,Yandex,15075,38389 +1724284801,Ubuntu,7337,6819 +1724284801,Microsoft CryptoAPI,8408,6922 +1724284801,ICMP,1954,60 +1724284801,Telegram,1905,7285 +1724284801,Edge Chromium,6744,20934 +1724284801,DNS over HTTPS,9885,32999 +1724285100,__unknown,200201,190764 +1724285100,__unknown,122175,66248 +1724285100,__unknown,71168,60414 +1724285100,ICMP,34194,0 +1724285100,__unknown,90138,48706 +1724285100,Windows Live,58870,21926 +1724285100,HTTPS,58870,21926 +1724285100,SSL client,58870,21926 +1724285100,HTTPS,54409,62036 +1724285100,SSL client,54409,62036 +1724285100,Telegram,54409,62036 +1724285100,Skype,3977,8741 +1724285100,HTTPS,50763,160274 +1724285100,SSL client,16223,141020 +1724285100,Microsoft,9345,125086 +1724285100,Microsoft Teams,2901,7193 +1724285100,HTTPS,34891,37460 +1724285100,SSL client,22787,24098 +1724285100,Google Play,22787,24098 +1724285100,HTTPS,177016,173511 +1724285100,SSL client,138341,136850 +1724285100,Microsoft,6215,11055 +1724285100,Mail.Ru,30504,93413 +1724285100,Yandex,97906,18737 +1724285100,Office 365,1522,4294 +1724285100,GISMETEO,2194,9351 +1724285100,__unknown,3991334,6547086 +1724285100,Bing,12526,54673 +1724285100,Dropbox,1670,1358 +1724285100,Google,59564,69219 +1724285100,MSN,1872,7105 +1724285100,HTTP,527,530 +1724285100,Microsoft Update,1795,5433 +1724285100,TwitchTV,5399,7316 +1724285100,Advanced Packaging Tool,527,530 +1724285100,HTTPS,386404,1351436 +1724285100,Avast,2004,4342 +1724285100,SSL client,307129,1170464 +1724285100,Amazon Web Services,3199,21430 +1724285100,Microsoft,36023,82503 +1724285100,Mail.Ru,108363,102243 +1724285100,Yandex,68275,786302 +1724285100,Ubuntu,527,530 +1724285100,Exchange Online,1244,6455 +1724285100,Office 365,5195,22085 +1724285100,DNS over HTTPS,2084,7366 +1724285100,HTTPS,14810,20751 +1724285100,SSL client,14810,20751 +1724285100,DNS over HTTPS,14810,20751 +1724285100,__unknown,251824,289816 +1724285100,HTTPS,2971,30194 +1724285100,Apple sites,2971,30194 +1724285100,SSL client,2971,30194 +1724285100,__unknown,3059,1689 +1724285100,__unknown,10285,24212 +1724285100,HTTPS,3362,5460 +1724285100,ICMP,9184,0 +1724285100,__unknown,40800,35947 +1724285100,HTTPS,16608,22563 +1724285100,SSL client,5615,11087 +1724285100,DNS over HTTPS,5615,11087 +1724285100,__unknown,486477,461495 +1724285100,BitTorrent,310,496 +1724285100,DHCPv6,978,0 +1724285100,Google APIs,31580,16770 +1724285100,Google Drive,16424,22123 +1724285100,Google,31754,67556 +1724285100,DNS,18368,0 +1724285100,HTTP,693,7947 +1724285100,NetBIOS-dgm,250,0 +1724285100,NTP,990,990 +1724285100,STUN,3720,6600 +1724285100,Odnoklassniki,2609,7483 +1724285100,HTTPS,164619,286119 +1724285100,SSL client,86966,121864 +1724285100,Microsoft,693,7947 +1724285100,Microsoft WNS,693,7947 +1724285100,ICMP,28329,3480 +1724285100,Google Sign in,4599,7932 +1724285100,DNS over HTTPS,6056,17720 +1724285100,CoAP,490,360 +1724285100,__unknown,273146,216541 +1724285100,DHCPv6,163,0 +1724285100,Google APIs,3016,7194 +1724285100,Google Drive,9393,10601 +1724285100,Google,56434,118792 +1724285100,Kaspersky,518,541 +1724285100,QQ,414,1581 +1724285100,DNS,40815,38763 +1724285100,HTTP,99193998,3286845 +1724285100,Internet Explorer,8630,780 +1724285100,Launchpad,2634,1984 +1724285100,Microsoft Update,1958,1655 +1724285100,NTP,900,900 +1724285100,Steam,1958,72045 +1724285100,Advanced Packaging Tool,28224,25280 +1724285100,HTTPS,135731,407350 +1724285100,Spotify,1838,4674 +1724285100,Apple sites,1876,4510 +1724285100,Avast,382,391 +1724285100,SSL client,90271,189808 +1724285100,Ubuntu Update Manager,19576,17764 +1724285100,Yandex,18320,34558 +1724285100,Ubuntu,7355,6911 +1724285100,Microsoft CryptoAPI,5456,4694 +1724285100,Microsoft NCSI,1976,2014 +1724285100,uTorrent,694,427 +1724285100,ICMP,943,0 +1724285100,Telegram,1958,649 +1724285100,Google Sign in,6204,4211 +1724285100,Edge Chromium,8325,25022 +1724285100,DNS over TLS,3083,14246 +1724285100,DNS over HTTPS,21582,86556 +1724285400,HTTPS,5560,4962 +1724285400,DNS over HTTPS,288208,651253 +1724285400,__unknown,1608,0 +1724285400,HTTPS,5356,3812 +1724285400,HTTPS,9388,10839 +1724285400,__unknown,506211,568918 +1724285400,Google APIs,3569,7879 +1724285400,Google,95263,64053 +1724285400,HTTPS,177741,813439 +1724285400,SSL client,150681,782372 +1724285400,Microsoft,23045,48953 +1724285400,Mail.Ru,16295,18077 +1724285400,Yandex,10315,634059 +1724285400,GISMETEO,2194,9351 +1724285400,__unknown,66724,28522 +1724285400,Dropbox,3165,4866 +1724285400,Google,3042,12556 +1724285400,HTTP,1781,1728 +1724285400,Skype,2656,8335 +1724285400,TwitchTV,5555,7221 +1724285400,Advanced Packaging Tool,1274,1193 +1724285400,HTTPS,342855,956676 +1724285400,iCloud,9491,17560 +1724285400,SSL client,257610,827025 +1724285400,Ubuntu Update Manager,1274,1193 +1724285400,Microsoft,28481,59056 +1724285400,Mail.Ru,123206,100722 +1724285400,Yandex,32425,523318 +1724285400,Google Play,24307,23736 +1724285400,Exchange Online,1108,8065 +1724285400,Office 365,11562,51542 +1724285400,Grammarly,12612,10048 +1724285400,DNS over HTTPS,7710,28416 +1724285400,Google,246323,297437 +1724285400,HTTPS,246323,297437 +1724285400,SSL client,246323,297437 +1724285400,HTTPS,22220,8991 +1724285400,SSL,2775,9190 +1724285400,STUN,1022476,16499027 +1724285400,HTTPS,14299,5331 +1724285400,__unknown,698,416 +1724285400,__unknown,0,810 +1724285400,HTTPS,38180,56901 +1724285400,SSL client,18939,31343 +1724285400,ICMP,598,0 +1724285400,_err_4907,18939,31343 +1724285400,__unknown,690893,1073529 +1724285400,BitTorrent,463,694 +1724285400,Google APIs,2708,8810 +1724285400,Google Drive,9523,11127 +1724285400,Google,19025,35308 +1724285400,BitTorrent tracker,153,198 +1724285400,DNS,16456,0 +1724285400,Gmail,6374,8692 +1724285400,HTTP,1958,1656 +1724285400,Microsoft Update,1958,1656 +1724285400,NTP,990,990 +1724285400,STUN,962,682 +1724285400,Odnoklassniki,2609,7484 +1724285400,HTTPS,125459,226272 +1724285400,SSL client,50720,93615 +1724285400,Microsoft,922,7534 +1724285400,Atlassian,3343,10156 +1724285400,Microsoft CryptoAPI,1958,1656 +1724285400,ICMP,8859,0 +1724285400,ICMP for IPv6,140,0 +1724285400,Google Sign in,6216,4504 +1724285400,DNS over HTTPS,14888,40695 +1724285400,CoAP,1176,864 +1724285400,__unknown,486004,600468 +1724285400,DHCPv6,978,0 +1724285400,Google APIs,2350,6747 +1724285400,Google,41980,99813 +1724285400,DNS,49967,48637 +1724285400,HTTP,102842,128187 +1724285400,Internet Explorer,6850,3023 +1724285400,Launchpad,3200,2480 +1724285400,Microsoft Update,1377,1149 +1724285400,Mobile Safari,572,565 +1724285400,NetBIOS-dgm,243,0 +1724285400,NTP,15990,6240 +1724285400,SSL,855,7032 +1724285400,Advanced Packaging Tool,32400,29429 +1724285400,HTTPS,142547,842931 +1724285400,Mozilla,2058,4535 +1724285400,Avast,506,983 +1724285400,SSL client,78405,605049 +1724285400,Ubuntu Update Manager,22539,20951 +1724285400,Microsoft,5254,12203 +1724285400,VeriSign,566,2141 +1724285400,Yandex,21177,59263 +1724285400,Ubuntu,8427,7834 +1724285400,Microsoft CryptoAPI,4318,5323 +1724285400,Microsoft WNS,831,7947 +1724285400,Google Hangouts,855,7032 +1724285400,ICMP,1450,0 +1724285400,JetBrains,16542,434418 +1724285400,Edge Chromium,6744,20871 +1724285400,DNS over HTTPS,13187,39623 +1724285701,HTTPS,53980,2545419 +1724285701,__unknown,1484,2060 +1724285701,HTTPS,53723,70618 +1724285701,SSL client,53723,70618 +1724285701,Telegram,53723,70618 +1724285701,HTTPS,12575,15856 +1724285701,HTTPS,17916,20378 +1724285701,Dropbox,124949,21407 +1724285701,HTTPS,124949,21407 +1724285701,SSL client,124949,21407 +1724285701,HTTPS,24863,9043 +1724285701,__unknown,81339,48385 +1724285701,Dropbox,3089,1368 +1724285701,HTTPS,99625,76187 +1724285701,SSL client,79837,52984 +1724285701,Microsoft,4191,11360 +1724285701,Mail.Ru,66211,23921 +1724285701,Yandex,2049,2477 +1724285701,Office 365,2497,8828 +1724285701,Telegram,180,180 +1724285701,Lenovo,1800,5030 +1724285701,__unknown,342412,174288 +1724285701,Dropbox,5935,222848 +1724285701,Google,2364465,1141380 +1724285701,MSN,2069,11720 +1724285701,HTTP,5757,140085 +1724285701,Microsoft Update,53546,7808 +1724285701,Skype,1697,93234 +1724285701,HTTPS,2847151,2053556 +1724285701,Apple sites,2111,9399 +1724285701,Mozilla,4727,6034 +1724285701,SSL client,2641102,1781891 +1724285701,Microsoft,68663,112805 +1724285701,Mail.Ru,108116,87962 +1724285701,Yandex,13780,30766 +1724285701,GitHub,1592,5975 +1724285701,Exchange Online,2664,12926 +1724285701,Office 365,5419,23364 +1724285701,Microsoft Windows Live Services Authentication,6318,15670 +1724285701,DNS over HTTPS,5255,15180 +1724285701,HTTPS,39614,36339 +1724285701,__unknown,767,536 +1724285701,Google,29522,25313 +1724285701,HTTPS,29522,25313 +1724285701,SSL client,29522,25313 +1724285701,__unknown,60,918 +1724285701,HTTPS,26635,38790 +1724285701,Spotify,1987,8112 +1724285701,SSL client,1987,8112 +1724285701,ICMP,918,0 +1724285701,DNS over HTTPS,5069,13590 +1724285701,__unknown,294898,451313 +1724285701,BitTorrent,310,496 +1724285701,DHCPv6,163,0 +1724285701,Google,19128,47598 +1724285701,Skype Auth,700,398 +1724285701,DNS,23297,0 +1724285701,HTTP,1716,1545 +1724285701,Microsoft Update,646,528 +1724285701,NTP,24870,5370 +1724285701,Skype,700,398 +1724285701,HTTPS,69924,237549 +1724285701,SSL client,27688,70457 +1724285701,Microsoft CryptoAPI,1716,1545 +1724285701,ICMP,14714,3000 +1724285701,JetBrains,1793,6846 +1724285701,Google Sign in,4535,8160 +1724285701,Grammarly,2232,7853 +1724285701,DNS over HTTPS,15925,43127 +1724285701,__unknown,339561,3220393 +1724285701,Google APIs,11950,22034 +1724285701,Google,74478,150276 +1724285701,Chrome,572,628 +1724285701,DNS,46641,43775 +1724285701,Firefox,1187,1158 +1724285701,Gmail,6742,7764 +1724285701,HTTP,55352,72360 +1724285701,Launchpad,3126,2480 +1724285701,Microsoft Update,712,572 +1724285701,Mobile Safari,586,565 +1724285701,NetBIOS-dgm,250,0 +1724285701,NTP,630,630 +1724285701,STUN,1230,1110 +1724285701,Advanced Packaging Tool,34672,31761 +1724285701,HTTPS,180287,505185 +1724285701,Mozilla,5218,6925 +1724285701,Avast,382,391 +1724285701,SSL client,106708,210414 +1724285701,Ubuntu Update Manager,23627,22177 +1724285701,Yandex,4109,14050 +1724285701,Ubuntu,9260,8483 +1724285701,Microsoft CryptoAPI,712,572 +1724285701,ICMP,2046,0 +1724285701,Edge Chromium,7271,22238 +1724285701,DNS over TLS,2356,9538 +1724285701,DNS over HTTPS,39452,117946 +1724286000,STUN,3860484,3940907 +1724286000,Google,632557,245140 +1724286000,HTTPS,632557,245140 +1724286000,SSL client,632557,245140 +1724286000,Windows Live,7567,1921 +1724286000,HTTPS,7567,1921 +1724286000,SSL client,7567,1921 +1724286000,Windows Live,28012,7872 +1724286000,HTTPS,266068,283834 +1724286000,SSL client,90629,180581 +1724286000,Microsoft,8148,110673 +1724286000,Telegram,54469,62036 +1724286000,Google APIs,4054,14458 +1724286000,HTTPS,52871,63654 +1724286000,SSL client,16186,32537 +1724286000,Google Play,12132,18079 +1724286000,__unknown,5520,35886 +1724286000,Dropbox,2817,4451 +1724286000,Google APIs,6321,9662 +1724286000,Google,20853,30629 +1724286000,SSL,1736,3567 +1724286000,HTTPS,134231,171488 +1724286000,SSL client,85946,111814 +1724286000,Microsoft,8549,18369 +1724286000,Mail.Ru,35084,18860 +1724286000,Yandex,8777,15702 +1724286000,Office 365,1809,10574 +1724286000,Google Hangouts,1736,3567 +1724286000,__unknown,4329,360 +1724286000,Google,894927,511191 +1724286000,MSN,1426,7461 +1724286000,HTTP,6314,12092 +1724286000,Launchpad,640,496 +1724286000,Skype,2643,8338 +1724286000,Advanced Packaging Tool,1914,1722 +1724286000,HTTPS,1438572,1072585 +1724286000,SSL client,1331295,908378 +1724286000,Ubuntu Update Manager,1274,1226 +1724286000,Microsoft,38554,62329 +1724286000,Mail.Ru,102733,89544 +1724286000,Yandex,253957,148276 +1724286000,Google Update,4400,10370 +1724286000,uTorrent,21819,38975 +1724286000,Office 365,7509,30667 +1724286000,Microsoft Windows Live Services Authentication,7727,11597 +1724286000,DNS over HTTPS,995,4584 +1724286000,__unknown,188,229 +1724286000,ICMP,6180,6180 +1724286000,ICMP,1640,0 +1724286000,__unknown,3851,12432 +1724286000,HTTPS,23140,13117 +1724286000,__unknown,1026,4114 +1724286000,HTTPS,13992,21661 +1724286000,ICMP,246,0 +1724286000,__unknown,382927,368030 +1724286000,BitTorrent,463,1033 +1724286000,DHCPv6,978,0 +1724286000,Google APIs,62599,28001 +1724286000,Google Drive,6042,9904 +1724286000,Google,79457,113155 +1724286000,BitTorrent tracker,153,537 +1724286000,DNS,20577,0 +1724286000,Gmail,22051,19002 +1724286000,iTunes,4345,28923 +1724286000,NTP,25500,6000 +1724286000,VKontakte,2864,6156 +1724286000,HTTPS,227261,326159 +1724286000,Mozilla,2615,1712 +1724286000,SSL client,179973,206853 +1724286000,ICMP,5968,600 +1724286000,DNS over HTTPS,4768,15585 +1724286000,__unknown,420681,394418 +1724286000,DHCPv6,163,0 +1724286000,Google APIs,3016,7055 +1724286000,Google,30392,44944 +1724286000,DNS,46664,44016 +1724286000,Gmail,13787,62472 +1724286000,HTTP,72050,367470 +1724286000,Launchpad,3422,2480 +1724286000,Microsoft Update,1282,1014 +1724286000,NTP,990,990 +1724286000,SSL,855,7033 +1724286000,Steam,2812,50912 +1724286000,Advanced Packaging Tool,32188,251763 +1724286000,HTTPS,165374,481965 +1724286000,iCloud,4648,15734 +1724286000,SSL client,57689,154657 +1724286000,Ubuntu Update Manager,25783,246537 +1724286000,Microsoft,633,7944 +1724286000,Yandex,6610,26779 +1724286000,Ubuntu,3408,3207 +1724286000,Microsoft CryptoAPI,1869,1517 +1724286000,Microsoft WNS,633,7944 +1724286000,ICMP,6492,0 +1724286000,Edge Chromium,4696,16055 +1724286000,DNS over TLS,2356,9540 +1724286000,DNS over HTTPS,12997,47391 +1724286299,HTTPS,110641,117865 +1724286299,SSL client,110641,117865 +1724286299,Sharepoint Online,110641,117865 +1724286299,HTTPS,40532,44782 +1724286299,SSL client,40532,44782 +1724286299,Sharepoint Online,40532,44782 +1724286299,HTTPS,26747,31596 +1724286299,SSL client,26747,31596 +1724286299,Sharepoint Online,26747,31596 +1724286299,HTTPS,4701,7461 +1724286299,SSL client,4701,7461 +1724286299,Sharepoint Online,4701,7461 +1724286299,HTTPS,80736,97333 +1724286299,Google APIs,6984,25267 +1724286299,HTTPS,29241,57170 +1724286299,SSL client,6984,25267 +1724286299,HTTPS,8466,3849 +1724286299,__unknown,5566,8840 +1724286299,Google,8266,5582 +1724286299,HTTP,2214,2532 +1724286299,Microsoft Update,1622,1772 +1724286299,TeamViewer,1517,8838 +1724286299,HTTPS,159385,130612 +1724286299,Avast,2382,17221 +1724286299,SSL client,136925,113408 +1724286299,Microsoft,24530,45044 +1724286299,Mail.Ru,8787,6603 +1724286299,Yandex,5768,10970 +1724286299,Microsoft Azure,83481,9798 +1724286299,Microsoft CryptoAPI,2214,2532 +1724286299,GISMETEO,2194,9352 +1724286299,__unknown,77497,100156 +1724286299,Dropbox,2507,1384 +1724286299,Google APIs,2587,11811 +1724286299,MSN,3322,9498 +1724286299,HTTP,6012,11800 +1724286299,Skype,1900,86260 +1724286299,Advanced Packaging Tool,1621,1490 +1724286299,HTTPS,797528,923262 +1724286299,WhatsApp,1360,1276 +1724286299,SSL client,523916,602724 +1724286299,Ubuntu Update Manager,1621,1490 +1724286299,Microsoft,148748,139631 +1724286299,Mail.Ru,124310,112109 +1724286299,Yandex,190038,122165 +1724286299,GitHub,1526,5978 +1724286299,Google Update,4391,10310 +1724286299,Rambler,15556,8561 +1724286299,Office 365,7422,43816 +1724286299,Sharepoint Online,11851,33480 +1724286299,Microsoft Windows Live Services Authentication,14149,28031 +1724286299,__unknown,208877,200987 +1724286299,SSL,2741,9191 +1724286299,HTTPS,4168,9784 +1724286299,__unknown,180,1983 +1724286299,HTTPS,13304,23225 +1724286299,SSL client,6701,12348 +1724286299,ICMP,328,0 +1724286299,DNS over HTTPS,6701,12348 +1724286299,__unknown,442120,935406 +1724286299,BitTorrent,310,496 +1724286299,Google,19037,50881 +1724286299,DNS,21744,0 +1724286299,Gmail,8732,15364 +1724286299,HTTP,1815,1513 +1724286299,Microsoft Update,641,507 +1724286299,NetBIOS-dgm,243,0 +1724286299,NTP,12300,2550 +1724286299,STUN,1860,3300 +1724286299,VKontakte,2742,6096 +1724286299,Odnoklassniki,2549,7423 +1724286299,HTTPS,169158,273433 +1724286299,SSL client,36441,85386 +1724286299,Yandex,1133,670 +1724286299,Microsoft CryptoAPI,1815,1513 +1724286299,ICMP,60799,2160 +1724286299,DNS over HTTPS,15137,41671 +1724286299,__unknown,312637,249599 +1724286299,DHCPv6,978,0 +1724286299,Google,46049,140862 +1724286299,DNS,52104,44375 +1724286299,HTTP,79160,99282 +1724286299,Internet Explorer,1752,1260 +1724286299,Launchpad,3200,2480 +1724286299,Microsoft Update,641,507 +1724286299,NTP,1080,1080 +1724286299,STUN,1860,3300 +1724286299,Advanced Packaging Tool,28141,25515 +1724286299,HTTPS,125482,403406 +1724286299,Avast,382,391 +1724286299,SSL client,62276,180351 +1724286299,Ubuntu Update Manager,21323,19723 +1724286299,Yandex,13860,30522 +1724286299,Ubuntu,4468,4230 +1724286299,Microsoft CryptoAPI,1201,970 +1724286299,uTorrent,920,482 +1724286299,ICMP,3406,0 +1724286299,Edge Chromium,5690,18202 +1724286299,DNS over TLS,5980,19385 +1724286299,DNS over HTTPS,20026,69324 +1724286600,HTTPS,45783,63535 +1724286600,Google,1013662,446776 +1724286600,HTTPS,1013662,446776 +1724286600,SSL client,1013662,446776 +1724286600,HTTPS,45687,63952 +1724286600,SSL client,45687,63952 +1724286600,Telegram,45687,63952 +1724286600,__unknown,1050,0 +1724286600,Dropbox,122826,21363 +1724286600,HTTPS,132550,35002 +1724286600,SSL client,122826,21363 +1724286600,Google APIs,4547,13811 +1724286600,Skype,3977,8741 +1724286600,HTTPS,34173,365956 +1724286600,SSL client,15781,139937 +1724286600,Microsoft,7257,117385 +1724286600,__unknown,15891,47041 +1724286600,Dropbox,1629,1471 +1724286600,HTTPS,119406,147636 +1724286600,WhatsApp,2140,6620 +1724286600,Avast,1129,9304 +1724286600,SSL client,105443,122554 +1724286600,Microsoft,27409,48196 +1724286600,Mail.Ru,25986,20682 +1724286600,Yandex,43639,24930 +1724286600,Sharepoint Online,3457,8619 +1724286600,GISMETEO,2194,9352 +1724286600,__unknown,33768,20451 +1724286600,Bing,3484,6455 +1724286600,Dropbox,2877,4451 +1724286600,Google,200218,244317 +1724286600,Dell,2198,8611 +1724286600,HTTP,2735,2550 +1724286600,Skype,2714,8276 +1724286600,TwitchTV,5531,7155 +1724286600,Advanced Packaging Tool,2735,2550 +1724286600,HTTPS,599376,676485 +1724286600,Apple sites,7145,28150 +1724286600,SSL client,558071,569510 +1724286600,Ubuntu Update Manager,1621,1490 +1724286600,Microsoft,33122,44289 +1724286600,Mail.Ru,84351,76814 +1724286600,Yandex,204391,114703 +1724286600,Ubuntu,1114,1060 +1724286600,Office 365,1689,7788 +1724286600,Microsoft Windows Live Services Authentication,7727,11537 +1724286600,Grammarly,2624,6964 +1724286600,DNS over HTTPS,4089,16568 +1724286600,__unknown,2047,1648 +1724286600,Telegram,2047,1648 +1724286600,CoAP,3528,2592 +1724286600,__unknown,1575,1088 +1724286600,HTTPS,14194,19531 +1724286600,ICMP,4438,0 +1724286600,__unknown,1392,732 +1724286600,HTTPS,21702,23642 +1724286600,ICMP,4042,0 +1724286600,DNS over HTTPS,3183,10153 +1724286600,__unknown,804469,901761 +1724286600,BitTorrent,463,694 +1724286600,DHCPv6,163,0 +1724286600,Google APIs,6059,16286 +1724286600,Google,59423,76252 +1724286600,BitTorrent tracker,153,198 +1724286600,DNS,20641,0 +1724286600,HTTP,896,991 +1724286600,NetBIOS-dgm,250,0 +1724286600,NTP,1710,1710 +1724286600,STUN,31852,222 +1724286600,Odnoklassniki,2669,7499 +1724286600,HTTPS,130542,230061 +1724286600,SSL client,68151,100037 +1724286600,ICMP,18047,0 +1724286600,DNS over HTTPS,4828,15645 +1724286600,__unknown,187872,336388 +1724286600,DHCPv6,978,0 +1724286600,Google APIs,7914,21303 +1724286600,Google,36360,81078 +1724286600,DNS,44758,39702 +1724286600,Gmail,19741,48826 +1724286600,HTTP,79978,101262 +1724286600,Launchpad,3200,2480 +1724286600,Microsoft Update,606,507 +1724286600,NTP,13290,3540 +1724286600,Advanced Packaging Tool,31459,28761 +1724286600,HTTPS,114782,369207 +1724286600,Avast,382,391 +1724286600,SSL client,81092,196533 +1724286600,Ubuntu Update Manager,25180,23463 +1724286600,Mail.Ru,1084,5419 +1724286600,Yandex,11346,27262 +1724286600,Ubuntu,3504,3275 +1724286600,Microsoft CryptoAPI,4129,6069 +1724286600,uTorrent,1528,964 +1724286600,Office 365,619,1199 +1724286600,ICMP,2401,120 +1724286600,Telegram,7771,18229 +1724286600,Edge Chromium,7738,22965 +1724286600,DNS over TLS,1982,9406 +1724286600,DNS over HTTPS,12956,49807 +1724286900,HTTPS,57198,86904 +1724286900,SSL client,57198,86904 +1724286900,Sharepoint Online,57198,86904 +1724286900,Google,609835,7517380 +1724286900,HTTPS,609835,7517380 +1724286900,SSL client,609835,7517380 +1724286900,__unknown,1244,1838 +1724286900,HTTPS,204558,72873 +1724286900,Windows Live,27148,12856 +1724286900,HTTPS,111043,372353 +1724286900,SSL client,111043,372353 +1724286900,Mail.Ru,79692,353115 +1724286900,Sharepoint Online,4203,6382 +1724286900,HTTPS,54469,62036 +1724286900,SSL client,54469,62036 +1724286900,Telegram,54469,62036 +1724286900,Google APIs,2087,7371 +1724286900,HTTPS,52341,56687 +1724286900,SSL client,49823,54594 +1724286900,Yandex,5249,10572 +1724286900,Google Play,42487,36651 +1724286900,__unknown,10897,11580 +1724286900,Google,24816,19149 +1724286900,Windows Live,3483,19587 +1724286900,HTTPS,79268,144491 +1724286900,Mozilla,2142,4639 +1724286900,SSL client,70606,138357 +1724286900,Microsoft,4239,7388 +1724286900,Mail.Ru,15020,12443 +1724286900,Yandex,13872,62016 +1724286900,GISMETEO,2014,9111 +1724286900,Google Sign in,5020,4024 +1724286900,__unknown,218839,174952 +1724286900,Bing,6839,12907 +1724286900,Dropbox,4863,6940 +1724286900,Google APIs,98687025,1843603 +1724286900,Google,1491,1597 +1724286900,HTTP,3341,113905 +1724286900,Microsoft Update,56139,76110 +1724286900,Skype,2643,8338 +1724286900,Steam,5009,10648 +1724286900,HTTPS,99343148,35677391 +1724286900,Mozilla,2302,4799 +1724286900,SSL client,98996141,2258353 +1724286900,Microsoft,52473,91111 +1724286900,Mail.Ru,83433,76058 +1724286900,Yandex,71476,59682 +1724286900,GitHub,1727,5582 +1724286900,Microsoft CryptoAPI,2962,5166 +1724286900,Office 365,6335,26780 +1724286900,Microsoft Windows Live Services Authentication,14162,27211 +1724286900,Google Sign in,903,4772 +1724286900,DNS over HTTPS,995,4584 +1724286900,Discord,1175,6399 +1724286900,ICMP,6232,0 +1724286900,__unknown,53510,63455 +1724286900,HTTPS,53132,70240 +1724286900,SSL client,53132,70240 +1724286900,Telegram,53132,70240 +1724286900,__unknown,116255,74186 +1724286900,Google,8963,15578 +1724286900,HTTPS,8963,15578 +1724286900,SSL client,8963,15578 +1724286900,HTTPS,32054,27179 +1724286900,ICMP,2726,0 +1724286900,__unknown,215,107 +1724286900,ICMP,6262,5040 +1724286900,__unknown,120,222 +1724286900,HTTPS,7049,7818 +1724286900,ICMP,344,0 +1724286900,__unknown,328332,892077 +1724286900,BitTorrent,310,496 +1724286900,DHCPv6,163,0 +1724286900,Google APIs,6884,18375 +1724286900,Google Drive,8968,10685 +1724286900,Google,15887,47888 +1724286900,DNS,18454,292 +1724286900,HTTP,1073,1234 +1724286900,NTP,13110,3360 +1724286900,SSL,797,7093 +1724286900,HTTPS,75784,173277 +1724286900,Apple sites,1539,16272 +1724286900,SSL client,40852,113409 +1724286900,Microsoft CryptoAPI,560,462 +1724286900,Google Hangouts,797,7093 +1724286900,ICMP,8962,1620 +1724286900,Google Sign in,4529,8157 +1724286900,DNS over HTTPS,2248,4939 +1724286900,__unknown,308176,543897 +1724286900,Google APIs,2350,6746 +1724286900,Google Drive,18735,21280 +1724286900,Google,12406,78453 +1724286900,QQ,414,1581 +1724286900,DNS,48087,44714 +1724286900,HTTP,92641,400891 +1724286900,Launchpad,3200,2480 +1724286900,Microsoft Update,16971,285747 +1724286900,NetBIOS-dgm,243,0 +1724286900,NTP,1800,1800 +1724286900,VKontakte,2443,5530 +1724286900,Steam,877,13412 +1724286900,Advanced Packaging Tool,29688,27059 +1724286900,Windows Update,16971,285747 +1724286900,HTTPS,139238,407674 +1724286900,SSL client,39743,130930 +1724286900,Ubuntu Update Manager,21013,19665 +1724286900,Microsoft,693,7947 +1724286900,Yandex,6992,30452 +1724286900,Ubuntu,7600,7215 +1724286900,Microsoft CryptoAPI,3191,3958 +1724286900,Microsoft WNS,693,7947 +1724286900,ICMP,2356,0 +1724286900,Edge Chromium,4696,16061 +1724286900,DNS over HTTPS,14047,58574 +1724287199,HTTPS,38973,78749 +1724287199,SSL client,38973,78749 +1724287199,Yandex,38973,78749 +1724287199,HTTPS,9023,11197 +1724287199,__unknown,46820,48594 +1724287199,HTTPS,53497,20745 +1724287199,SSL client,51223,19001 +1724287199,Google Play,51223,19001 +1724287199,HTTPS,1227,4941 +1724287199,Telegram,180,180 +1724287199,__unknown,3612,66 +1724287199,HTTPS,60690,615579 +1724287199,SSL client,40160,527175 +1724287199,Microsoft,6280,14716 +1724287199,Java Update,2816,47388 +1724287199,Yandex,31686,503107 +1724287199,GISMETEO,2194,9352 +1724287199,__unknown,18768,21544 +1724287199,BITS,9276,481329 +1724287199,HTTP,15802,497663 +1724287199,Skype,2045,98634 +1724287199,Steam,2053,4925 +1724287199,Advanced Packaging Tool,635,566 +1724287199,HTTPS,5698177,175647567 +1724287199,SSL client,5509373,174754505 +1724287199,CloudFront,5251,2215 +1724287199,Microsoft,18614,42261 +1724287199,Mail.Ru,128658,136614 +1724287199,Yandex,5346619,174448363 +1724287199,Ubuntu,635,566 +1724287199,Google Update,4433,10364 +1724287199,Microsoft CryptoAPI,1458,5404 +1724287199,Office 365,1385,7489 +1724287199,Grammarly,4748,14004 +1724287199,DNS over HTTPS,88792,201660 +1724287199,__unknown,94,924 +1724287199,Gmail,110917,65011 +1724287199,HTTPS,110917,65011 +1724287199,SSL client,110917,65011 +1724287199,__unknown,1873,11118 +1724287199,Google,62441,43198 +1724287199,HTTPS,62441,43198 +1724287199,SSL client,62441,43198 +1724287199,ICMP,1640,0 +1724287199,__unknown,708,456 +1724287199,ICMP,774,0 +1724287199,DNS over HTTPS,14066,33837 +1724287199,HTTPS,4281,7933 +1724287199,ICMP,950,0 +1724287199,DNS over HTTPS,4077,12175 +1724287199,CoAP,2156,1584 +1724287199,__unknown,413449,651103 +1724287199,BitTorrent,463,1033 +1724287199,Google APIs,40673,8652 +1724287199,Google Drive,19248,22260 +1724287199,Google,14544,40275 +1724287199,Google Translate,8942,12107 +1724287199,BitTorrent tracker,153,537 +1724287199,DNS,22160,0 +1724287199,Gmail,15131,23387 +1724287199,HTTP,1190,1015 +1724287199,NTP,12660,2910 +1724287199,HTTPS,169168,234641 +1724287199,Mozilla,1876,4611 +1724287199,SSL client,103623,126710 +1724287199,Microsoft,922,7532 +1724287199,Microsoft CryptoAPI,1190,1015 +1724287199,ICMP,16648,2520 +1724287199,Grammarly,2287,7886 +1724287199,DNS over HTTPS,14366,33496 +1724287199,__unknown,258061,431348 +1724287199,Bing,4598,7759 +1724287199,DHCPv6,1141,0 +1724287199,Google,11484,29932 +1724287199,Chrome,1130,968 +1724287199,DNS,53291,48069 +1724287199,Gmail,13759,18284 +1724287199,HTTP,167893,1424129 +1724287199,Launchpad,3200,2480 +1724287199,Microsoft Update,76894,1308521 +1724287199,NetBIOS-dgm,250,0 +1724287199,NTP,360,360 +1724287199,VKontakte,2297,4933 +1724287199,Odnoklassniki,3790,7530 +1724287199,Advanced Packaging Tool,23530,21359 +1724287199,Windows Update,76248,1308015 +1724287199,HTTPS,108935,394728 +1724287199,Apple sites,1840,4529 +1724287199,SSL client,48085,110914 +1724287199,Ubuntu Update Manager,16760,15663 +1724287199,Yandex,10275,39682 +1724287199,Ubuntu,4420,4134 +1724287199,Microsoft CryptoAPI,2940,2437 +1724287199,ICMP,1850,0 +1724287199,ICMP for IPv6,70,0 +1724287199,Edge Chromium,9379,27700 +1724287199,Grammarly,1903,7368 +1724287199,DNS over HTTPS,12120,39082 +1724287499,HTTPS,3472,1540 +1724287499,HTTPS,2994,1564 +1724287499,HTTPS,5081,3857 +1724287499,__unknown,11345,34062 +1724287499,TwitchTV,5465,7155 +1724287499,HTTPS,62939,86874 +1724287499,SSL client,31167,56160 +1724287499,Microsoft,8271,17039 +1724287499,Mail.Ru,6325,5840 +1724287499,Yandex,6535,8006 +1724287499,Office 365,2377,8768 +1724287499,GISMETEO,2194,9352 +1724287499,__unknown,6095,8862 +1724287499,Bing,6817,12910 +1724287499,Dropbox,1689,1472 +1724287499,Google,1491,1597 +1724287499,HTTP,1274,1193 +1724287499,TeamViewer,1448,8838 +1724287499,Advanced Packaging Tool,1274,1193 +1724287499,HTTPS,330355,648365 +1724287499,SSL client,225716,452839 +1724287499,Ubuntu Update Manager,1274,1193 +1724287499,Microsoft,46818,170915 +1724287499,Mail.Ru,72499,58115 +1724287499,Yandex,67711,99971 +1724287499,Exchange Online,3726,19405 +1724287499,Office 365,5841,30390 +1724287499,Microsoft Windows Live Services Authentication,17676,49226 +1724287499,DNS over HTTPS,877,4586 +1724287499,__unknown,714059,724597 +1724287499,__unknown,1227,6529 +1724287499,Windows Live,7303,22552 +1724287499,SSL,2775,9190 +1724287499,HTTPS,12366,29989 +1724287499,SSL client,7303,22552 +1724287499,__unknown,2663,1352 +1724287499,HTTPS,7157,11448 +1724287499,Telegram,1107,504 +1724287499,__unknown,6777,13979 +1724287499,HTTPS,5730,13398 +1724287499,ICMP,2070,0 +1724287499,DNS over HTTPS,5164,13590 +1724287499,__unknown,249227,3809572 +1724287499,BitTorrent,310,496 +1724287499,Google APIs,4951,15336 +1724287499,Google Drive,10068,10906 +1724287499,Google,28162,71229 +1724287499,DNS,20991,260 +1724287499,Gmail,2444,6612 +1724287499,HTTP,1966,2007 +1724287499,NTP,24600,5100 +1724287499,VKontakte,2803,6144 +1724287499,HTTPS,124855,244125 +1724287499,SSL client,54492,125008 +1724287499,CloudFront,1524,1946 +1724287499,Microsoft CryptoAPI,1070,1017 +1724287499,ICMP,5542,0 +1724287499,Grammarly,2292,7886 +1724287499,DNS over HTTPS,10010,22456 +1724287499,CoAP,1568,1152 +1724287499,__unknown,341405,284092 +1724287499,DHCPv6,978,0 +1724287499,Google APIs,5209,15170 +1724287499,Google,4763,12112 +1724287499,DNS,55360,52948 +1724287499,HTTP,81337,98915 +1724287499,Launchpad,3200,2480 +1724287499,Microsoft Update,2265,1823 +1724287499,NTP,2700,2700 +1724287499,VKontakte,4590,9933 +1724287499,Odnoklassniki,3759,2393 +1724287499,Advanced Packaging Tool,39155,35989 +1724287499,HTTPS,98173,319223 +1724287499,Avast,382,391 +1724287499,SSL client,31620,78317 +1724287499,Ubuntu Update Manager,30576,28607 +1724287499,Yandex,12998,39950 +1724287499,Ubuntu,7504,7195 +1724287499,Microsoft CryptoAPI,4001,3292 +1724287499,ICMP,2502,0 +1724287499,Edge Chromium,5690,18139 +1724287499,Grammarly,2222,7852 +1724287499,DNS over HTTPS,4791,12927 +1724287800,Google APIs,259102,381408 +1724287800,HTTPS,288044,389694 +1724287800,SSL client,288044,389694 +1724287800,Microsoft,28942,8286 +1724287800,HTTPS,91572,127838 +1724287800,SSL client,91572,127838 +1724287800,Telegram,91572,127838 +1724287800,HTTPS,50970,21652 +1724287800,ICMP,13158,0 +1724287800,HTTPS,107114,139309 +1724287800,SSL client,107114,139309 +1724287800,Telegram,107114,139309 +1724287800,__unknown,448,0 +1724287800,HTTPS,6690,9100 +1724287800,__unknown,351,0 +1724287800,Dropbox,122788,21378 +1724287800,HTTPS,136236,258500 +1724287800,SSL client,136236,258500 +1724287800,Microsoft,13448,237122 +1724287800,HTTPS,42576,15157 +1724287800,SSL client,32849,7288 +1724287800,Google Play,32849,7288 +1724287800,__unknown,3471,14576 +1724287800,Dropbox,7332,6444 +1724287800,MSN,1519,7493 +1724287800,HTTP,1075,1822 +1724287800,Microsoft Update,98294,20001 +1724287800,HTTPS,158522,215066 +1724287800,Mozilla,2142,4639 +1724287800,Avast,1122,9509 +1724287800,SSL client,137360,192783 +1724287800,Microsoft,14948,34867 +1724287800,VeriSign,1075,1822 +1724287800,Yandex,5156,8378 +1724287800,Microsoft CryptoAPI,1075,1822 +1724287800,Office 365,1582,4211 +1724287800,Sharepoint Online,3326,94345 +1724287800,GISMETEO,1939,2896 +1724287800,__unknown,42814,44999 +1724287800,HTTP,1203,891 +1724287800,Skype,3293,8042 +1724287800,HTTPS,307949,517195 +1724287800,iCloud,13541,26405 +1724287800,Mozilla,2244,4817 +1724287800,SSL client,253652,427887 +1724287800,Microsoft,34028,71791 +1724287800,Mail.Ru,62824,63387 +1724287800,Yandex,75251,103044 +1724287800,uTorrent,21402,39058 +1724287800,Office 365,19235,72501 +1724287800,Microsoft Windows Live Services Authentication,21834,38842 +1724287800,DNS over HTTPS,995,4584 +1724287800,HTTPS,26516,41038 +1724287800,SSL client,26516,41038 +1724287800,DNS over HTTPS,26516,41038 +1724287800,__unknown,188,229 +1724287800,DNS over HTTPS,7842,16636 +1724287800,__unknown,3141,184154 +1724287800,HTTPS,16094,23480 +1724287800,Spotify,2119,8112 +1724287800,SSL client,2119,8112 +1724287800,ICMP,2144,1260 +1724287800,DNS over HTTPS,4023,12189 +1724287800,__unknown,287531,316490 +1724287800,BitTorrent,463,496 +1724287800,DHCPv6,163,0 +1724287800,Google Drive,5982,10158 +1724287800,Google,70749,97761 +1724287800,BitTorrent tracker,153,0 +1724287800,DNS,25782,218 +1724287800,Gmail,6379,8603 +1724287800,HTTP,1769,1957 +1724287800,NetBIOS-dgm,243,0 +1724287800,NTP,13650,3900 +1724287800,HTTPS,144289,248207 +1724287800,SSL client,83110,116522 +1724287800,Microsoft CryptoAPI,1769,1957 +1724287800,ICMP,8097,1560 +1724287800,DNS over HTTPS,2020,7048 +1724287800,__unknown,261040,243940 +1724287800,Google,21613,32838 +1724287800,DNS,51915,48015 +1724287800,Gmail,16727,16017 +1724287800,HTTP,61654,82332 +1724287800,Launchpad,3200,2414 +1724287800,Microsoft Update,646,501 +1724287800,NTP,2160,2160 +1724287800,STUN,1860,3300 +1724287800,VKontakte,4591,9883 +1724287800,Advanced Packaging Tool,30814,28227 +1724287800,HTTPS,152446,364871 +1724287800,iCloud,4150,8693 +1724287800,SSL client,57399,90796 +1724287800,Ubuntu Update Manager,25122,23519 +1724287800,Yandex,10843,28551 +1724287800,Ubuntu,3768,3673 +1724287800,Microsoft CryptoAPI,3510,2986 +1724287800,ICMP,2388,180 +1724287800,Edge Chromium,7271,22228 +1724287800,DNS over HTTPS,19999,63978 +1724288099,HTTP,857650,844170 +1724288099,DNS over HTTPS,212589,481105 +1724288099,ICMP,21730,0 +1724288099,HTTPS,16394,21634 +1724288099,HTTPS,153393,99668 +1724288099,SSL client,53877,61976 +1724288099,Telegram,53877,61976 +1724288099,HTTPS,14244,10166 +1724288099,__unknown,65311,67010 +1724288099,Google,8327,5280 +1724288099,HTTP,1446,2172 +1724288099,Microsoft Update,1446,2172 +1724288099,HTTPS,59095,399405 +1724288099,Apple sites,9248,309895 +1724288099,Mozilla,2242,4679 +1724288099,SSL client,34676,364330 +1724288099,Microsoft,12725,35244 +1724288099,Microsoft CryptoAPI,1446,2172 +1724288099,GISMETEO,2134,9232 +1724288099,DNS over HTTPS,0,1390 +1724288099,__unknown,112143,94650 +1724288099,Bing,1867,9328 +1724288099,Dropbox,3555,6898 +1724288099,Google APIs,6355,14186 +1724288099,Google,199946,3140258 +1724288099,Gmail,2206,2358 +1724288099,HTTP,1621,1490 +1724288099,TwitchTV,5499,7089 +1724288099,Advanced Packaging Tool,1621,1490 +1724288099,IMAPS,2206,2358 +1724288099,HTTPS,651698,4115301 +1724288099,Avast,127008,255824 +1724288099,SSL client,572569,3713666 +1724288099,Ubuntu Update Manager,1621,1490 +1724288099,Microsoft,29216,40727 +1724288099,Mail.Ru,152969,157278 +1724288099,Yandex,26022,41716 +1724288099,Office 365,3835,9107 +1724288099,Microsoft Windows Live Services Authentication,14091,28897 +1724288099,DNS over HTTPS,1752,9169 +1724288099,__unknown,274860,393152 +1724288099,ICMP,2214,0 +1724288099,HTTPS,32300,27949 +1724288099,ICMP,1558,0 +1724288099,__unknown,1649,10981 +1724288099,ICMP,2460,0 +1724288099,__unknown,60,156 +1724288099,HTTPS,2345,5425 +1724288099,ICMP,946,0 +1724288099,__unknown,508278,1860585 +1724288099,BitTorrent,310,496 +1724288099,DHCPv6,978,0 +1724288099,Google APIs,2184,6892 +1724288099,Google,30056,79848 +1724288099,Chrome,1335,869 +1724288099,DNS,23381,0 +1724288099,Gmail,8608,15757 +1724288099,HTTP,2548,1831 +1724288099,Microsoft Update,646,500 +1724288099,NetBIOS-dgm,250,0 +1724288099,NTP,13650,3900 +1724288099,SSL,737,7092 +1724288099,Odnoklassniki,2609,7500 +1724288099,HTTPS,139559,235076 +1724288099,SSL client,44194,117089 +1724288099,Microsoft CryptoAPI,1213,962 +1724288099,Google Hangouts,737,7092 +1724288099,ICMP,9166,0 +1724288099,DNS over HTTPS,5637,13400 +1724288099,__unknown,602230,646896 +1724288099,DHCPv6,163,0 +1724288099,Google APIs,5426,13796 +1724288099,Google,29821,68089 +1724288099,DNS,47924,41205 +1724288099,HTTP,168162,3469889 +1724288099,Internet Explorer,871,600 +1724288099,Launchpad,3200,2480 +1724288099,NTP,13650,3900 +1724288099,VKontakte,2503,5595 +1724288099,Steam,2909,34056 +1724288099,Advanced Packaging Tool,33913,30885 +1724288099,HTTPS,208489,509890 +1724288099,Apple sites,853,4058 +1724288099,iCloud,10323,17833 +1724288099,SSL client,103984,167995 +1724288099,Ubuntu Update Manager,25286,23527 +1724288099,Microsoft,109488,3362429 +1724288099,VeriSign,566,2141 +1724288099,Yandex,6904,18636 +1724288099,Ubuntu,6491,5796 +1724288099,Microsoft CryptoAPI,4692,5646 +1724288099,Google Play,41082,31733 +1724288099,ICMP,1950,0 +1724288099,Google Sign in,6201,4408 +1724288099,Edge Chromium,5822,20059 +1724288099,Grammarly,2140,7623 +1724288099,DNS over TLS,2422,9542 +1724288099,DNS over HTTPS,25057,81978 +1724288400,HTTPS,89411,120497 +1724288400,__unknown,360,7635 +1724288400,HTTPS,11247,20936 +1724288400,HTTPS,8627,8183 +1724288400,__unknown,17104,15696 +1724288400,Dropbox,1647,1519 +1724288400,Google,8264,5012 +1724288400,Skype,2974,9757 +1724288400,HTTPS,133957,1556809 +1724288400,Mozilla,4499,9378 +1724288400,SSL client,55236,164040 +1724288400,Microsoft,20701,29998 +1724288400,Mail.Ru,8883,6545 +1724288400,Office 365,5090,7540 +1724288400,Sharepoint Online,3178,94291 +1724288400,__unknown,143321,123632 +1724288400,Google,1210,4797 +1724288400,Dell,1111,4307 +1724288400,HTTP,3604,102762 +1724288400,Microsoft Update,1280,3618 +1724288400,HTTPS,489732,2410367 +1724288400,WhatsApp,3886,17133 +1724288400,Avast,1254,8476 +1724288400,SSL client,203081,325154 +1724288400,Microsoft,56451,81603 +1724288400,Mail.Ru,98961,84865 +1724288400,Yandex,15320,38015 +1724288400,Microsoft CryptoAPI,871,2221 +1724288400,Exchange Online,1512,6455 +1724288400,Office 365,14155,85120 +1724288400,Grammarly,12698,10119 +1724288400,__unknown,654524,211557 +1724288400,__unknown,215,225 +1724288400,__unknown,46209,32685 +1724288400,Google Drive,68373,34462 +1724288400,SSL,2741,9189 +1724288400,HTTPS,68373,34462 +1724288400,SSL client,68373,34462 +1724288400,CoAP,2548,1872 +1724288400,__unknown,1452,732 +1724288400,HTTPS,12223,8304 +1724288400,Avast,7560,2827 +1724288400,SSL client,7560,2827 +1724288400,ICMP,2298,0 +1724288400,__unknown,464623,548985 +1724288400,BitTorrent,463,1033 +1724288400,Google APIs,6065,16510 +1724288400,Google,17488,52819 +1724288400,BitTorrent tracker,153,537 +1724288400,DNS,18012,0 +1724288400,Gmail,19486,18940 +1724288400,HTTP,4029,8092 +1724288400,Microsoft Update,1377,1131 +1724288400,NetBIOS-dgm,243,0 +1724288400,NTP,12660,2910 +1724288400,Odnoklassniki,2669,7499 +1724288400,HTTPS,138821,350872 +1724288400,Mozilla,2795,1712 +1724288400,SSL client,54719,101755 +1724288400,VeriSign,632,2141 +1724288400,Microsoft CryptoAPI,2949,5590 +1724288400,Office 365,940,2318 +1724288400,ICMP,5520,1620 +1724288400,Google Sign in,6216,4275 +1724288400,DNS over HTTPS,4888,15708 +1724288400,__unknown,294299,280783 +1724288400,DHCPv6,978,0 +1724288400,Google APIs,10126,27188 +1724288400,Google Drive,7349,10089 +1724288400,Google,21598,33158 +1724288400,DNS,51235,49600 +1724288400,Gmail,6985,3953 +1724288400,HTTP,78047,225532 +1724288400,Launchpad,3200,2480 +1724288400,Microsoft Update,981,817 +1724288400,NetBIOS-ns,276,0 +1724288400,NTP,7520,1635 +1724288400,SSL,855,7031 +1724288400,STUN,1860,3300 +1724288400,Advanced Packaging Tool,42199,166818 +1724288400,HTTPS,133601,371371 +1724288400,Apple sites,1680,8163 +1724288400,SSL client,61471,134449 +1724288400,Ubuntu Update Manager,31128,157270 +1724288400,Yandex,7186,25295 +1724288400,GitHub,1727,5581 +1724288400,Ubuntu,10062,9369 +1724288400,Microsoft CryptoAPI,3445,2814 +1724288400,Google Hangouts,855,7031 +1724288400,ICMP,1431,0 +1724288400,Telegram,2025,7377 +1724288400,Edge Chromium,7798,23600 +1724288400,DNS over TLS,4550,19183 +1724288400,DNS over HTTPS,21506,80320 +1724288700,__unknown,13059,723905 +1724288700,__unknown,254,876 +1724288700,Dropbox,119841,20124 +1724288700,HTTPS,119841,20124 +1724288700,SSL client,119841,20124 +1724288700,HTTPS,9720,11351 +1724288700,SSL client,3991,6584 +1724288700,Yandex,3991,6584 +1724288700,Telegram,180,180 +1724288700,__unknown,41527,44741 +1724288700,Google,9418,11678 +1724288700,Windows Live,4950,7462 +1724288700,HTTPS,114894,193554 +1724288700,Avast,1260,9191 +1724288700,SSL client,46298,95650 +1724288700,Microsoft,11023,18959 +1724288700,Mail.Ru,5263,10220 +1724288700,Yandex,6722,8449 +1724288700,Office 365,1749,10574 +1724288700,Sharepoint Online,3653,9473 +1724288700,GISMETEO,2260,9644 +1724288700,__unknown,2786575,3258088 +1724288700,Dropbox,1707,1519 +1724288700,Google,144493,160415 +1724288700,MSN,1993,7165 +1724288700,HTTP,88276052,164073709 +1724288700,Skype,3321,7881 +1724288700,Advanced Packaging Tool,1168,953 +1724288700,HTTPS,411600,617295 +1724288700,Avast,1884,4342 +1724288700,SSL client,345177,494135 +1724288700,Ubuntu Update Manager,641,423 +1724288700,Microsoft,38415,87305 +1724288700,Mail.Ru,108203,124076 +1724288700,Yandex,28582,65251 +1724288700,Ubuntu,527,530 +1724288700,Microsoft Windows Live Services Authentication,16061,33492 +1724288700,Edge Chromium,467,1949 +1724288700,DNS over TLS,985,4638 +1724288700,DNS over HTTPS,6241,27489 +1724288700,Google,81212,89929 +1724288700,HTTPS,81212,89929 +1724288700,SSL client,81212,89929 +1724288700,HTTPS,53623,65026 +1724288700,SSL client,53623,65026 +1724288700,Telegram,53623,65026 +1724288700,HTTPS,53772,68788 +1724288700,SSL client,53772,68788 +1724288700,Telegram,53772,68788 +1724288700,HTTPS,52164,32637 +1724288700,__unknown,1123,479 +1724288700,HTTPS,27260,15587 +1724288700,__unknown,1015,420 +1724288700,Google,16993,18285 +1724288700,HTTPS,20893,20720 +1724288700,SSL client,16993,18285 +1724288700,ICMP,656,0 +1724288700,__unknown,347421,391429 +1724288700,Bing,1167,1136 +1724288700,BitTorrent,310,496 +1724288700,DHCPv6,163,0 +1724288700,Google APIs,5701,17879 +1724288700,Google Drive,8845,11470 +1724288700,Google,23652,46181 +1724288700,DNS,22159,0 +1724288700,Gmail,6828,8062 +1724288700,NetBIOS-dgm,250,0 +1724288700,NTP,29920,6555 +1724288700,VKontakte,2868,6095 +1724288700,Odnoklassniki,2549,7483 +1724288700,HTTPS,111175,188456 +1724288700,SSL client,51610,98306 +1724288700,ICMP,9200,4080 +1724288700,DNS over HTTPS,9351,27580 +1724288700,__unknown,310855,4915631 +1724288700,DHCPv6,978,0 +1724288700,Google APIs,72248,35214 +1724288700,Google Drive,9100,10579 +1724288700,Google,26427,59678 +1724288700,QQ,414,1581 +1724288700,Chrome,1208,1034 +1724288700,DNS,56658,46676 +1724288700,HTTP,79933,98006 +1724288700,Launchpad,3496,2480 +1724288700,Microsoft Update,2298,1975 +1724288700,NTP,270,270 +1724288700,Advanced Packaging Tool,33919,30382 +1724288700,HTTPS,198471,461573 +1724288700,Avast,382,391 +1724288700,SSL client,117672,126116 +1724288700,Ubuntu Update Manager,23678,21592 +1724288700,Microsoft,782,1067 +1724288700,Yandex,6224,27194 +1724288700,Ubuntu,8020,7689 +1724288700,Microsoft CryptoAPI,3445,2941 +1724288700,ICMP,1122,0 +1724288700,ICMP for IPv6,70,0 +1724288700,Google Sign in,6203,4532 +1724288700,Edge Chromium,5163,16795 +1724288700,DNS over HTTPS,22502,75244 +1724288999,HTTPS,57728,121292 +1724288999,Pinterest,57728,121292 +1724288999,DNS over HTTPS,258811,578652 +1724288999,Windows Live,80658,19221 +1724288999,HTTPS,80658,19221 +1724288999,SSL client,80658,19221 +1724288999,__unknown,739,0 +1724288999,HTTPS,24356,267943 +1724288999,SSL client,24356,267943 +1724288999,Microsoft,15093,240981 +1724288999,Yandex,6368,19704 +1724288999,Microsoft Teams,2895,7258 +1724288999,__unknown,420,8138 +1724288999,HTTPS,53405,63454 +1724288999,SSL client,53405,63454 +1724288999,Telegram,53405,63454 +1724288999,HTTPS,32343,28579 +1724288999,__unknown,83672,58219 +1724288999,Gmail,10891,35601 +1724288999,Skype,2595,8335 +1724288999,TwitchTV,5517,7023 +1724288999,HTTPS,74311,204809 +1724288999,Avast,1254,8428 +1724288999,SSL client,62722,189708 +1724288999,Samsung,2714,6706 +1724288999,Microsoft,8100,25672 +1724288999,Mail.Ru,17329,17441 +1724288999,Yandex,3601,7082 +1724288999,Google Play,5201,11573 +1724288999,GISMETEO,2074,9352 +1724288999,Adobe Update,3446,52495 +1724288999,__unknown,114170,71337 +1724288999,Google APIs,3095,7156 +1724288999,Google,435431,317261 +1724288999,HTTP,569,566 +1724288999,Advanced Packaging Tool,569,566 +1724288999,HTTPS,848375,1189700 +1724288999,Mozilla,2668,8214 +1724288999,Avast,1254,10344 +1724288999,SSL client,798664,1081935 +1724288999,Amazon Web Services,3259,21490 +1724288999,Microsoft,204102,482990 +1724288999,Mail.Ru,120877,118370 +1724288999,Yandex,25888,52521 +1724288999,Ubuntu,569,566 +1724288999,Office 365,2090,63589 +1724288999,Google,17486,25829 +1724288999,HTTPS,17486,25829 +1724288999,SSL client,17486,25829 +1724288999,DNS over HTTPS,20732,46117 +1724288999,HTTPS,9140,10698 +1724288999,Google,16123,25685 +1724288999,HTTPS,16123,25685 +1724288999,SSL client,16123,25685 +1724288999,__unknown,667,496 +1724288999,Google,61670,42290 +1724288999,HTTPS,61670,42290 +1724288999,SSL client,61670,42290 +1724288999,ICMP,1312,0 +1724288999,__unknown,1452,1925 +1724288999,HTTPS,13573,32769 +1724288999,ICMP,492,0 +1724288999,CoAP,1764,1296 +1724288999,__unknown,286657,426516 +1724288999,BITS,3666,14322 +1724288999,BitTorrent,463,694 +1724288999,DHCPv6,163,0 +1724288999,Google APIs,2768,9049 +1724288999,Google,47760,102899 +1724288999,BitTorrent tracker,153,198 +1724288999,DNS,17622,0 +1724288999,Gmail,13137,10654 +1724288999,HTTP,98260,9627140 +1724288999,Microsoft Update,1618,1321 +1724288999,NTP,12750,3000 +1724288999,VKontakte,2803,6103 +1724288999,Odnoklassniki,2609,7363 +1724288999,HTTPS,226175,206986 +1724288999,SSL client,194194,150999 +1724288999,Microsoft,92389,9610994 +1724288999,Atlassian,118898,10781 +1724288999,Microsoft CryptoAPI,2205,1824 +1724288999,ICMP,7898,60 +1724288999,ICMP for IPv6,70,0 +1724288999,Google Sign in,6219,4150 +1724288999,DNS over HTTPS,6363,22176 +1724288999,__unknown,308205,414582 +1724288999,Google APIs,1884,6375 +1724288999,Google,248207,3710720 +1724288999,DNS,47320,45517 +1724288999,Gmail,12868,11802 +1724288999,HTTP,62780,82707 +1724288999,Internet Explorer,6221,2040 +1724288999,Launchpad,3200,2480 +1724288999,Microsoft Update,3616,2820 +1724288999,NetBIOS-dgm,243,0 +1724288999,NTP,900,900 +1724288999,SSL,855,7033 +1724288999,TFTP,60,0 +1724288999,Advanced Packaging Tool,30737,27985 +1724288999,HTTPS,357271,4070872 +1724288999,Mozilla,1998,4535 +1724288999,SSL client,276193,3783201 +1724288999,Ubuntu Update Manager,21044,19603 +1724288999,Microsoft,633,8049 +1724288999,VeriSign,566,2141 +1724288999,Yandex,15536,37610 +1724288999,GitHub,1727,5582 +1724288999,Ubuntu,9014,17050 +1724288999,Microsoft CryptoAPI,10020,9907 +1724288999,Microsoft WNS,633,8049 +1724288999,Google Hangouts,855,7033 +1724288999,ICMP,2044,0 +1724288999,Telegram,1778,677 +1724288999,Edge Chromium,5223,17418 +1724288999,Grammarly,2201,7774 +1724288999,DNS over HTTPS,13034,36931 +1724289299,__unknown,1390,2060 +1724289299,HTTPS,24425,29840 +1724289299,__unknown,1080,22905 +1724289299,HTTPS,5571,7812 +1724289299,__unknown,65276,79686 +1724289299,HTTPS,2559,1523 +1724289299,__unknown,37142,16254 +1724289299,Google,8268,5287 +1724289299,Skype,2582,8276 +1724289299,TeamViewer,21185,34013 +1724289299,HTTPS,103227,580269 +1724289299,Mozilla,12925,33760 +1724289299,SSL client,87583,545316 +1724289299,Microsoft,19939,49325 +1724289299,Mail.Ru,5124,1580 +1724289299,Yandex,7787,13656 +1724289299,JetBrains,23744,420207 +1724289299,GISMETEO,2194,9352 +1724289299,Google Sign in,5020,3873 +1724289299,__unknown,324675,181283 +1724289299,Dropbox,9360,224502 +1724289299,Google,206556,211541 +1724289299,MSN,2069,13735 +1724289299,Skype,3269,7945 +1724289299,HTTPS,457896,825460 +1724289299,iCloud,5891,10352 +1724289299,Mozilla,5612,16835 +1724289299,SSL client,398647,720057 +1724289299,Microsoft,37205,65089 +1724289299,Mail.Ru,87665,88071 +1724289299,Yandex,19182,36883 +1724289299,Office 365,11194,29336 +1724289299,Google Sign in,6357,4234 +1724289299,Grammarly,2649,7001 +1724289299,DNS over HTTPS,4733,20054 +1724289299,HTTPS,150933,119817 +1724289299,HTTPS,41633,58220 +1724289299,SSL client,41633,58220 +1724289299,Telegram,41633,58220 +1724289299,__unknown,282,889 +1724289299,__unknown,1568,11087 +1724289299,HTTPS,32174,27259 +1724289299,__unknown,584,472 +1724289299,SSL,2807,9190 +1724289299,HTTPS,3860,6780 +1724289299,ICMP,21758,0 +1724289299,__unknown,800716,237368 +1724289299,HTTP,705,474 +1724289299,HTTPS,12168,21678 +1724289299,ICMP,1680,1680 +1724289299,DNS over HTTPS,5009,13530 +1724289299,__unknown,441110,352855 +1724289299,BitTorrent,310,496 +1724289299,Google Drive,10013,10990 +1724289299,Google,38494,115961 +1724289299,DNS,22297,0 +1724289299,Firefox,3534,6776 +1724289299,HTTP,4506,7731 +1724289299,NTP,12570,2820 +1724289299,VKontakte,2744,6019 +1724289299,HTTPS,109628,578313 +1724289299,SSL client,56684,146478 +1724289299,Yandex,1133,670 +1724289299,Microsoft CryptoAPI,583,499 +1724289299,ICMP,2272,0 +1724289299,Grammarly,2112,7887 +1724289299,DNS over HTTPS,14633,38300 +1724289299,__unknown,371122,268598 +1724289299,BITS,57110,2006615 +1724289299,DHCPv6,978,0 +1724289299,Google APIs,2470,6745 +1724289299,Google,27487,38463 +1724289299,DNS,40621,38889 +1724289299,HTTP,108407,2076972 +1724289299,Launchpad,3200,2480 +1724289299,NetBIOS-dgm,250,0 +1724289299,NTP,810,810 +1724289299,Odnoklassniki,2670,7561 +1724289299,Advanced Packaging Tool,27126,24701 +1724289299,HTTPS,112478,276616 +1724289299,Spotify,1838,4674 +1724289299,Apple sites,1879,4486 +1724289299,Mozilla,2758,1739 +1724289299,Avast,382,391 +1724289299,SSL client,53676,86836 +1724289299,Ubuntu Update Manager,19721,18439 +1724289299,Microsoft,57110,2006615 +1724289299,Yandex,10783,28553 +1724289299,Ubuntu,5905,5626 +1724289299,ICMP,6529,0 +1724289299,Google Sign in,6204,4433 +1724289299,Edge Chromium,7271,22229 +1724289299,DNS over HTTPS,8813,27039 +1724289600,__unknown,81811,141510 +1724289600,HTTPS,4142,6382 +1724289600,SSL client,4142,6382 +1724289600,Sharepoint Online,4142,6382 +1724289600,HTTPS,3240,3693 +1724289600,HTTPS,17977,20749 +1724289600,__unknown,834,0 +1724289600,Google APIs,2189,6174 +1724289600,HTTPS,6761,14956 +1724289600,SSL client,6761,14956 +1724289600,Yandex,3066,2807 +1724289600,Google Play,1506,5975 +1724289600,__unknown,242416,112080 +1724289600,Gmail,9963,10689 +1724289600,TeamViewer,1518,8907 +1724289600,HTTPS,77234,179488 +1724289600,Mozilla,2553,5219 +1724289600,SSL client,50029,132530 +1724289600,Microsoft,12244,25881 +1724289600,Mail.Ru,6765,6235 +1724289600,Yandex,13043,55669 +1724289600,Apple Maps,2558,8166 +1724289600,Office 365,1749,10574 +1724289600,GISMETEO,2194,9356 +1724289600,__unknown,105234,57496 +1724289600,Dropbox,3442,2843 +1724289600,Google APIs,2765,9061 +1724289600,HTTP,4908,10876 +1724289600,Microsoft Update,99370,295587 +1724289600,Steam,10038,18042 +1724289600,Advanced Packaging Tool,569,566 +1724289600,HTTPS,467597,1128542 +1724289600,SSL client,421081,1030703 +1724289600,Microsoft,142810,475076 +1724289600,Mail.Ru,73875,68941 +1724289600,Yandex,61585,115028 +1724289600,Ubuntu,569,566 +1724289600,Google Update,4339,10310 +1724289600,uTorrent,23053,39042 +1724289600,Office 365,4143,7083 +1724289600,DNS over HTTPS,2338,10786 +1724289600,HTTPS,28403,41318 +1724289600,SSL client,28403,41318 +1724289600,Telegram,28403,41318 +1724289600,ICMP,4042,0 +1724289600,__unknown,1743,923 +1724289600,Google,6373,12032 +1724289600,HTTPS,30217,22218 +1724289600,SSL client,6373,12032 +1724289600,__unknown,1332,3899 +1724289600,Google,107786,104499 +1724289600,HTTPS,115273,180821 +1724289600,SSL client,107786,104499 +1724289600,ICMP,984,0 +1724289600,DNS over HTTPS,3363,9924 +1724289600,__unknown,414898,4075090 +1724289600,BITS,29994,2550959 +1724289600,BitTorrent,463,1033 +1724289600,DHCPv6,163,0 +1724289600,Google APIs,30892,22224 +1724289600,Google Drive,26825,15040 +1724289600,Google,65127,127400 +1724289600,BitTorrent tracker,153,537 +1724289600,DNS,17166,0 +1724289600,Gmail,22931,65663 +1724289600,HTTP,32014,2552732 +1724289600,Microsoft Update,606,501 +1724289600,NTP,13020,3270 +1724289600,VKontakte,2804,6157 +1724289600,HTTPS,193559,355826 +1724289600,iCloud,4261,14130 +1724289600,Mozilla,2615,1712 +1724289600,SSL client,158237,260237 +1724289600,Microsoft,29994,2550959 +1724289600,Microsoft CryptoAPI,1422,1240 +1724289600,ICMP,7422,2760 +1724289600,Grammarly,2782,7911 +1724289600,__unknown,429592,621949 +1724289600,DHCPv6,978,0 +1724289600,Google,17905,29583 +1724289600,Chrome,941,2803 +1724289600,DNS,45044,42256 +1724289600,Gmail,27799,28884 +1724289600,HTTP,94081,125123 +1724289600,Launchpad,3496,2480 +1724289600,NTP,24420,4920 +1724289600,SSL,1652,14124 +1724289600,Odnoklassniki,2549,7500 +1724289600,Advanced Packaging Tool,32085,29063 +1724289600,HTTPS,140700,339411 +1724289600,Avast,943,4529 +1724289600,SSL client,61298,111224 +1724289600,Ubuntu Update Manager,23749,22235 +1724289600,Microsoft,633,8047 +1724289600,Yandex,9805,27287 +1724289600,Ubuntu,6540,6188 +1724289600,Microsoft CryptoAPI,1885,1493 +1724289600,Microsoft WNS,633,8047 +1724289600,Google Hangouts,1652,14124 +1724289600,ICMP,2248,0 +1724289600,Edge Chromium,6037,17581 +1724289600,Grammarly,2240,7850 +1724289600,DNS over HTTPS,6622,22986 +1724289901,HTTPS,30652,70978 +1724289901,SSL client,30652,70978 +1724289901,Yandex,30652,70978 +1724289901,__unknown,1488902,609050 +1724289901,DNS over HTTPS,53987,117574 +1724289901,HTTPS,122273,547167 +1724289901,SSL client,122273,547167 +1724289901,Mail.Ru,122273,547167 +1724289901,Apple Mail,10469,19746 +1724289901,IMAPS,10469,19746 +1724289901,SSL client,10469,19746 +1724289901,Dropbox,116390,19762 +1724289901,Windows Live,28218,7287 +1724289901,HTTPS,277006,380194 +1724289901,SSL client,261557,340435 +1724289901,Microsoft,36582,242447 +1724289901,Google Play,25898,8903 +1724289901,Telegram,54469,62036 +1724289901,Google APIs,1987,6294 +1724289901,HTTPS,3177,12231 +1724289901,SSL client,3177,12231 +1724289901,Google Play,1190,5937 +1724289901,__unknown,765199,337271 +1724289901,Dropbox,1729,1358 +1724289901,Google APIs,3710,44343 +1724289901,Skype,2655,8336 +1724289901,VKontakte,16539,28102 +1724289901,HTTPS,73943,156625 +1724289901,Mozilla,5860,5787 +1724289901,SSL client,68460,148316 +1724289901,Microsoft,10171,29204 +1724289901,Mail.Ru,18764,18295 +1724289901,Yandex,7153,10051 +1724289901,GISMETEO,1879,2840 +1724289901,__unknown,128414,83333 +1724289901,Google,663410,241710 +1724289901,HTTP,5488,11632 +1724289901,Advanced Packaging Tool,569,566 +1724289901,HTTPS,979721,708766 +1724289901,Avast,1320,9063 +1724289901,SSL client,900928,574458 +1724289901,CloudFront,3742,1093 +1724289901,Microsoft,53644,69639 +1724289901,Mail.Ru,112083,119207 +1724289901,Yandex,30580,59486 +1724289901,Ubuntu,569,566 +1724289901,Google Update,4331,10310 +1724289901,Microsoft CryptoAPI,588,756 +1724289901,Rambler,15492,8441 +1724289901,Office 365,11906,41682 +1724289901,Microsoft Windows Live Services Authentication,8751,24137 +1724289901,DNS over HTTPS,6511,25711 +1724289901,HTTPS,108195,35926 +1724289901,ICMP,1558,0 +1724289901,HTTPS,22484,20531 +1724289901,__unknown,1428,796 +1724289901,Google APIs,10580,14262 +1724289901,HTTPS,46550,36081 +1724289901,SSL client,10580,14262 +1724289901,DNS over HTTPS,5127,11932 +1724289901,CoAP,2744,2016 +1724289901,__unknown,4279,10490 +1724289901,Google,5025,10184 +1724289901,HTTP,521,382 +1724289901,Microsoft Update,521,382 +1724289901,HTTPS,24399,50865 +1724289901,Spotify,2119,8112 +1724289901,SSL client,9755,24955 +1724289901,GitHub,2611,6659 +1724289901,Microsoft CryptoAPI,521,382 +1724289901,ICMP,492,0 +1724289901,__unknown,560689,963326 +1724289901,BitTorrent,310,496 +1724289901,DHCPv6,163,0 +1724289901,Google,28493,62788 +1724289901,DNS,17348,0 +1724289901,Gmail,8616,15141 +1724289901,HTTP,1174,1006 +1724289901,NetBIOS-dgm,243,0 +1724289901,NTP,12390,2640 +1724289901,VKontakte,2743,6156 +1724289901,HTTPS,132166,208815 +1724289901,SSL client,42100,89036 +1724289901,Microsoft CryptoAPI,1174,1006 +1724289901,ICMP,3812,0 +1724289901,DNS over HTTPS,14318,42226 +1724289901,__unknown,424642,702845 +1724289901,Google,27771,46871 +1724289901,DNS,45755,40581 +1724289901,HTTP,82129,346550 +1724289901,Internet Explorer,822,660 +1724289901,Launchpad,3200,2480 +1724289901,Microsoft Update,2604,2131 +1724289901,NTP,540,540 +1724289901,STUN,752083,55528 +1724289901,Odnoklassniki,3699,2469 +1724289901,Advanced Packaging Tool,33154,282635 +1724289901,HTTPS,150086,404066 +1724289901,SSL client,46073,85378 +1724289901,Ubuntu Update Manager,26809,277397 +1724289901,Yandex,10965,22398 +1724289901,Ubuntu,4845,4598 +1724289901,Microsoft CryptoAPI,2604,2131 +1724289901,ICMP,1541,0 +1724289901,Edge Chromium,4216,10915 +1724289901,DNS over TLS,2512,9687 +1724289901,DNS over HTTPS,13600,55159 +1724290200,HTTPS,60425,106157 +1724290200,SSL client,60425,106157 +1724290200,Yandex,60425,106157 +1724290200,HTTPS,140368,173329 +1724290200,HTTPS,53755,63886 +1724290200,SSL client,53755,63886 +1724290200,Telegram,53755,63886 +1724290200,__unknown,5706,4383 +1724290200,Google APIs,1675,22309 +1724290200,HTTPS,1675,22309 +1724290200,SSL client,1675,22309 +1724290200,HTTPS,20669,18265 +1724290200,SSL client,20669,18265 +1724290200,Google Play,20669,18265 +1724290200,__unknown,25059,25014 +1724290200,Google,8264,5004 +1724290200,MSN,1352,7372 +1724290200,TeamViewer,1510,8838 +1724290200,HTTPS,53449,90981 +1724290200,SSL client,33172,68770 +1724290200,Microsoft,8698,19019 +1724290200,Mail.Ru,9413,11374 +1724290200,Office 365,1741,7788 +1724290200,GISMETEO,2194,9375 +1724290200,__unknown,16530,22300 +1724290200,Bing,3438,6482 +1724290200,Dropbox,3512,3319 +1724290200,Dell,1111,4306 +1724290200,HTTP,587,2009 +1724290200,Skype,2656,8336 +1724290200,HTTPS,248293,459698 +1724290200,Apple sites,1796,4535 +1724290200,Opera,9821,6073 +1724290200,SSL client,199236,326390 +1724290200,Microsoft,32833,65363 +1724290200,Mail.Ru,107488,111983 +1724290200,Yandex,23586,48551 +1724290200,Exchange Online,1518,6467 +1724290200,Office 365,9172,37709 +1724290200,Microsoft Windows Live Services Authentication,12713,31348 +1724290200,Edge Chromium,587,2009 +1724290200,DNS over HTTPS,216,222 +1724290200,HTTPS,85039,34069 +1724290200,__unknown,215,225 +1724290200,ICMP,3034,0 +1724290200,__unknown,10096,9078 +1724290200,HTTPS,166692,58676 +1724290200,__unknown,2749,11513 +1724290200,Windows Live,8404,29141 +1724290200,HTTP,563,408 +1724290200,HTTPS,16724,42651 +1724290200,SSL client,8404,29141 +1724290200,__unknown,723006,222177 +1724290200,HTTPS,11796,34276 +1724290200,__unknown,360246,349111 +1724290200,BitTorrent,463,694 +1724290200,Google APIs,14902,27091 +1724290200,Google,33054,82100 +1724290200,BitTorrent tracker,153,198 +1724290200,DNS,16710,0 +1724290200,NetBIOS-dgm,250,0 +1724290200,NTP,180,180 +1724290200,STUN,4224,5668 +1724290200,VKontakte,2802,6079 +1724290200,HTTPS,113401,226302 +1724290200,SSL client,50758,115270 +1724290200,MDNS,364,0 +1724290200,ICMP,5589,60 +1724290200,DNS over HTTPS,10204,33083 +1724290200,__unknown,208430,211980 +1724290200,BITS,49072,2409935 +1724290200,DHCPv6,1141,0 +1724290200,Google APIs,2349,6747 +1724290200,Google Drive,17264,40601 +1724290200,Google,136786,46646 +1724290200,DNS,41298,41148 +1724290200,Gmail,6130,36855 +1724290200,HTTP,122858,2496394 +1724290200,Launchpad,3200,2480 +1724290200,Microsoft Update,2499,2017 +1724290200,NTP,1440,1440 +1724290200,Advanced Packaging Tool,34513,31511 +1724290200,HTTPS,241421,382710 +1724290200,Apple sites,1868,4443 +1724290200,SSL client,173156,154389 +1724290200,Ubuntu Update Manager,26569,24755 +1724290200,Microsoft,49072,2409935 +1724290200,Yandex,9039,22572 +1724290200,Ubuntu,6019,5651 +1724290200,Microsoft CryptoAPI,3059,2480 +1724290200,ICMP,1492,0 +1724290200,Edge Chromium,3929,12183 +1724290200,DNS over HTTPS,10542,40249 +1724290500,ICMP,40016,0 +1724290500,__unknown,996,1736 +1724290500,HTTPS,45409,66868 +1724290500,SSL client,45409,66868 +1724290500,Telegram,45409,66868 +1724290500,Gmail,7218,16087 +1724290500,IMAPS,7218,16087 +1724290500,SSL client,7218,16087 +1724290500,HTTPS,199295,83501 +1724290500,SSL client,199295,83501 +1724290500,Mail.Ru,180685,65613 +1724290500,Yandex,18610,17888 +1724290500,HTTPS,5774,19767 +1724290500,SSL client,5774,19767 +1724290500,Yandex,5774,19767 +1724290500,HTTPS,16676,6903 +1724290500,Google APIs,4234,14376 +1724290500,HTTPS,7474,26390 +1724290500,SSL client,7474,26390 +1724290500,Google Play,3240,12014 +1724290500,__unknown,4161,5231 +1724290500,HTTPS,65723,178730 +1724290500,iCloud,5957,10758 +1724290500,Mozilla,2177,5345 +1724290500,Avast,1194,8652 +1724290500,SSL client,52568,90546 +1724290500,Microsoft,11852,26550 +1724290500,Mail.Ru,15020,12442 +1724290500,Yandex,7597,5457 +1724290500,Office 365,3809,17341 +1724290500,Google Sign in,4962,4001 +1724290500,__unknown,47016,30375 +1724290500,Bing,1819,9269 +1724290500,Google APIs,97547047,2363758 +1724290500,HTTP,1203,3361 +1724290500,Skype,2582,8277 +1724290500,Steam,13423,30542 +1724290500,HTTPS,97885596,2889684 +1724290500,Apple sites,2021,8601 +1724290500,Mozilla,2337,5385 +1724290500,SSL client,97845119,2776070 +1724290500,Microsoft,150754,153551 +1724290500,Mail.Ru,76607,71229 +1724290500,Yandex,11149,34639 +1724290500,Microsoft CryptoAPI,1203,3361 +1724290500,Office 365,12642,34222 +1724290500,Microsoft Windows Live Services Authentication,25941,59958 +1724290500,HTTPS,45721,66048 +1724290500,SSL client,45721,66048 +1724290500,Telegram,45721,66048 +1724290500,HTTPS,41545,21331 +1724290500,HTTPS,32380,27154 +1724290500,__unknown,1225,5208 +1724290500,HTTPS,54469,66422 +1724290500,SSL client,54469,66422 +1724290500,ICMP,9900,9900 +1724290500,Telegram,54469,66422 +1724290500,HTTPS,7206,7819 +1724290500,ICMP,2788,0 +1724290500,CoAP,1960,1440 +1724290500,__unknown,887502,959412 +1724290500,BitTorrent,310,496 +1724290500,Google Drive,7403,10043 +1724290500,Google,36306,186883 +1724290500,DNS,16214,0 +1724290500,NTP,36720,7470 +1724290500,STUN,3720,6600 +1724290500,VKontakte,2802,6103 +1724290500,HTTPS,83339,302008 +1724290500,SSL client,48519,207639 +1724290500,ICMP,3473,0 +1724290500,DNS over HTTPS,11370,33038 +1724290500,__unknown,280581,454850 +1724290500,DHCPv6,815,0 +1724290500,Google APIs,78572679,1845483 +1724290500,Google,23927,65672 +1724290500,DNS,54232,45880 +1724290500,HTTP,84503,112769 +1724290500,Launchpad,2560,1984 +1724290500,Microsoft Update,642,508 +1724290500,NetBIOS-dgm,243,0 +1724290500,NTP,2070,2070 +1724290500,STUN,3690,3552 +1724290500,Odnoklassniki,2609,7424 +1724290500,Steam,817,13417 +1724290500,Advanced Packaging Tool,27518,25222 +1724290500,HTTPS,78677327,2240836 +1724290500,Avast,382,391 +1724290500,SSL client,78621115,1991732 +1724290500,Ubuntu Update Manager,21292,19884 +1724290500,Yandex,12603,37996 +1724290500,GitHub,1727,5583 +1724290500,Ubuntu,6282,6100 +1724290500,Microsoft CryptoAPI,2990,2520 +1724290500,ICMP,1004,0 +1724290500,Telegram,5475,22063 +1724290500,Edge Chromium,4049,13982 +1724290500,Grammarly,2242,7949 +1724290500,DNS over TLS,2446,9540 +1724290500,DNS over HTTPS,19653,72351 +1724290800,HTTPS,6146,8731 +1724290800,SSL client,6146,8731 +1724290800,Sharepoint Online,6146,8731 +1724290800,HTTPS,2590,5854 +1724290800,STUN,79135657,5077368 +1724290800,Dropbox,116639,20396 +1724290800,HTTPS,116639,20396 +1724290800,SSL client,116639,20396 +1724290800,HTTPS,7280,4352 +1724290800,__unknown,6151,10622 +1724290800,Dropbox,6475,223028 +1724290800,Google,17930,28778 +1724290800,Gmail,10178,5843 +1724290800,TeamViewer,1450,8838 +1724290800,HTTPS,58273,325235 +1724290800,SSL client,46258,298228 +1724290800,Microsoft,6290,14578 +1724290800,Office 365,1741,7788 +1724290800,GISMETEO,2194,9375 +1724290800,__unknown,13040,21706 +1724290800,Bing,3172,6485 +1724290800,Dropbox,1769,1658 +1724290800,Google APIs,2746,6905 +1724290800,Google,26041,33340 +1724290800,HTTP,2542,3090 +1724290800,Internet Explorer,542,1068 +1724290800,Skype,2595,8204 +1724290800,Advanced Packaging Tool,1621,1490 +1724290800,HTTPS,402905,602885 +1724290800,Apple sites,2087,7218 +1724290800,SSL client,324059,419710 +1724290800,Amazon Web Services,3139,21430 +1724290800,Ubuntu Update Manager,1621,1490 +1724290800,Microsoft,75867,137270 +1724290800,Mail.Ru,110573,122157 +1724290800,Yandex,84845,47870 +1724290800,Office 365,3558,15576 +1724290800,Microsoft Windows Live Services Authentication,7667,11597 +1724290800,DNS over HTTPS,76767,169862 +1724290800,HTTPS,53264,64220 +1724290800,SSL client,53264,64220 +1724290800,Telegram,53264,64220 +1724290800,HTTPS,7722,10945 +1724290800,SSL client,7722,10945 +1724290800,DNS over HTTPS,7722,10945 +1724290800,HTTPS,8514,11571 +1724290800,SSL client,8514,11571 +1724290800,DNS over HTTPS,27123,53995 +1724290800,__unknown,1316,744 +1724290800,HTTPS,54934,21467 +1724290800,HTTPS,2255,5461 +1724290800,ICMP,574,0 +1724290800,__unknown,905707,69021789 +1724290800,BitTorrent,463,1033 +1724290800,DHCPv6,163,0 +1724290800,Google APIs,43410,17805 +1724290800,Google Drive,9390,10933 +1724290800,Google,31979,91893 +1724290800,BitTorrent tracker,153,537 +1724290800,DNS,22074,0 +1724290800,Gmail,7311,5052 +1724290800,HTTP,1652,1322 +1724290800,Microsoft Update,1652,1322 +1724290800,NTP,25230,5730 +1724290800,STUN,2598,3966 +1724290800,VKontakte,2742,6026 +1724290800,HTTPS,133690,228529 +1724290800,Mozilla,1876,4611 +1724290800,SSL client,104379,158258 +1724290800,Weather.com,1693,5750 +1724290800,Microsoft CryptoAPI,1652,1322 +1724290800,Google Play,3727,8301 +1724290800,ICMP,4472,0 +1724290800,ICMP for IPv6,70,0 +1724290800,Grammarly,2251,7887 +1724290800,DNS over HTTPS,16364,48457 +1724290800,CoAP,1568,1152 +1724290800,__unknown,395247,3278085 +1724290800,Bing,4721,7759 +1724290800,Google APIs,10349,22554 +1724290800,Google,17577,42904 +1724290800,Chrome,838,10665 +1724290800,DNS,49307,46424 +1724290800,Gmail,14476,14112 +1724290800,HTTP,93378,324548 +1724290800,Internet Explorer,822,660 +1724290800,Launchpad,3502,2492 +1724290800,Microsoft Update,1283,1015 +1724290800,NetBIOS-dgm,250,0 +1724290800,NTP,540,540 +1724290800,SSL,1710,14065 +1724290800,STUN,1860,3300 +1724290800,Odnoklassniki,3699,2657 +1724290800,Advanced Packaging Tool,35040,176629 +1724290800,HTTPS,267457,3035790 +1724290800,Apple sites,1796,4467 +1724290800,SSL client,111057,190379 +1724290800,Ubuntu Update Manager,22344,20951 +1724290800,Microsoft,633,8047 +1724290800,Yandex,16234,45264 +1724290800,GitHub,1727,5581 +1724290800,Ubuntu,11319,155479 +1724290800,Microsoft CryptoAPI,3756,3273 +1724290800,Microsoft WNS,633,8047 +1724290800,Apple Maps,77036,2523971 +1724290800,Google Play,39815,30927 +1724290800,Google Hangouts,1710,14065 +1724290800,ICMP,3260,0 +1724290800,Browsec,3759,13762 +1724290800,Edge Chromium,4696,16170 +1724290800,DNS over HTTPS,6132,18200 +1724291100,Windows Live,9501,109437 +1724291100,HTTPS,9501,109437 +1724291100,SSL client,9501,109437 +1724291100,HTTPS,45475,63383 +1724291100,SSL client,45475,63383 +1724291100,Telegram,45475,63383 +1724291100,HTTPS,204084,72599 +1724291100,ICMP,31320,31320 +1724291100,HTTPS,104898,304882 +1724291100,SSL client,104898,304882 +1724291100,Microsoft,50489,242846 +1724291100,Telegram,54409,62036 +1724291100,__unknown,360,7635 +1724291100,HTTPS,30514,38811 +1724291100,Google APIs,2147,7398 +1724291100,HTTPS,2147,7398 +1724291100,SSL client,2147,7398 +1724291100,Dropbox,1828,1657 +1724291100,MSN,2069,13773 +1724291100,Skype,2643,8338 +1724291100,TeamViewer,1517,8838 +1724291100,HTTPS,30319,83095 +1724291100,SSL client,24856,73614 +1724291100,Microsoft,9808,18310 +1724291100,Mail.Ru,3056,5535 +1724291100,Office 365,1741,7788 +1724291100,GISMETEO,2194,9375 +1724291100,__unknown,7365,18661 +1724291100,Bing,3707,6483 +1724291100,Dropbox,1274,4757 +1724291100,Google APIs,3028,2211 +1724291100,MSN,3444,9435 +1724291100,HTTP,4569,3810 +1724291100,TwitchTV,5465,7089 +1724291100,Advanced Packaging Tool,527,530 +1724291100,HTTPS,321319,474445 +1724291100,SSL client,256553,371636 +1724291100,Microsoft,30641,45561 +1724291100,Mail.Ru,116670,107424 +1724291100,Yandex,76618,88335 +1724291100,Ubuntu,527,530 +1724291100,Google Update,3028,2211 +1724291100,Office 365,12284,86878 +1724291100,Microsoft Windows Live Services Authentication,6450,15674 +1724291100,HTTPS,14110,18300 +1724291100,SSL client,14110,18300 +1724291100,DNS over HTTPS,14110,18300 +1724291100,__unknown,2679,2132 +1724291100,Telegram,2679,2132 +1724291100,__unknown,187,229 +1724291100,HTTPS,29303,42263 +1724291100,SSL client,29303,42263 +1724291100,Telegram,29303,42263 +1724291100,__unknown,0,1390 +1724291100,HTTPS,36526,15874 +1724291100,__unknown,0,5760 +1724291100,HTTPS,23102,20591 +1724291100,ICMP,43214,0 +1724291100,__unknown,2531,11345 +1724291100,Google,34087,36441 +1724291100,HTTPS,39398,56012 +1724291100,SSL client,34087,36441 +1724291100,Google,14571,18158 +1724291100,HTTPS,21492,28484 +1724291100,SSL client,14571,18158 +1724291100,ICMP,738,0 +1724291100,DNS over HTTPS,5009,13527 +1724291100,__unknown,510826,488915 +1724291100,BitTorrent,310,496 +1724291100,DHCPv6,978,0 +1724291100,Google APIs,2184,7193 +1724291100,Google Drive,10017,11393 +1724291100,Google,153671,79936 +1724291100,DNS,19099,0 +1724291100,HTTP,389,456 +1724291100,NTP,8060,2175 +1724291100,VKontakte,2742,6027 +1724291100,HTTPS,256033,213622 +1724291100,SSL client,216897,130528 +1724291100,Atlassian,44103,13479 +1724291100,ICMP,7476,780 +1724291100,Grammarly,2232,7888 +1724291100,DNS over HTTPS,14116,36946 +1724291100,CoAP,1176,864 +1724291100,__unknown,310526,255786 +1724291100,DHCPv6,163,0 +1724291100,Google APIs,3016,7147 +1724291100,Google,36590,62747 +1724291100,Chrome,1208,1034 +1724291100,DNS,46922,40777 +1724291100,HTTP,66718,79049 +1724291100,Launchpad,3200,2480 +1724291100,Microsoft Update,982,816 +1724291100,NTP,18160,4545 +1724291100,STUN,1230,1110 +1724291100,Odnoklassniki,1851,1189 +1724291100,Advanced Packaging Tool,30564,27851 +1724291100,HTTPS,119778,347255 +1724291100,Avast,448,457 +1724291100,SSL client,53596,105855 +1724291100,Ubuntu Update Manager,22428,20951 +1724291100,Yandex,11854,34464 +1724291100,Ubuntu,7127,6717 +1724291100,Microsoft CryptoAPI,2129,1781 +1724291100,ICMP,2670,0 +1724291100,Telegram,1866,669 +1724291100,Edge Chromium,4109,14042 +1724291100,DNS over TLS,2446,9688 +1724291100,DNS over HTTPS,6383,21823 +1724291400,Google APIs,211824,293290 +1724291400,HTTPS,211824,293290 +1724291400,SSL client,211824,293290 +1724291400,HTTPS,45753,63449 +1724291400,SSL client,45753,63449 +1724291400,Telegram,45753,63449 +1724291400,HTTPS,44665,22677 +1724291400,HTTPS,41925,47313 +1724291400,SSL client,14069,21293 +1724291400,Sharepoint Online,4143,6382 +1724291400,DNS over HTTPS,9926,14911 +1724291400,HTTPS,17084,12660 +1724291400,HTTPS,9734,17233 +1724291400,SSL client,1506,6009 +1724291400,Google Play,1506,6009 +1724291400,__unknown,2451,2898 +1724291400,Dropbox,3342,2537 +1724291400,HTTPS,117071,136617 +1724291400,Mozilla,2117,5285 +1724291400,SSL client,101393,113761 +1724291400,Microsoft,8417,14659 +1724291400,Mail.Ru,15052,12445 +1724291400,Yandex,7964,10420 +1724291400,Office 365,58128,52695 +1724291400,Sharepoint Online,4179,6349 +1724291400,GISMETEO,2194,9371 +1724291400,__unknown,9835,7816 +1724291400,HTTP,2209,3568 +1724291400,Skype,2644,8144 +1724291400,Advanced Packaging Tool,569,566 +1724291400,HTTPS,599169,657719 +1724291400,Mozilla,2119,5285 +1724291400,SSL client,515352,435702 +1724291400,Microsoft,315891,142627 +1724291400,VeriSign,1075,1826 +1724291400,Mail.Ru,91899,91023 +1724291400,Yandex,61449,84692 +1724291400,Ubuntu,569,566 +1724291400,Microsoft CryptoAPI,1640,3002 +1724291400,uTorrent,21704,39060 +1724291400,Office 365,7489,34759 +1724291400,Microsoft Windows Live Services Authentication,12722,31288 +1724291400,DNS over HTTPS,995,4585 +1724291400,DNS over HTTPS,229194,522505 +1724291400,HTTPS,8624,14264 +1724291400,__unknown,955,579 +1724291400,__unknown,870,360 +1724291400,HTTPS,43935,33883 +1724291400,SSL client,2334,6394 +1724291400,ICMP,574,0 +1724291400,DNS over HTTPS,2334,6394 +1724291400,__unknown,453006,367580 +1724291400,BitTorrent,463,694 +1724291400,Google APIs,46370,22719 +1724291400,Google Drive,18156,51805 +1724291400,Google,200449,113658 +1724291400,BitTorrent tracker,153,198 +1724291400,DNS,19716,0 +1724291400,HTTP,1788,1473 +1724291400,Microsoft Update,641,507 +1724291400,NetBIOS-dgm,243,0 +1724291400,NTP,990,990 +1724291400,HTTPS,439827,323176 +1724291400,SSL client,279700,204619 +1724291400,Microsoft CryptoAPI,1788,1473 +1724291400,ICMP,8100,0 +1724291400,Google Sign in,12493,8560 +1724291400,Grammarly,2232,7877 +1724291400,CoAP,980,720 +1724291400,__unknown,395358,382385 +1724291400,BITS,67406,1943690 +1724291400,DHCPv6,978,0 +1724291400,Google APIs,8796,22473 +1724291400,Google,34393,167105 +1724291400,DNS,39902,39564 +1724291400,Gmail,16656,15786 +1724291400,HTTP,154235,2385838 +1724291400,Launchpad,2560,1984 +1724291400,NTP,24510,5010 +1724291400,SSL,1710,14063 +1724291400,Odnoklassniki,2609,7439 +1724291400,Steam,4464,64705 +1724291400,Advanced Packaging Tool,35971,299160 +1724291400,HTTPS,177385,592019 +1724291400,Apple sites,1868,4444 +1724291400,SSL client,81305,274899 +1724291400,Ubuntu Update Manager,24538,153439 +1724291400,Microsoft,68039,1951735 +1724291400,Yandex,12487,41555 +1724291400,GitHub,1787,5581 +1724291400,Linux Mint,928,1062 +1724291400,Ubuntu,9220,144054 +1724291400,Microsoft CryptoAPI,1690,1477 +1724291400,Microsoft WNS,633,8045 +1724291400,Google Hangouts,1710,14063 +1724291400,ICMP,1118,0 +1724291400,Edge Chromium,6564,18941 +1724291400,DNS over HTTPS,17588,62137 +1724291700,SSL,28063,33969 +1724291700,Google APIs,83072,92325 +1724291700,HTTPS,83072,92325 +1724291700,SSL client,83072,92325 +1724291700,DNS over HTTPS,215031,482043 +1724291700,ICMP,18942,0 +1724291700,HTTPS,26982,11961 +1724291700,Dropbox,119308,21106 +1724291700,HTTPS,129713,30633 +1724291700,SSL client,119308,21106 +1724291700,HTTPS,3634,8412 +1724291700,SSL client,3634,8412 +1724291700,Yandex,3634,8412 +1724291700,Bing,3490,6426 +1724291700,Google,8265,5073 +1724291700,HTTP,2121,2181 +1724291700,Microsoft Update,3696,7770 +1724291700,TwitchTV,5465,7023 +1724291700,HTTPS,50141,103017 +1724291700,Mozilla,2117,5345 +1724291700,SSL client,42136,87266 +1724291700,Microsoft,10726,35563 +1724291700,Yandex,5404,3646 +1724291700,Microsoft CryptoAPI,2121,2181 +1724291700,Office 365,2660,15264 +1724291700,GISMETEO,1939,2938 +1724291700,__unknown,3709754,5599701 +1724291700,Bing,7281,12939 +1724291700,Google APIs,2974,7099 +1724291700,Google,99637,171075 +1724291700,HTTP,12740,18605 +1724291700,iTunes,3952,18894 +1724291700,SSL,4230,6580 +1724291700,Steam,11733,19770 +1724291700,Advanced Packaging Tool,1398,1226 +1724291700,HTTPS,811277,2103523 +1724291700,Apple sites,1995,6660 +1724291700,iCloud,9497,17560 +1724291700,Avast,8702,44540 +1724291700,SSL client,587536,804706 +1724291700,Ubuntu Update Manager,1398,1226 +1724291700,Microsoft,242799,259244 +1724291700,Mail.Ru,109257,108432 +1724291700,Yandex,69166,83572 +1724291700,Microsoft CryptoAPI,992,503 +1724291700,Office 365,1573,7133 +1724291700,Microsoft Windows Live Services Authentication,19202,46934 +1724291700,Microsoft Visual Studio,3620,5540 +1724291700,Hola,4230,6580 +1724291700,DNS over HTTPS,5203,24543 +1724291700,Google,394050,457638 +1724291700,HTTPS,394050,457638 +1724291700,SSL client,394050,457638 +1724291700,ICMP,4472,0 +1724291700,__unknown,215,225 +1724291700,HTTPS,32286,27223 +1724291700,__unknown,72583,73358 +1724291700,ICMP,3360,3360 +1724291700,__unknown,120,2173 +1724291700,HTTPS,5354,13496 +1724291700,Spotify,2053,8112 +1724291700,SSL client,2053,8112 +1724291700,ICMP,602,0 +1724291700,DNS over HTTPS,6567,17439 +1724291700,__unknown,313288,1097366 +1724291700,BitTorrent,310,496 +1724291700,DHCPv6,163,0 +1724291700,Google,17340,43604 +1724291700,Chrome,1275,869 +1724291700,DNS,16095,0 +1724291700,HTTP,3961,3077 +1724291700,Microsoft Update,646,500 +1724291700,NetBIOS-dgm,250,0 +1724291700,NTP,1080,1080 +1724291700,HTTPS,92878,184721 +1724291700,SSL client,19572,51415 +1724291700,Microsoft CryptoAPI,2686,2208 +1724291700,ICMP,6846,2340 +1724291700,Grammarly,2232,7811 +1724291700,DNS over HTTPS,3395,9671 +1724291700,CoAP,980,720 +1724291700,__unknown,256607,228301 +1724291700,DHCPv6,978,0 +1724291700,Google APIs,4233,13479 +1724291700,Google,20838,41152 +1724291700,DNS,50363,45988 +1724291700,HTTP,88928,239871 +1724291700,Launchpad,3200,2480 +1724291700,Microsoft Update,3680,11243 +1724291700,NTP,13560,3810 +1724291700,STUN,1860,3300 +1724291700,Odnoklassniki,2609,7483 +1724291700,Advanced Packaging Tool,33670,160998 +1724291700,HTTPS,168220,591492 +1724291700,iCloud,4249,8944 +1724291700,SSL client,86852,143598 +1724291700,Ubuntu Update Manager,26217,154700 +1724291700,VeriSign,566,2141 +1724291700,Yandex,9331,24750 +1724291700,Ubuntu,6019,5658 +1724291700,Microsoft CryptoAPI,5980,14853 +1724291700,Google Play,39815,30811 +1724291700,ICMP,1795,0 +1724291700,Edge Chromium,527,1364 +1724291700,DNS over TLS,2380,12672 +1724291700,DNS over HTTPS,23833,88980 +1724292000,HTTPS,17342,24460 +1724292000,SSL client,17342,24460 +1724292000,DNS over HTTPS,17342,24460 +1724292000,Windows Live,69008,18520 +1724292000,HTTPS,69008,18520 +1724292000,SSL client,69008,18520 +1724292000,Skype,3977,8741 +1724292000,HTTPS,67928,183742 +1724292000,SSL client,67928,183742 +1724292000,Microsoft,9542,112965 +1724292000,Telegram,54409,62036 +1724292000,__unknown,43330,44660 +1724292000,HTTPS,25896,28855 +1724292000,SSL client,22927,24294 +1724292000,Google Play,22927,24294 +1724292000,__unknown,1326,11453 +1724292000,Bing,3579,6484 +1724292000,Google,20755,31537 +1724292000,Skype,3034,9773 +1724292000,HTTPS,87292,186582 +1724292000,Mozilla,4569,10670 +1724292000,SSL client,49686,113466 +1724292000,Microsoft,10386,29875 +1724292000,Yandex,3724,8267 +1724292000,Office 365,1445,7489 +1724292000,GISMETEO,2194,9371 +1724292000,__unknown,31617,37906 +1724292000,Dropbox,2304,3295 +1724292000,Google APIs,3032,7096 +1724292000,Google,34937,63179 +1724292000,Dell,1051,4307 +1724292000,Microsoft Update,1795,5433 +1724292000,Skype,1969,87327 +1724292000,HTTPS,330675,659906 +1724292000,Apple sites,5074,24702 +1724292000,SSL client,277170,490317 +1724292000,Microsoft,63941,66461 +1724292000,Mail.Ru,94981,95601 +1724292000,Yandex,25439,47408 +1724292000,Office 365,9289,32652 +1724292000,Microsoft Windows Live Services Authentication,20760,42917 +1724292000,Grammarly,12598,9939 +1724292000,DNS over HTTPS,9810,39058 +1724292000,HTTPS,135236,107603 +1724292000,HTTPS,67644,31638 +1724292000,DNS over HTTPS,8843,21669 +1724292000,HTTPS,11920,19037 +1724292000,ICMP,508,0 +1724292000,__unknown,312296,328847 +1724292000,BitTorrent,463,496 +1724292000,DHCPv6,163,0 +1724292000,Google APIs,10721,28226 +1724292000,Google,21745,64863 +1724292000,BitTorrent tracker,153,0 +1724292000,DNS,20098,0 +1724292000,Gmail,17720,11417 +1724292000,HTTP,3788,6095 +1724292000,Microsoft Update,2018,1636 +1724292000,NetBIOS-dgm,243,0 +1724292000,NTP,36900,7650 +1724292000,STUN,2666,4262 +1724292000,HTTPS,124164,228057 +1724292000,SSL client,52379,112319 +1724292000,VeriSign,830,2141 +1724292000,Microsoft CryptoAPI,3788,6095 +1724292000,Office 365,940,2318 +1724292000,ICMP,8498,0 +1724292000,Grammarly,2193,7813 +1724292000,DNS over HTTPS,9881,31507 +1724292000,__unknown,506481,330678 +1724292000,Google APIs,2349,6746 +1724292000,Google Drive,7464,10253 +1724292000,Google,3727,8351 +1724292000,DNS,47917,49433 +1724292000,Gmail,12044,16454 +1724292000,HTTP,105298,124585 +1724292000,Launchpad,3200,2480 +1724292000,Microsoft Update,2263,1835 +1724292000,NTP,2610,2610 +1724292000,VKontakte,2443,5527 +1724292000,Advanced Packaging Tool,35316,32538 +1724292000,HTTPS,90445,332026 +1724292000,SSL client,36534,66402 +1724292000,Ubuntu Update Manager,27911,26276 +1724292000,Yandex,9528,25111 +1724292000,Ubuntu,7180,6997 +1724292000,Microsoft CryptoAPI,5108,4385 +1724292000,ICMP,1480,0 +1724292000,Telegram,1905,7361 +1724292000,Edge Chromium,6037,17633 +1724292000,DNS over HTTPS,7678,28260 +1724292301,HTTPS,102609,4317865 +1724292301,HTTPS,76407,102917 +1724292301,HTTPS,105926,46044 +1724292301,DNS over HTTPS,268363,601426 +1724292301,HTTPS,110346,495075 +1724292301,SSL client,110346,495075 +1724292301,Mail.Ru,110346,495075 +1724292301,HTTPS,45649,18558 +1724292301,HTTPS,53904,68782 +1724292301,SSL client,53904,68782 +1724292301,Telegram,53904,68782 +1724292301,HTTPS,2977,4079 +1724292301,__unknown,44501,46372 +1724292301,HTTPS,23677,18391 +1724292301,SSL client,23677,18391 +1724292301,Google Play,23677,18391 +1724292301,Dropbox,111248,18141 +1724292301,HTTPS,139381,31777 +1724292301,SSL client,134109,28483 +1724292301,Google Play,22861,10342 +1724292301,__unknown,639701,626604 +1724292301,Dropbox,12528,17772 +1724292301,Skype,2582,8337 +1724292301,HTTPS,58607,156617 +1724292301,SSL client,48478,137403 +1724292301,Microsoft,8013,22621 +1724292301,Mail.Ru,3056,5535 +1724292301,Yandex,13702,62556 +1724292301,Office 365,1445,7489 +1724292301,GISMETEO,2194,9371 +1724292301,Google Sign in,4958,3722 +1724292301,__unknown,5053710,5158111 +1724292301,Dropbox,25853,353740 +1724292301,Google,159136,2401787 +1724292301,MSN,2052,7165 +1724292301,HTTP,4750,4908 +1724292301,Internet Explorer,607,802 +1724292301,Microsoft Update,19216,4016 +1724292301,SSL,1537,1392 +1724292301,TwitchTV,5391,7155 +1724292301,Advanced Packaging Tool,2968,2384 +1724292301,HTTPS,459723,3314886 +1724292301,Apple sites,2147,8628 +1724292301,Avast,1944,4342 +1724292301,SSL client,421807,3201439 +1724292301,Ubuntu Update Manager,1872,1354 +1724292301,Microsoft,58166,106575 +1724292301,Mail.Ru,94064,101137 +1724292301,Yandex,8893,28900 +1724292301,Ubuntu,1096,1030 +1724292301,Office 365,11975,103508 +1724292301,Dropbox Upload,2063,11715 +1724292301,Microsoft Windows Live Services Authentication,30092,62389 +1724292301,Google Hangouts,1537,1392 +1724292301,ICMP,5248,0 +1724292301,DNS over HTTPS,39730,188260 +1724292301,HTTPS,52208,25973 +1724292301,__unknown,3510,1830 +1724292301,HTTPS,37574,51824 +1724292301,SSL client,37574,51824 +1724292301,Telegram,37574,51824 +1724292301,__unknown,11347,159597 +1724292301,HTTPS,24650,44489 +1724292301,iCloud,2046,24056 +1724292301,SSL client,2046,24056 +1724292301,__unknown,184581,53073 +1724292301,Windows Live,1101,6529 +1724292301,HTTPS,61566,54211 +1724292301,SSL client,1101,6529 +1724292301,__unknown,5763,11360 +1724292301,HTTPS,9273,21417 +1724292301,SSL client,2791,6859 +1724292301,GitHub,2791,6859 +1724292301,ICMP,164,0 +1724292301,CoAP,1372,1008 +1724292301,__unknown,476026,281941 +1724292301,BitTorrent,310,496 +1724292301,Google APIs,48518,25756 +1724292301,Google,6455,13397 +1724292301,DNS,21532,0 +1724292301,HTTP,3149,10067 +1724292301,Microsoft Update,1282,1014 +1724292301,NetBIOS-dgm,250,0 +1724292301,NTP,25320,5820 +1724292301,HTTPS,137048,351626 +1724292301,Opera,1898,4589 +1724292301,SSL client,57107,44102 +1724292301,Microsoft,693,8047 +1724292301,Microsoft CryptoAPI,2456,2020 +1724292301,Microsoft WNS,693,8047 +1724292301,ICMP,27243,240 +1724292301,DNS over HTTPS,12052,34308 +1724292301,__unknown,305380,401551 +1724292301,DHCPv6,1141,0 +1724292301,Google APIs,7191,23080 +1724292301,Google,11051,33326 +1724292301,QQ,414,1581 +1724292301,DNS,45922,42074 +1724292301,Gmail,8676,15453 +1724292301,HTTP,86200,110999 +1724292301,iTunes,5502,25165 +1724292301,Launchpad,2560,1984 +1724292301,Microsoft Update,3276,2783 +1724292301,NTP,12570,2820 +1724292301,OpenSSH,9112,9968 +1724292301,SSH,9112,9968 +1724292301,STUN,1860,3300 +1724292301,Odnoklassniki,2669,7500 +1724292301,Advanced Packaging Tool,32243,29723 +1724292301,HTTPS,148836,404133 +1724292301,Apple sites,1752,6954 +1724292301,Avast,382,391 +1724292301,SSL client,40179,121965 +1724292301,Ubuntu Update Manager,27874,26113 +1724292301,Yandex,5253,19519 +1724292301,Ubuntu,3150,3009 +1724292301,Microsoft CryptoAPI,7475,6220 +1724292301,ICMP,1146,0 +1724292301,Edge Chromium,9379,27685 +1724292301,DNS over HTTPS,8678,33624 +1724292600,Telegram,240,240 +1724292600,HTTPS,25264,38760 +1724292600,Mozilla,3268,20482 +1724292600,SSL client,25264,38760 +1724292600,Google Play,21996,18278 +1724292600,HTTPS,17566,6738 +1724292600,__unknown,234894,253454 +1724292600,Google APIs,6992,25597 +1724292600,Google,8265,5342 +1724292600,Gmail,10288,6039 +1724292600,HTTP,1101,1725 +1724292600,Microsoft Update,1101,1725 +1724292600,Windows Update,1101,1725 +1724292600,HTTPS,92373,247524 +1724292600,Avast,1122,8863 +1724292600,SSL client,71805,197154 +1724292600,Microsoft,8027,19419 +1724292600,Mail.Ru,23658,22651 +1724292600,Yandex,6771,4548 +1724292600,Office 365,1505,7489 +1724292600,Sharepoint Online,3238,94291 +1724292600,GISMETEO,1939,2915 +1724292600,DNS over HTTPS,2504,7825 +1724292600,__unknown,63626,74286 +1724292600,Dropbox,2112,4698 +1724292600,Google,81845,103634 +1724292600,MSN,3265,9444 +1724292600,HTTP,1090,1888 +1724292600,HTTPS,466597,566472 +1724292600,Apple sites,2153,7378 +1724292600,SSL client,429799,481125 +1724292600,Microsoft,199663,130058 +1724292600,Mail.Ru,66264,60207 +1724292600,Yandex,18139,49302 +1724292600,Exchange Online,2366,16250 +1724292600,Office 365,1749,7788 +1724292600,Sharepoint Online,3505,8621 +1724292600,Microsoft Windows Live Services Authentication,48738,83745 +1724292600,DNS over HTTPS,6090,28909 +1724292600,Google,43741,34592 +1724292600,HTTPS,43741,34592 +1724292600,SSL client,43741,34592 +1724292600,HTTPS,54409,62036 +1724292600,SSL client,54409,62036 +1724292600,ICMP,1230,0 +1724292600,Telegram,54409,62036 +1724292600,HTTPS,3361,5415 +1724292600,HTTPS,34248,40578 +1724292600,ICMP,3334,2400 +1724292600,__unknown,539985,1274441 +1724292600,BitTorrent,463,496 +1724292600,Google APIs,41225,9367 +1724292600,Google Drive,9404,11094 +1724292600,Google,23068,52534 +1724292600,BitTorrent tracker,153,0 +1724292600,DNS,18680,0 +1724292600,HTTP,1564,1322 +1724292600,Microsoft Update,977,819 +1724292600,NTP,7790,1905 +1724292600,STUN,1722,1554 +1724292600,HTTPS,138393,235873 +1724292600,WhatsApp,1796,7865 +1724292600,Apple sites,1611,8547 +1724292600,SSL client,77465,89842 +1724292600,CloudFront,2157,8300 +1724292600,Microsoft CryptoAPI,1564,1322 +1724292600,ICMP,5508,0 +1724292600,DNS over HTTPS,16854,48320 +1724292600,__unknown,296623,557253 +1724292600,Apple Update,1804,5753 +1724292600,DHCPv6,978,0 +1724292600,Google APIs,2828,8713 +1724292600,Google,17314,42759 +1724292600,Kaspersky,543,537 +1724292600,DNS,43499,41322 +1724292600,Gmail,21554,26888 +1724292600,HTTP,84980,98844 +1724292600,Launchpad,3200,2480 +1724292600,Microsoft Update,646,500 +1724292600,NetBIOS-dgm,243,0 +1724292600,NTP,6220,2355 +1724292600,Odnoklassniki,2549,7500 +1724292600,Advanced Packaging Tool,37725,34715 +1724292600,HTTPS,114991,375854 +1724292600,iCloud,3790,8685 +1724292600,Mozilla,1998,4535 +1724292600,SSL client,60719,132933 +1724292600,Ubuntu Update Manager,29050,27321 +1724292600,VeriSign,566,2141 +1724292600,Yandex,5815,18917 +1724292600,Ubuntu,6750,6293 +1724292600,Microsoft CryptoAPI,6054,6667 +1724292600,Microsoft NCSI,411,487 +1724292600,ICMP,2793,0 +1724292600,ICMP for IPv6,70,0 +1724292600,Edge Chromium,3929,12178 +1724292600,Grammarly,2262,7889 +1724292600,DNS over TLS,1145,4770 +1724292600,DNS over HTTPS,8693,25175 +1724292900,__unknown,1484,2060 +1724292900,HTTPS,9503,6574 +1724292900,SSL client,9503,6574 +1724292900,Mail.Ru,9503,6574 +1724292900,HTTPS,8616,15734 +1724292900,SSL client,8616,15734 +1724292900,Microsoft,5039,8361 +1724292900,Microsoft Teams,3577,7373 +1724292900,HTTPS,25088,94571 +1724292900,SSL client,22275,91988 +1724292900,Mail.Ru,20769,86016 +1724292900,Google Play,1506,5972 +1724292900,Google,13874,19593 +1724292900,MSN,2226,8080 +1724292900,HTTPS,87523,209868 +1724292900,SSL client,75324,186879 +1724292900,Microsoft,25892,104768 +1724292900,Mail.Ru,26392,27954 +1724292900,Yandex,4746,17113 +1724292900,GISMETEO,2194,9371 +1724292900,__unknown,35054,58686 +1724292900,Dropbox,6055,222582 +1724292900,Google,277962,131803 +1724292900,MSN,2069,12696 +1724292900,HTTP,514,1703 +1724292900,SSL,1503,1392 +1724292900,HTTPS,754535,20396821 +1724292900,Apple sites,1779,6345 +1724292900,Mozilla,4863,7350 +1724292900,Avast,2133,15037 +1724292900,Opera,9691,5952 +1724292900,SSL client,536831,1054326 +1724292900,Microsoft,100317,155435 +1724292900,Mail.Ru,59821,64318 +1724292900,Yandex,17092,28490 +1724292900,Office 365,21053,309507 +1724292900,Microsoft Windows Live Services Authentication,39847,92483 +1724292900,Google Hangouts,1503,1392 +1724292900,Grammarly,2337,6888 +1724292900,DNS over HTTPS,8634,30733 +1724292900,__unknown,188,229 +1724292900,Google,110982,78891 +1724292900,HTTPS,110982,78891 +1724292900,SSL client,110982,78891 +1724292900,__unknown,8562,200316 +1724292900,ICMP,1230,0 +1724292900,Apple Update,6669,530782 +1724292900,HTTPS,68599,602134 +1724292900,Apple sites,32417,31731 +1724292900,SSL client,39086,562513 +1724292900,CoAP,1764,1296 +1724292900,__unknown,420157,350573 +1724292900,BitTorrent,310,496 +1724292900,DHCPv6,163,0 +1724292900,Google APIs,4910,15665 +1724292900,Google,45251,92960 +1724292900,DNS,19170,0 +1724292900,HTTP,614,524 +1724292900,NTP,810,810 +1724292900,STUN,1558,1406 +1724292900,HTTPS,134453,366714 +1724292900,SSL client,52169,113295 +1724292900,Microsoft CryptoAPI,614,524 +1724292900,ICMP,28268,180 +1724292900,DNS over HTTPS,23598,68720 +1724292900,__unknown,420240,423832 +1724292900,BITS,3083,13313 +1724292900,BitTorrent,1815,1354 +1724292900,Google APIs,27055,45524 +1724292900,Google Drive,50000,547238 +1724292900,Google,92886,185274 +1724292900,DNS,53866,50743 +1724292900,HTTP,228917,239758 +1724292900,Launchpad,3200,2480 +1724292900,NetBIOS-dgm,250,0 +1724292900,NTP,13200,3450 +1724292900,Odnoklassniki,3699,2377 +1724292900,Advanced Packaging Tool,33959,31261 +1724292900,HTTPS,288337,1200147 +1724292900,Apple sites,1563,6140 +1724292900,iCloud,2688,8190 +1724292900,Mozilla,5943,6770 +1724292900,SSL client,192557,842872 +1724292900,Ubuntu Update Manager,27776,26095 +1724292900,Microsoft,1253,6992 +1724292900,Yandex,5271,32640 +1724292900,GitHub,1727,5582 +1724292900,Ubuntu,3408,3147 +1724292900,Microsoft CryptoAPI,587,503 +1724292900,Microsoft NCSI,865,974 +1724292900,ICMP,6670,0 +1724292900,ICMP for IPv6,70,0 +1724292900,Telegram,1058,483 +1724292900,Edge Chromium,527,1364 +1724292900,DNS over HTTPS,13375,48844 +1724293199,HTTPS,54769,62151 +1724293199,SSL client,54769,62151 +1724293199,Telegram,54769,62151 +1724293199,Dropbox,198279,25298 +1724293199,HTTPS,251610,75985 +1724293199,SSL client,222120,43749 +1724293199,Google Play,23841,18451 +1724293199,HTTPS,26331,14194 +1724293199,SSL client,23107,10391 +1724293199,Google Play,23107,10391 +1724293199,__unknown,139843,153057 +1724293199,Google,8267,5425 +1724293199,Gmail,12902,8514 +1724293199,HTTPS,44572,59408 +1724293199,SSL client,38100,50527 +1724293199,Microsoft,2073,3665 +1724293199,Mail.Ru,8482,10838 +1724293199,Yandex,2493,2070 +1724293199,Office 365,1689,10574 +1724293199,GISMETEO,2194,9441 +1724293199,__unknown,27409,12705 +1724293199,Dropbox,4177,1643 +1724293199,MSN,3593,15632 +1724293199,HTTP,5450,11793 +1724293199,Skype,3254,7881 +1724293199,Advanced Packaging Tool,569,566 +1724293199,HTTPS,248584,604395 +1724293199,Mozilla,5395,5770 +1724293199,Avast,7132,10528 +1724293199,SSL client,171471,424623 +1724293199,Microsoft,27971,62643 +1724293199,Mail.Ru,83864,71152 +1724293199,Yandex,16749,35392 +1724293199,Ubuntu,569,566 +1724293199,Google Update,4341,10310 +1724293199,Microsoft CryptoAPI,540,917 +1724293199,Sharepoint Online,6548,182574 +1724293199,Microsoft Windows Live Services Authentication,12788,31408 +1724293199,DNS over HTTPS,995,4584 +1724293199,__unknown,0,1390 +1724293199,__unknown,94,660 +1724293199,HTTPS,9138,10697 +1724293199,DNS over HTTPS,15225,33855 +1724293199,__unknown,2507,28703 +1724293199,HTTPS,24818,33099 +1724293199,SSL client,24818,33099 +1724293199,ICMP,4142,3540 +1724293199,Telegram,24818,33099 +1724293199,HTTPS,65334,245703 +1724293199,ICMP,1394,0 +1724293199,__unknown,400762,428113 +1724293199,BitTorrent,463,496 +1724293199,Google APIs,45673,15360 +1724293199,Google Drive,26953,15637 +1724293199,Google,49011,85609 +1724293199,BitTorrent tracker,153,0 +1724293199,DNS,22069,0 +1724293199,Gmail,54413,53845 +1724293199,NTP,1530,1530 +1724293199,HTTPS,235058,347199 +1724293199,Mozilla,2615,1712 +1724293199,SSL client,189456,191906 +1724293199,ICMP,2978,0 +1724293199,Google Sign in,6206,4045 +1724293199,Grammarly,4585,15698 +1724293199,DNS over HTTPS,2384,7769 +1724293199,CoAP,1764,1296 +1724293199,__unknown,313565,300629 +1724293199,Apple Update,1781,4935 +1724293199,BitTorrent,310,372 +1724293199,DHCPv6,1141,0 +1724293199,Google APIs,7169,20129 +1724293199,Google,28199,52378 +1724293199,Chrome,5151,4356 +1724293199,DNS,43519,39436 +1724293199,HTTP,95428,345935 +1724293199,Launchpad,3348,2480 +1724293199,NTP,13830,4080 +1724293199,SSL,1652,14123 +1724293199,Odnoklassniki,2729,7499 +1724293199,Advanced Packaging Tool,39758,263779 +1724293199,HTTPS,159193,409545 +1724293199,Spotify,1838,4674 +1724293199,SSL client,55871,162294 +1724293199,Ubuntu Update Manager,32792,258047 +1724293199,Microsoft,693,8047 +1724293199,Yandex,4646,34485 +1724293199,GitHub,1727,5581 +1724293199,Ubuntu,5318,5084 +1724293199,Microsoft CryptoAPI,1399,1239 +1724293199,Microsoft WNS,693,8047 +1724293199,Google Hangouts,1652,14123 +1724293199,ICMP,11920,0 +1724293199,Edge Chromium,5270,13647 +1724293199,Grammarly,2261,7948 +1724293199,DNS over TLS,2290,9540 +1724293199,DNS over HTTPS,15641,48931 +1724293500,__unknown,265492,235051 +1724293500,HTTPS,507006,916437 +1724293500,SSL client,394020,340053 +1724293500,Yandex,394020,340053 +1724293500,__unknown,231151,209714 +1724293500,HTTPS,113449,106101 +1724293500,SSL client,113449,106101 +1724293500,Yandex,113449,106101 +1724293500,HTTPS,204565,318825 +1724293500,SSL client,204565,318825 +1724293500,Yandex,204565,318825 +1724293500,HTTPS,103567,144570 +1724293500,SSL client,103567,144570 +1724293500,Yandex,103567,144570 +1724293500,HTTPS,95415,171401 +1724293500,SSL client,95415,171401 +1724293500,Yandex,95415,171401 +1724293500,HTTPS,62281,67509 +1724293500,SSL client,62281,67509 +1724293500,Yandex,62281,67509 +1724293500,HTTPS,60716,92223 +1724293500,SSL client,60716,92223 +1724293500,Yandex,60716,92223 +1724293500,HTTPS,13338,17051 +1724293500,SSL client,13338,17051 +1724293500,Yandex,13338,17051 +1724293500,HTTPS,13358,15282 +1724293500,SSL client,4143,6443 +1724293500,Sharepoint Online,4143,6443 +1724293500,HTTPS,25591,17163 +1724293500,HTTPS,3148,1589 +1724293500,__unknown,4677,3916 +1724293500,HTTPS,4010,6546 +1724293500,SSL client,4010,6546 +1724293500,Yandex,4010,6546 +1724293500,__unknown,672877,227314 +1724293500,Google,8269,5372 +1724293500,HTTPS,37355,52253 +1724293500,SSL client,29291,42777 +1724293500,Microsoft,1971,7386 +1724293500,Mail.Ru,8851,6605 +1724293500,Yandex,8006,14074 +1724293500,GISMETEO,2194,9340 +1724293500,__unknown,36545,56282 +1724293500,Bing,3520,6605 +1724293500,Dropbox,1769,1575 +1724293500,Google APIs,5611,13830 +1724293500,Google,641483,238525 +1724293500,MSN,3329,9503 +1724293500,Adobe Software,2761,5778 +1724293500,HTTP,6830,71049 +1724293500,Advanced Packaging Tool,527,530 +1724293500,HTTPS,1270260,8027300 +1724293500,Apple sites,2021,8574 +1724293500,SSL client,1201157,7881291 +1724293500,Amazon Web Services,3319,21490 +1724293500,CloudFront,6207,1153 +1724293500,Microsoft,72226,80271 +1724293500,Mail.Ru,96818,80548 +1724293500,Yandex,141934,101447 +1724293500,Ubuntu,527,530 +1724293500,Google Update,4390,10310 +1724293500,Exchange Online,207536,7265471 +1724293500,Office 365,12623,46521 +1724293500,DNS over HTTPS,4544,20771 +1724293500,__unknown,115623,144248 +1724293500,__unknown,215,225 +1724293500,HTTPS,9398,13325 +1724293500,SSL client,9398,13325 +1724293500,DNS over HTTPS,9398,13325 +1724293500,__unknown,48675,29630 +1724293500,Apple Update,3337,18968 +1724293500,HTTPS,34517,53562 +1724293500,SSL client,3337,18968 +1724293500,ICMP,23890,0 +1724293500,__unknown,2304,1252 +1724293500,__unknown,1512,3840 +1724293500,Google,45579,33520 +1724293500,SSL,1814,4078 +1724293500,HTTPS,45579,33520 +1724293500,SSL client,47393,37598 +1724293500,Google Hangouts,1814,4078 +1724293500,DNS over HTTPS,3574,9963 +1724293500,__unknown,392351,391374 +1724293500,Google APIs,5795,14800 +1724293500,Google,22462,51911 +1724293500,DNS,17216,0 +1724293500,HTTP,2327,2042 +1724293500,Microsoft Update,646,506 +1724293500,NetBIOS-dgm,243,0 +1724293500,NTP,25950,6450 +1724293500,STUN,1860,3300 +1724293500,HTTPS,113577,269987 +1724293500,Apple sites,2982,54282 +1724293500,SSL client,32310,126907 +1724293500,Yandex,1071,5914 +1724293500,Microsoft CryptoAPI,1820,1512 +1724293500,Apple Maps,2878,7027 +1724293500,ICMP,30233,0 +1724293500,DNS over HTTPS,11133,30768 +1724293500,__unknown,282980,285095 +1724293500,DHCPv6,978,0 +1724293500,Google Drive,2902,9671 +1724293500,Google,34523,51109 +1724293500,DNS,43455,39864 +1724293500,HTTP,76005,86084 +1724293500,Internet Explorer,762,660 +1724293500,Launchpad,3200,2480 +1724293500,Microsoft Update,642,502 +1724293500,NTP,15450,5700 +1724293500,STUN,164,148 +1724293500,Odnoklassniki,2669,7423 +1724293500,Advanced Packaging Tool,34207,31143 +1724293500,HTTPS,148389,398706 +1724293500,SSL client,67114,129589 +1724293500,Ubuntu Update Manager,26706,24809 +1724293500,Yandex,9424,27526 +1724293500,Ubuntu,4792,4315 +1724293500,Microsoft CryptoAPI,2525,1994 +1724293500,Google Play,12611,17774 +1724293500,ICMP,1268,0 +1724293500,Edge Chromium,2635,6824 +1724293500,Grammarly,2223,7890 +1724293500,DNS over HTTPS,20540,73457 +1724293801,HTTPS,59747,2829051 +1724293801,__unknown,81292,35086 +1724293801,HTTPS,7568,3925 +1724293801,__unknown,360,7635 +1724293801,HTTPS,7145,9020 +1724293801,SSL client,7145,9020 +1724293801,Microsoft,3774,1522 +1724293801,Microsoft Teams,3371,7498 +1724293801,__unknown,438813,106856 +1724293801,HTTPS,5823,12858 +1724293801,SSL client,1446,6086 +1724293801,Google Play,1446,6086 +1724293801,__unknown,5129,6804 +1724293801,Dropbox,2817,4451 +1724293801,MSN,1427,7352 +1724293801,HTTP,1027,2520 +1724293801,Microsoft Update,72362,29778 +1724293801,HTTPS,145009,150829 +1724293801,Avast,1254,9410 +1724293801,SSL client,113579,114095 +1724293801,Microsoft,28667,40753 +1724293801,VeriSign,505,2081 +1724293801,Yandex,2275,6857 +1724293801,Microsoft CryptoAPI,1027,2520 +1724293801,Google Play,2517,6154 +1724293801,GISMETEO,2260,9340 +1724293801,__unknown,64985,22618 +1724293801,Dropbox,3210,1378 +1724293801,Google,138084,138185 +1724293801,MSN,2140,7995 +1724293801,Dell,1051,4306 +1724293801,Skype,3384,7945 +1724293801,TwitchTV,5431,7155 +1724293801,HTTPS,560914,631587 +1724293801,iCloud,9638,17560 +1724293801,Avast,1320,10151 +1724293801,SSL client,407402,490556 +1724293801,Microsoft,65125,109115 +1724293801,Mail.Ru,123959,117005 +1724293801,Yandex,38124,45332 +1724293801,Google Play,11082,8780 +1724293801,Exchange Online,1257,7945 +1724293801,Office 365,3597,7704 +1724293801,Telegram,1905,7377 +1724293801,DNS over HTTPS,2897,14610 +1724293801,__unknown,1536,812 +1724293801,HTTPS,3211,5356 +1724293801,HTTPS,22400,16814 +1724293801,Spotify,2053,8116 +1724293801,SSL client,2053,8116 +1724293801,ICMP,11266,10260 +1724293801,__unknown,262715,263264 +1724293801,BitTorrent,463,1033 +1724293801,DHCPv6,163,0 +1724293801,Google APIs,5353,15876 +1724293801,Google,20455,27129 +1724293801,BitTorrent tracker,153,537 +1724293801,DNS,16720,0 +1724293801,NetBIOS-dgm,250,0 +1724293801,NTP,13380,3630 +1724293801,STUN,2378,2146 +1724293801,VKontakte,2803,6163 +1724293801,HTTPS,77053,148053 +1724293801,SSL client,34870,53772 +1724293801,ICMP,3684,60 +1724293801,Google Sign in,6259,4604 +1724293801,DNS over HTTPS,8404,25688 +1724293801,__unknown,158978,182630 +1724293801,Google APIs,14955,17863 +1724293801,Google,12590,16400 +1724293801,Chrome,5163,4422 +1724293801,DNS,44991,39716 +1724293801,Firefox,888,1195 +1724293801,Gmail,274210,111646 +1724293801,HTTP,92543,111103 +1724293801,Launchpad,3200,2480 +1724293801,NTP,3780,3780 +1724293801,Odnoklassniki,3730,7468 +1724293801,Advanced Packaging Tool,32645,29977 +1724293801,HTTPS,369925,913518 +1724293801,Mozilla,1038,3854 +1724293801,SSL client,318765,189684 +1724293801,Ubuntu Update Manager,25144,23643 +1724293801,Microsoft,693,8038 +1724293801,Yandex,10244,25986 +1724293801,Ubuntu,6001,5686 +1724293801,Microsoft CryptoAPI,619,1199 +1724293801,Microsoft WNS,693,8038 +1724293801,Office 365,619,1199 +1724293801,ICMP,2763,0 +1724293801,Telegram,1965,7285 +1724293801,Edge Chromium,2348,8026 +1724293801,DNS over TLS,2158,9541 +1724293801,DNS over HTTPS,5461,19807 +1724294100,HTTPS,34513,41400 +1724294100,HTTPS,31742,34216 +1724294100,SSL client,31742,34216 +1724294100,Sharepoint Online,31742,34216 +1724294100,HTTPS,111294,47265 +1724294100,HTTPS,116429,136928 +1724294100,__unknown,1244,1838 +1724294100,HTTPS,204410,72843 +1724294100,HTTPS,24278,15609 +1724294100,SSL client,24278,15609 +1724294100,Microsoft,24278,15609 +1724294100,Dropbox,113065,21050 +1724294100,HTTPS,138149,30222 +1724294100,SSL client,138149,30222 +1724294100,Google Play,25084,9172 +1724294100,Google APIs,4174,14569 +1724294100,HTTPS,64243,63625 +1724294100,SSL client,64243,63625 +1724294100,Google Play,60069,49056 +1724294100,__unknown,131475,42509 +1724294100,Google APIs,2337,7306 +1724294100,HTTPS,142867,292559 +1724294100,Mozilla,2063,5091 +1724294100,SSL client,57550,233189 +1724294100,Microsoft,24571,190884 +1724294100,Mail.Ru,23626,23282 +1724294100,Yandex,4953,6626 +1724294100,__unknown,241144,177424 +1724294100,Bing,3147,6398 +1724294100,Google APIs,121712498,3029952 +1724294100,MSN,4430,16639 +1724294100,HTTP,1787,8466 +1724294100,iTunes,3550,20313 +1724294100,Steam,25595,46903 +1724294100,Advanced Packaging Tool,1094,479 +1724294100,HTTPS,122149803,3649028 +1724294100,WhatsApp,3344,5742 +1724294100,Mozilla,2177,5191 +1724294100,SSL client,122077061,3531827 +1724294100,Amazon Web Services,3139,21430 +1724294100,Ubuntu Update Manager,1094,479 +1724294100,Microsoft,185794,130293 +1724294100,Mail.Ru,87120,79870 +1724294100,Yandex,36656,126660 +1724294100,Microsoft WNS,693,7987 +1724294100,Microsoft Windows Live Services Authentication,8529,22591 +1724294100,Telegram,1693,7153 +1724294100,DNS over HTTPS,8203,34440 +1724294100,Discord,1175,6451 +1724294100,DeepL Translator,2251,19970 +1724294100,HTTPS,52460,26500 +1724294100,HTTPS,6267,10047 +1724294100,SSL client,6267,10047 +1724294100,DNS over HTTPS,6267,10047 +1724294100,__unknown,2564,11428 +1724294100,HTTPS,18816,248417 +1724294100,iCloud,18816,248417 +1724294100,SSL client,18816,248417 +1724294100,ICMP,492,0 +1724294100,__unknown,145,60 +1724294100,Google,45331,37373 +1724294100,HTTPS,55774,50394 +1724294100,SSL client,45331,37373 +1724294100,ICMP,4456,0 +1724294100,__unknown,311499,436290 +1724294100,BitTorrent,310,496 +1724294100,DHCPv6,978,0 +1724294100,Google APIs,2873,8744 +1724294100,Google Drive,7524,10495 +1724294100,Google,46336,88793 +1724294100,DNS,16292,0 +1724294100,NTP,14100,4350 +1724294100,VKontakte,2742,6155 +1724294100,HTTPS,107025,185964 +1724294100,iCloud,3336,10024 +1724294100,SSL client,67249,138202 +1724294100,GitHub,2147,6044 +1724294100,ICMP,5118,840 +1724294100,Grammarly,2291,7947 +1724294100,DNS over HTTPS,13539,38549 +1724294100,__unknown,277990,423999 +1724294100,BITS,12492,1644423 +1724294100,DHCPv6,163,0 +1724294100,Google APIs,1055,5563 +1724294100,Google,5036,6536 +1724294100,QQ,414,1581 +1724294100,Chrome,3062,2930 +1724294100,DNS,50724,49124 +1724294100,HTTP,83173,1734010 +1724294100,Launchpad,3200,2480 +1724294100,Microsoft Update,981,887 +1724294100,NetBIOS-dgm,243,0 +1724294100,NTP,13740,3990 +1724294100,Advanced Packaging Tool,33543,30833 +1724294100,HTTPS,96194,331659 +1724294100,SSL client,22041,55518 +1724294100,Ubuntu Update Manager,25060,23583 +1724294100,Microsoft,12492,1644423 +1724294100,Yandex,11854,34476 +1724294100,GitHub,1727,5580 +1724294100,Ubuntu,5708,5227 +1724294100,Microsoft CryptoAPI,981,887 +1724294100,ICMP,2145,0 +1724294100,ICMP for IPv6,70,0 +1724294100,Edge Chromium,6217,19513 +1724294100,Grammarly,2282,7889 +1724294100,DNS over HTTPS,10500,38209 +1724294400,HTTPS,51731,90316 +1724294400,SSL client,51731,90316 +1724294400,Yandex,51731,90316 +1724294400,HTTPS,39693,47301 +1724294400,HTTPS,107086,128043 +1724294400,SSL client,107086,128043 +1724294400,Telegram,107086,128043 +1724294400,__unknown,1608,0 +1724294400,HTTPS,30723,30564 +1724294400,Google APIs,1322,5762 +1724294400,HTTPS,12177,14587 +1724294400,SSL client,1322,5762 +1724294400,__unknown,14669,8471 +1724294400,Bing,5392,5591 +1724294400,Google,23622,29921 +1724294400,Gmail,10237,6513 +1724294400,HTTPS,117519,193926 +1724294400,Mozilla,2400,4977 +1724294400,Avast,2376,20191 +1724294400,SSL client,93766,145803 +1724294400,Microsoft,6489,14585 +1724294400,Mail.Ru,6265,5900 +1724294400,Yandex,34791,48785 +1724294400,GISMETEO,2194,9340 +1724294400,__unknown,31469,48437 +1724294400,HTTP,1268,5747 +1724294400,Advanced Packaging Tool,527,530 +1724294400,HTTPS,316170,661094 +1724294400,SSL client,224878,322172 +1724294400,Amazon Web Services,3139,21490 +1724294400,CloudFront,7375,10098 +1724294400,Microsoft,27300,57393 +1724294400,Mail.Ru,114968,114029 +1724294400,Yandex,39597,53836 +1724294400,Ubuntu,2436,21753 +1724294400,Nvidia,2263,4549 +1724294400,Apple Maps,4659,97742 +1724294400,Office 365,16562,22256 +1724294400,Sharepoint Online,3175,5821 +1724294400,Microsoft Windows Live Services Authentication,8590,11477 +1724294400,__unknown,188,229 +1724294400,HTTPS,8532,11705 +1724294400,SSL client,8532,11705 +1724294400,DNS over HTTPS,8532,11705 +1724294400,Google,80943,42298 +1724294400,HTTPS,80943,42298 +1724294400,SSL client,80943,42298 +1724294400,__unknown,1890,18086 +1724294400,Windows Live,3303,19587 +1724294400,HTTPS,11121,32971 +1724294400,SSL client,3303,19587 +1724294400,__unknown,2052,1556 +1724294400,ICMP,328,0 +1724294400,__unknown,419305,825025 +1724294400,BitTorrent,463,496 +1724294400,Google APIs,36480,16451 +1724294400,Google Drive,9518,11158 +1724294400,Google,12479,44480 +1724294400,BitTorrent tracker,153,0 +1724294400,DNS,22868,0 +1724294400,Gmail,19467,18863 +1724294400,HTTP,1075,1235 +1724294400,NTP,810,810 +1724294400,Odnoklassniki,2609,7499 +1724294400,HTTPS,139999,310431 +1724294400,Mozilla,1876,4611 +1724294400,SSL client,94920,111336 +1724294400,Microsoft CryptoAPI,562,463 +1724294400,ICMP,8457,1980 +1724294400,Google Sign in,12491,8274 +1724294400,DNS over HTTPS,12599,33808 +1724294400,__unknown,333610,606056 +1724294400,Bing,4720,7764 +1724294400,DHCPv6,978,0 +1724294400,Google APIs,7110,20238 +1724294400,Google,11926,33094 +1724294400,DNS,46168,43067 +1724294400,HTTP,83574,278522 +1724294400,Internet Explorer,762,660 +1724294400,Kerberos,653,2537 +1724294400,Launchpad,3200,2480 +1724294400,Microsoft Update,642,508 +1724294400,NetBIOS-dgm,250,0 +1724294400,NTP,13200,3450 +1724294400,SSL,855,7032 +1724294400,VKontakte,2442,5527 +1724294400,Steam,3632,112867 +1724294400,Advanced Packaging Tool,27920,25387 +1724294400,HTTPS,74324,325019 +1724294400,SSL client,38530,103001 +1724294400,Ubuntu Update Manager,19880,18559 +1724294400,Microsoft,633,8038 +1724294400,Yandex,14772,39863 +1724294400,Ubuntu,6540,6184 +1724294400,Microsoft CryptoAPI,2332,1988 +1724294400,Microsoft NCSI,925,974 +1724294400,Microsoft WNS,633,8038 +1724294400,Google Hangouts,855,7032 +1724294400,ICMP,1556,0 +1724294400,Edge Chromium,6217,19503 +1724294400,DNS over HTTPS,8002,28808 +1724294701,HTTPS,30572,70706 +1724294701,SSL client,30572,70706 +1724294701,Yandex,30572,70706 +1724294701,__unknown,1479,0 +1724294701,HTTPS,59407,113690 +1724294701,HTTPS,2590,5854 +1724294701,HTTPS,32136,32297 +1724294701,__unknown,1140,0 +1724294701,HTTPS,5800,8518 +1724294701,SSL client,5800,8518 +1724294701,Yandex,5800,8518 +1724294701,HTTPS,29519,11979 +1724294701,SSL client,20939,4384 +1724294701,Google Play,20939,4384 +1724294701,__unknown,154730,110147 +1724294701,Bing,3641,6567 +1724294701,Dropbox,1787,5579 +1724294701,Google,8267,5146 +1724294701,TwitchTV,5497,7089 +1724294701,HTTPS,94414,124981 +1724294701,SSL client,65169,100511 +1724294701,Microsoft,4387,8817 +1724294701,Mail.Ru,26618,28817 +1724294701,Yandex,8111,12857 +1724294701,Office 365,4416,16616 +1724294701,GISMETEO,2445,9023 +1724294701,DNS over HTTPS,68587,146900 +1724294701,__unknown,89853,91461 +1724294701,Google APIs,3048,7092 +1724294701,Google,24744,32083 +1724294701,MSN,3431,9896 +1724294701,HTTP,527,530 +1724294701,TeamViewer,1448,8838 +1724294701,Advanced Packaging Tool,527,530 +1724294701,HTTPS,640676,720974 +1724294701,Avast,1320,9929 +1724294701,SSL client,299217,386021 +1724294701,Microsoft,18508,29228 +1724294701,Mail.Ru,114747,104178 +1724294701,Yandex,13931,28125 +1724294701,Ubuntu,527,530 +1724294701,Office 365,61942,71524 +1724294701,Microsoft Windows Live Services Authentication,56098,85128 +1724294701,DNS over HTTPS,2572,11076 +1724294701,Google,35166,48470 +1724294701,HTTPS,35166,48470 +1724294701,SSL client,35166,48470 +1724294701,HTTPS,53557,68986 +1724294701,SSL client,53557,68986 +1724294701,Telegram,53557,68986 +1724294701,DNS over HTTPS,13938,32566 +1724294701,CoAP,4704,3456 +1724294701,Google,57605,39030 +1724294701,HTTPS,57605,39030 +1724294701,SSL client,57605,39030 +1724294701,__unknown,3119,1700 +1724294701,ICMP,1558,0 +1724294701,DNS over HTTPS,7640,19821 +1724294701,__unknown,303468,557720 +1724294701,BitTorrent,310,496 +1724294701,DHCPv6,163,0 +1724294701,Google APIs,2767,8686 +1724294701,Google,33666,82502 +1724294701,DNS,18704,0 +1724294701,HTTP,641,507 +1724294701,Microsoft Update,641,507 +1724294701,NTP,180,180 +1724294701,STUN,1860,3300 +1724294701,Odnoklassniki,2609,7483 +1724294701,HTTPS,81123,169440 +1724294701,SSL client,41269,107454 +1724294701,Microsoft CryptoAPI,641,507 +1724294701,Google Play,2227,8783 +1724294701,ICMP,6474,2580 +1724294701,DNS over HTTPS,13167,38844 +1724294701,__unknown,237311,470284 +1724294701,DHCPv6,978,0 +1724294701,Google,3294,7925 +1724294701,DNS,38785,37784 +1724294701,HTTP,83884,3540387 +1724294701,Launchpad,3200,2480 +1724294701,NTP,810,810 +1724294701,VKontakte,2384,5536 +1724294701,Odnoklassniki,3700,2717 +1724294701,Advanced Packaging Tool,61474,3496105 +1724294701,HTTPS,78732,350234 +1724294701,SSL client,23729,51511 +1724294701,Ubuntu Update Manager,55339,3490975 +1724294701,Yandex,14791,41828 +1724294701,Ubuntu,2935,2650 +1724294701,ICMP,2520,0 +1724294701,Edge Chromium,6277,20148 +1724294701,DNS over HTTPS,15966,53994 +1724295001,HTTPS,101934,125213 +1724295001,Windows Live,80712,19276 +1724295001,HTTPS,80712,19276 +1724295001,SSL client,80712,19276 +1724295001,Skype,4090,8741 +1724295001,HTTPS,17964,243839 +1724295001,SSL client,17964,243839 +1724295001,Microsoft,13874,235098 +1724295001,Dropbox,129815,21468 +1724295001,HTTPS,183160,87164 +1724295001,SSL client,183160,87164 +1724295001,Telegram,53345,65696 +1724295001,HTTPS,18831,15181 +1724295001,__unknown,16464,28414 +1724295001,Dropbox,3909,3458 +1724295001,Google,11062,17558 +1724295001,HTTP,2220,3778 +1724295001,HTTPS,211599,422387 +1724295001,Mozilla,2117,5091 +1724295001,SSL client,55273,305854 +1724295001,Microsoft,11561,16741 +1724295001,VeriSign,2220,3778 +1724295001,Mail.Ru,6233,5840 +1724295001,Yandex,4877,11127 +1724295001,Microsoft CryptoAPI,2220,3778 +1724295001,Office 365,6371,56464 +1724295001,Sharepoint Online,6482,182574 +1724295001,Grammarly,2661,7001 +1724295001,__unknown,4388,61527 +1724295001,Bing,3787,6482 +1724295001,Google APIs,3869,7512 +1724295001,Google,13203,16444 +1724295001,HTTP,3517,3319 +1724295001,Launchpad,640,496 +1724295001,Skype,3305,7825 +1724295001,Advanced Packaging Tool,3010,2785 +1724295001,HTTPS,287340,815453 +1724295001,SSL client,206929,316323 +1724295001,Ubuntu Update Manager,1274,1193 +1724295001,Microsoft,41601,61445 +1724295001,Mail.Ru,100516,103963 +1724295001,Yandex,16265,40746 +1724295001,Ubuntu,1096,1096 +1724295001,Office 365,11471,40618 +1724295001,Microsoft Windows Live Services Authentication,12912,31288 +1724295001,DNS over HTTPS,3105,15089 +1724295001,Google,31036,25005 +1724295001,HTTPS,31036,25005 +1724295001,SSL client,31036,25005 +1724295001,HTTPS,117540,87759 +1724295001,__unknown,420,8260 +1724295001,HTTPS,35176,15178 +1724295001,__unknown,963,583 +1724295001,__unknown,1086,546 +1724295001,HTTPS,14257,21401 +1724295001,SSL client,2148,2592 +1724295001,DNS over HTTPS,2148,2592 +1724295001,__unknown,275199,284414 +1724295001,BitTorrent,463,1033 +1724295001,DHCPv6,163,0 +1724295001,Google APIs,63259,60000 +1724295001,Google Drive,23582,51604 +1724295001,Google,59675,136430 +1724295001,BitTorrent tracker,153,537 +1724295001,DNS,15802,0 +1724295001,Gmail,8678,15172 +1724295001,HTTP,1378,1203 +1724295001,NetBIOS-dgm,243,0 +1724295001,NTP,12840,3090 +1724295001,HTTPS,203366,362314 +1724295001,SSL client,155194,263206 +1724295001,Microsoft CryptoAPI,1378,1203 +1724295001,ICMP,4633,0 +1724295001,DNS over HTTPS,11994,34122 +1724295001,__unknown,187886,179021 +1724295001,Google APIs,2390,8886 +1724295001,Google,31756,105151 +1724295001,DNS,43890,39539 +1724295001,Gmail,284293,154646 +1724295001,HTTP,77199,231490 +1724295001,Launchpad,3200,2414 +1724295001,Microsoft Update,1963,1642 +1724295001,NTP,720,720 +1724295001,Advanced Packaging Tool,31194,159029 +1724295001,HTTPS,382476,554966 +1724295001,SSL client,334227,333881 +1724295001,Ubuntu Update Manager,24328,153327 +1724295001,Yandex,16679,68262 +1724295001,Ubuntu,4941,4667 +1724295001,Microsoft CryptoAPI,3085,2568 +1724295001,Microsoft NCSI,574,487 +1724295001,ICMP,2126,0 +1724295001,Edge Chromium,6037,17583 +1724295001,DNS over TLS,2224,9540 +1724295001,DNS over HTTPS,10129,38399 +1724295300,HTTPS,7023,11637 +1724295300,SSL client,7023,11637 +1724295300,Sharepoint Online,7023,11637 +1724295300,Google,65875,64751 +1724295300,HTTPS,65875,64751 +1724295300,SSL client,65875,64751 +1724295300,HTTPS,45895,19275 +1724295300,Google APIs,4724,12582 +1724295300,HTTPS,29794,26017 +1724295300,SSL client,29794,26017 +1724295300,Google Play,25070,13435 +1724295300,HTTPS,23910,16659 +1724295300,SSL client,18236,11780 +1724295300,Yandex,18236,11780 +1724295300,__unknown,2681,17692 +1724295300,Dropbox,1769,1659 +1724295300,MSN,2865,7599 +1724295300,TeamViewer,1518,8847 +1724295300,HTTPS,73983,128662 +1724295300,Mozilla,2217,5191 +1724295300,Avast,1320,9447 +1724295300,SSL client,48346,106735 +1724295300,Microsoft,10156,26522 +1724295300,Mail.Ru,14870,16913 +1724295300,Yandex,9628,13489 +1724295300,Office 365,1869,7788 +1724295300,GISMETEO,2134,9280 +1724295300,__unknown,11716,31945 +1724295300,Dropbox,8293,1625 +1724295300,Google,99547,171617 +1724295300,HTTP,1927,1852 +1724295300,Advanced Packaging Tool,1927,1852 +1724295300,HTTPS,347398,658288 +1724295300,Avast,3288,12398 +1724295300,SSL client,254439,394598 +1724295300,CloudFront,2325,1747 +1724295300,Ubuntu Update Manager,1358,1286 +1724295300,Microsoft,27039,63139 +1724295300,Mail.Ru,82969,65948 +1724295300,Yandex,12877,28315 +1724295300,Ubuntu,569,566 +1724295300,Office 365,4935,18401 +1724295300,Microsoft Windows Live Services Authentication,13166,31408 +1724295300,DNS over HTTPS,2428,11004 +1724295300,__unknown,215,225 +1724295300,__unknown,94,660 +1724295300,__unknown,1612,10727 +1724295300,ICMP,1290,0 +1724295300,__unknown,1912,30887 +1724295300,HTTPS,8756,13955 +1724295300,__unknown,18472,16041 +1724295300,Google,56842,46051 +1724295300,HTTPS,74784,98468 +1724295300,SSL client,59693,52913 +1724295300,GitHub,2851,6862 +1724295300,ICMP,8506,0 +1724295300,DNS over HTTPS,4562,10465 +1724295300,__unknown,387387,450254 +1724295300,BITS,3662,14082 +1724295300,BitTorrent,310,496 +1724295300,Google APIs,4737,19369 +1724295300,Google Drive,41837,378197 +1724295300,Google,36274,93696 +1724295300,Chrome,1275,809 +1724295300,DNS,15669,0 +1724295300,Gmail,2485,6618 +1724295300,HTTP,8316,17592 +1724295300,Microsoft Update,642,508 +1724295300,NetBIOS-dgm,250,0 +1724295300,NTP,13200,3450 +1724295300,Odnoklassniki,2609,7422 +1724295300,HTTPS,237311,748004 +1724295300,SSL client,97380,541082 +1724295300,Weather.com,5006,19944 +1724295300,CloudFront,2073,7948 +1724295300,Microsoft CryptoAPI,3379,2701 +1724295300,ICMP,6708,2520 +1724295300,Grammarly,2359,7888 +1724295300,DNS over HTTPS,14863,41674 +1724295300,__unknown,16547242,293210 +1724295300,DHCPv6,1141,0 +1724295300,Google APIs,7338,7633 +1724295300,Google,13754,17360 +1724295300,Windows Live,3663,19767 +1724295300,Chrome,8186,6842 +1724295300,DNS,43960,40599 +1724295300,HTTP,33548128,21323846 +1724295300,Internet Explorer,822,660 +1724295300,Launchpad,3200,2480 +1724295300,Microsoft Update,1627,1318 +1724295300,NTP,1800,1800 +1724295300,VKontakte,2383,5475 +1724295300,Advanced Packaging Tool,40121,36893 +1724295300,HTTPS,137548,395858 +1724295300,SSL client,45992,94546 +1724295300,Ubuntu Update Manager,29050,27343 +1724295300,Microsoft,633,7968 +1724295300,VeriSign,698,2141 +1724295300,Yandex,14063,29925 +1724295300,Ubuntu,10421,9828 +1724295300,Microsoft CryptoAPI,4672,5447 +1724295300,Microsoft WNS,633,7968 +1724295300,ICMP,2354,0 +1724295300,Edge Chromium,1054,2729 +1724295300,DNS over TLS,2158,9541 +1724295300,DNS over HTTPS,14499,54871 +1724295601,Skype,5875,9756 +1724295601,HTTPS,5875,9756 +1724295601,SSL client,5875,9756 +1724295601,HTTPS,10507,33571 +1724295601,SSL client,10507,33571 +1724295601,Yandex,10507,33571 +1724295601,HTTPS,9332,10958 +1724295601,SSL client,9332,10958 +1724295601,Mail.Ru,9332,10958 +1724295601,HTTPS,8241,9932 +1724295601,SSL client,8241,9932 +1724295601,DNS over HTTPS,8241,9932 +1724295601,__unknown,360,8138 +1724295601,HTTPS,8707,21786 +1724295601,HTTPS,51040,54833 +1724295601,SSL client,29264,33774 +1724295601,Yandex,3773,8867 +1724295601,Google Play,21153,18042 +1724295601,Sharepoint Online,4338,6865 +1724295601,Skype,3034,9815 +1724295601,HTTPS,64498,121176 +1724295601,Mozilla,4509,10342 +1724295601,SSL client,30718,59512 +1724295601,Microsoft,13481,29207 +1724295601,Mail.Ru,6293,5839 +1724295601,Office 365,1522,1425 +1724295601,GISMETEO,1879,2884 +1724295601,__unknown,17293,43056 +1724295601,Bing,1862,9326 +1724295601,Dropbox,1786,5626 +1724295601,Google,46018,74911 +1724295601,Dell,1111,4305 +1724295601,HTTP,2859,2858 +1724295601,Microsoft Update,19216,4021 +1724295601,VKontakte,1011,4272 +1724295601,TwitchTV,5433,7155 +1724295601,Advanced Packaging Tool,2412,2325 +1724295601,HTTPS,667478,1049628 +1724295601,Avast,1260,9319 +1724295601,SSL client,320602,508840 +1724295601,Ubuntu Update Manager,1274,1193 +1724295601,Microsoft,68819,87827 +1724295601,Mail.Ru,129740,195704 +1724295601,Yandex,18460,51978 +1724295601,Ubuntu,1138,1132 +1724295601,Office 365,3430,15576 +1724295601,Microsoft Windows Live Services Authentication,22456,38820 +1724295601,DNS over HTTPS,877,4585 +1724295601,__unknown,867,600 +1724295601,Google,46831,51980 +1724295601,HTTPS,46831,51980 +1724295601,SSL client,46831,51980 +1724295601,Google,60745,43070 +1724295601,HTTPS,60745,43070 +1724295601,SSL client,60745,43070 +1724295601,HTTPS,8394,11548 +1724295601,SSL client,8394,11548 +1724295601,DNS over HTTPS,8394,11548 +1724295601,HTTPS,62769,72216 +1724295601,SSL client,54409,62636 +1724295601,Telegram,54409,62636 +1724295601,__unknown,1424,924 +1724295601,__unknown,180,6581 +1724295601,HTTPS,11676,18892 +1724295601,ICMP,328,0 +1724295601,__unknown,410252,836478 +1724295601,BitTorrent,463,694 +1724295601,Google APIs,2814,10139 +1724295601,Google,26424,67449 +1724295601,BitTorrent tracker,153,198 +1724295601,DNS,17910,0 +1724295601,Gmail,8622,15324 +1724295601,HTTP,3974,4969 +1724295601,Microsoft Update,1377,1131 +1724295601,NetBIOS-dgm,243,0 +1724295601,NTP,25050,5550 +1724295601,Odnoklassniki,2549,7440 +1724295601,HTTPS,98044,220168 +1724295601,SSL client,40409,100352 +1724295601,Microsoft CryptoAPI,3974,4969 +1724295601,Office 365,940,2318 +1724295601,ICMP,16946,0 +1724295601,DNS over HTTPS,8296,25567 +1724295601,__unknown,157387,182611 +1724295601,DHCPv6,978,0 +1724295601,Google APIs,25532,43963 +1724295601,Google,44498,164831 +1724295601,Chrome,7345,6292 +1724295601,DNS,51489,57054 +1724295601,Gmail,11996,16230 +1724295601,HTTP,70844,84122 +1724295601,Launchpad,3200,2414 +1724295601,Microsoft Update,2606,2135 +1724295601,NTP,13020,3270 +1724295601,SSL,797,7092 +1724295601,Odnoklassniki,3759,2718 +1724295601,Advanced Packaging Tool,31851,29175 +1724295601,HTTPS,189225,612565 +1724295601,iCloud,6548,8868 +1724295601,SSL client,110903,300990 +1724295601,Ubuntu Update Manager,24985,23473 +1724295601,Microsoft,3464,14988 +1724295601,VeriSign,566,2141 +1724295601,Yandex,14251,44678 +1724295601,Ubuntu,4091,3749 +1724295601,Microsoft CryptoAPI,5848,6558 +1724295601,Google Hangouts,797,7092 +1724295601,ICMP,549,0 +1724295601,Telegram,2025,7301 +1724295601,Edge Chromium,3342,10111 +1724295601,DNS over HTTPS,2188,4949 +1724295900,Google,46406,55591 +1724295900,HTTPS,46406,55591 +1724295900,SSL client,46406,55591 +1724295900,DNS over HTTPS,226495,505618 +1724295900,Dropbox,142237,21603 +1724295900,HTTPS,150561,134447 +1724295900,SSL client,150561,134447 +1724295900,Microsoft,8324,112844 +1724295900,HTTPS,26434,25297 +1724295900,SSL client,7149,8126 +1724295900,Yandex,7149,8126 +1724295900,__unknown,34915,28678 +1724295900,Dropbox,6101,4351 +1724295900,HTTPS,107630,166212 +1724295900,Avast,1320,9159 +1724295900,SSL client,18126,69510 +1724295900,Microsoft,6126,14637 +1724295900,Yandex,2493,2030 +1724295900,Office 365,2086,39333 +1724295900,__unknown,10293,66642 +1724295900,Apple Update,5998,524195 +1724295900,Dropbox,3455,2537 +1724295900,Google APIs,5738,13817 +1724295900,HTTP,1692,1382 +1724295900,Launchpad,640,496 +1724295900,Microsoft Update,1478,3585 +1724295900,OpenSSH,9238,30846 +1724295900,SSH,9238,30846 +1724295900,TeamViewer,1584,8962 +1724295900,Advanced Packaging Tool,640,496 +1724295900,HTTPS,400382,1335652 +1724295900,Apple sites,55399,420966 +1724295900,iCloud,9707,17636 +1724295900,Avast,1824,4342 +1724295900,SSL client,359421,1282673 +1724295900,Microsoft,152207,77266 +1724295900,Mail.Ru,78630,104047 +1724295900,Yandex,18243,39143 +1724295900,Ubuntu,1461,4545 +1724295900,Microsoft CryptoAPI,1052,886 +1724295900,Office 365,2943,18655 +1724295900,Microsoft Windows Live Services Authentication,20754,42977 +1724295900,DNS over HTTPS,5957,21570 +1724295900,__unknown,0,3126 +1724295900,ICMP,2752,0 +1724295900,HTTPS,22578,20487 +1724295900,ICMP,820,0 +1724295900,__unknown,967,531 +1724295900,ICMP,492,0 +1724295900,__unknown,1906,10989 +1724295900,Google,33339,23765 +1724295900,HTTPS,84990,55166 +1724295900,Spotify,2052,8115 +1724295900,SSL client,35391,31880 +1724295900,__unknown,248159,264660 +1724295900,BITS,3083,13472 +1724295900,BitTorrent,310,496 +1724295900,DHCPv6,163,0 +1724295900,Google APIs,58261,41306 +1724295900,Google Drive,13293,39489 +1724295900,Google,54325,155389 +1724295900,DNS,21150,0 +1724295900,Gmail,6712,8047 +1724295900,HTTP,4257,14478 +1724295900,NetBIOS-dgm,250,0 +1724295900,NTP,1800,1800 +1724295900,STUN,3254,4558 +1724295900,HTTPS,172257,352168 +1724295900,SSL client,134883,252119 +1724295900,Microsoft CryptoAPI,1174,1006 +1724295900,ICMP,48538,0 +1724295900,Grammarly,2292,7888 +1724295900,DNS over HTTPS,12449,31734 +1724295900,__unknown,514370,332417 +1724295900,Google APIs,7583,14664 +1724295900,Google,5036,6536 +1724295900,QQ,414,1581 +1724295900,Discard,80,77 +1724295900,DNS,44730,49253 +1724295900,Google Analytics,2265,6275 +1724295900,HTTP,184704,2330818 +1724295900,Launchpad,3496,2480 +1724295900,Microsoft Update,106018,2226528 +1724295900,NTP,2430,2430 +1724295900,STUN,34266,222 +1724295900,Advanced Packaging Tool,32401,29311 +1724295900,Windows Update,64470,1094103 +1724295900,HTTPS,186402,497668 +1724295900,Mozilla,5239,7261 +1724295900,SSL client,40943,82617 +1724295900,Ubuntu Update Manager,24065,22357 +1724295900,Yandex,13199,41762 +1724295900,Ubuntu,6965,6771 +1724295900,Microsoft CryptoAPI,1955,1981 +1724295900,Microsoft NCSI,865,974 +1724295900,Google Play,5565,3272 +1724295900,ICMP,2072,0 +1724295900,Edge Chromium,6744,20925 +1724295900,DNS over TLS,2158,9539 +1724295900,DNS over HTTPS,23735,82305 +1724296200,__unknown,81906,69316 +1724296200,HTTPS,45753,63952 +1724296200,SSL client,45753,63952 +1724296200,Telegram,45753,63952 +1724296200,ICMP,21730,0 +1724296200,HTTPS,54147,64030 +1724296200,SSL client,54147,64030 +1724296200,Telegram,54147,64030 +1724296200,HTTPS,47230,10905 +1724296200,SSL client,44001,9197 +1724296200,Google Play,44001,9197 +1724296200,Google APIs,2047,6295 +1724296200,HTTPS,12385,19769 +1724296200,SSL client,3297,12265 +1724296200,Google Play,1250,5970 +1724296200,__unknown,1320,14400 +1724296200,Google,8272,5102 +1724296200,MSN,1421,7371 +1724296200,HTTPS,572549,20852965 +1724296200,Apple sites,472976,20723828 +1724296200,SSL client,537067,20823282 +1724296200,Microsoft,29431,46648 +1724296200,Mail.Ru,8819,6604 +1724296200,Office 365,2253,8529 +1724296200,Sharepoint Online,7697,20888 +1724296200,Google Sign in,6198,4312 +1724296200,__unknown,22079,14636 +1724296200,Dropbox,5294,6506 +1724296200,HTTP,1676,1393 +1724296200,Microsoft Update,2526,4413 +1724296200,TwitchTV,6422,7003 +1724296200,Advanced Packaging Tool,635,566 +1724296200,HTTPS,261343,390053 +1724296200,Apple sites,1944,4852 +1724296200,Avast,1260,9895 +1724296200,SSL client,200699,295444 +1724296200,Amazon Web Services,3325,21602 +1724296200,Microsoft,40909,85721 +1724296200,Mail.Ru,87719,77518 +1724296200,Yandex,23711,36371 +1724296200,Ubuntu,635,566 +1724296200,Microsoft CryptoAPI,1041,827 +1724296200,Office 365,25958,35389 +1724296200,Grammarly,2672,7001 +1724296200,DNS over HTTPS,15088,52460 +1724296200,__unknown,188,229 +1724296200,DNS over HTTPS,11712,27711 +1724296200,ICMP,12900,12900 +1724296200,__unknown,1608,1349 +1724296200,Google,16322,26332 +1724296200,HTTPS,18640,31808 +1724296200,SSL client,16322,26332 +1724296200,ICMP,258,0 +1724296200,__unknown,500622,616867 +1724296200,BitTorrent,463,496 +1724296200,DHCPv6,978,0 +1724296200,Google APIs,2888,10101 +1724296200,Google,81032,112584 +1724296200,BitTorrent tracker,153,0 +1724296200,DNS,17891,0 +1724296200,Gmail,14306,16076 +1724296200,HTTP,4083,3868 +1724296200,Microsoft Update,2349,2399 +1724296200,NTP,12840,3090 +1724296200,HTTPS,156616,272808 +1724296200,SSL client,101746,155477 +1724296200,Microsoft,922,7532 +1724296200,Microsoft CryptoAPI,3352,2789 +1724296200,Google Play,2598,9184 +1724296200,ICMP,27834,0 +1724296200,DNS over HTTPS,16929,48067 +1724296200,__unknown,192591,246332 +1724296200,DHCPv6,163,0 +1724296200,Google APIs,7718,20044 +1724296200,Google,16437,25290 +1724296200,DNS,53506,47821 +1724296200,Gmail,12874,11766 +1724296200,HTTP,252695,40824594 +1724296200,Internet Explorer,6214,2040 +1724296200,Launchpad,3200,2414 +1724296200,Microsoft Update,2329,1820 +1724296200,NetBIOS-dgm,243,0 +1724296200,NTP,15630,5880 +1724296200,Odnoklassniki,1908,1528 +1724296200,Steam,1876,48062 +1724296200,Advanced Packaging Tool,219088,40715640 +1724296200,HTTPS,113567,752263 +1724296200,Mozilla,2058,4535 +1724296200,Avast,382,391 +1724296200,SSL client,83650,561089 +1724296200,Ubuntu Update Manager,213540,40711106 +1724296200,Microsoft,1590,16074 +1724296200,VeriSign,698,2141 +1724296200,Yandex,22132,40146 +1724296200,MDNS,364,0 +1724296200,Ubuntu,3198,3042 +1724296200,Microsoft CryptoAPI,6224,6672 +1724296200,Microsoft NCSI,931,1040 +1724296200,Microsoft WNS,1590,16074 +1724296200,Apple Maps,2138,4333 +1724296200,Google Play,3422,5876 +1724296200,ICMP,1478,0 +1724296200,JetBrains,16128,440495 +1724296200,Google Sign in,4536,8105 +1724296200,Edge Chromium,4456,13479 +1724296200,Grammarly,2223,7853 +1724296200,DNS over HTTPS,13848,44055 +1724296499,HTTPS,155399,698052 +1724296499,SSL client,155399,698052 +1724296499,Mail.Ru,155399,698052 +1724296499,__unknown,1484,2060 +1724296499,__unknown,480,420 +1724296499,HTTPS,53855,63964 +1724296499,SSL client,53855,63964 +1724296499,Telegram,53855,63964 +1724296499,HTTPS,23217,25938 +1724296499,SSL client,23217,25938 +1724296499,Yandex,2418,7182 +1724296499,Google Play,20799,18756 +1724296499,__unknown,11443,1390 +1724296499,Dropbox,6361,222931 +1724296499,Google,44661,54517 +1724296499,iTunes,8549,29013 +1724296499,HTTPS,149266,431786 +1724296499,Avast,1254,8460 +1724296499,SSL client,106867,387481 +1724296499,Microsoft,13455,26299 +1724296499,Mail.Ru,8602,10838 +1724296499,Yandex,6866,7687 +1724296499,Google Play,14979,18203 +1724296499,GISMETEO,2140,9533 +1724296499,__unknown,4324495,1279250 +1724296499,Google,1820800,724332 +1724296499,HTTP,527,530 +1724296499,Advanced Packaging Tool,527,530 +1724296499,HTTPS,2294070,1960840 +1724296499,Mozilla,6539,15721 +1724296499,Avast,3451,12530 +1724296499,Opera,9757,5952 +1724296499,SSL client,2191562,1782347 +1724296499,Amazon Web Services,3265,21542 +1724296499,Microsoft,165862,63143 +1724296499,Mail.Ru,115757,110321 +1724296499,Yandex,49164,754469 +1724296499,Ubuntu,527,530 +1724296499,Office 365,7692,32331 +1724296499,Microsoft Windows Live Services Authentication,19032,47958 +1724296499,DNS over HTTPS,1153,4936 +1724296499,__unknown,195249,201758 +1724296499,Google,57123,40476 +1724296499,HTTPS,57123,40476 +1724296499,SSL client,57123,40476 +1724296499,ICMP,1230,0 +1724296499,__unknown,1818,1176 +1724296499,Google,14250,34097 +1724296499,HTTPS,81728,89642 +1724296499,Spotify,2197,9537 +1724296499,SSL client,48255,55517 +1724296499,Google Play,31808,11883 +1724296499,ICMP,2056,0 +1724296499,__unknown,434907,559870 +1724296499,BitTorrent,310,496 +1724296499,Google APIs,46914,215076 +1724296499,Google,40461,84017 +1724296499,Kaspersky,608,607 +1724296499,DNS,26595,0 +1724296499,Gmail,8556,15053 +1724296499,HTTP,2356,2275 +1724296499,Microsoft Update,981,817 +1724296499,NTP,1080,1080 +1724296499,HTTPS,160545,564620 +1724296499,SSL client,99358,322704 +1724296499,Yandex,1133,670 +1724296499,Microsoft CryptoAPI,981,817 +1724296499,ICMP,5656,0 +1724296499,ICMP for IPv6,70,0 +1724296499,Grammarly,2294,7888 +1724296499,DNS over HTTPS,21848,59027 +1724296499,__unknown,370103,490447 +1724296499,DHCPv6,978,0 +1724296499,Google APIs,13428,9943 +1724296499,Google,40297,101894 +1724296499,DNS,51437,42600 +1724296499,HTTP,73125,85057 +1724296499,Launchpad,3200,2480 +1724296499,Microsoft Update,981,850 +1724296499,NetBIOS-dgm,250,0 +1724296499,NTP,1980,1980 +1724296499,STUN,1230,1110 +1724296499,Odnoklassniki,1851,1265 +1724296499,Advanced Packaging Tool,27255,24701 +1724296499,HTTPS,140457,434039 +1724296499,SSL client,65764,136315 +1724296499,Ubuntu Update Manager,19850,18439 +1724296499,Microsoft,4668,3474 +1724296499,Yandex,6734,14508 +1724296499,Ubuntu,5480,5161 +1724296499,Microsoft CryptoAPI,5738,4920 +1724296499,Microsoft NCSI,520,553 +1724296499,ICMP,9863,0 +1724296499,ICMP for IPv6,70,0 +1724296499,Edge Chromium,5270,13643 +1724296499,DNS over HTTPS,12933,43197 +1724296799,HTTPS,2502320,642179 +1724296799,HTTPS,55535,65653 +1724296799,__unknown,43685,52659 +1724296799,Dropbox,120576,21671 +1724296799,HTTPS,132041,31747 +1724296799,SSL client,120576,21671 +1724296799,__unknown,18428,7949 +1724296799,Google APIs,4054,14312 +1724296799,HTTPS,11231,30346 +1724296799,SSL client,6945,26215 +1724296799,Google Play,2891,11903 +1724296799,__unknown,327,337 +1724296799,HTTPS,29352,52815 +1724296799,SSL client,19734,43479 +1724296799,Microsoft,2169,3725 +1724296799,Mail.Ru,6297,5839 +1724296799,Yandex,6011,6636 +1724296799,Office 365,3063,17918 +1724296799,GISMETEO,2194,9361 +1724296799,__unknown,86883,72115 +1724296799,Apple Update,1803,5083 +1724296799,Dropbox,2364,2331 +1724296799,Google APIs,1285,6110 +1724296799,Google,2791,6585 +1724296799,MSN,1486,7483 +1724296799,HTTP,6667,12538 +1724296799,Microsoft Update,3495,7653 +1724296799,Advanced Packaging Tool,1162,1096 +1724296799,HTTPS,428592,1685177 +1724296799,Opera,9821,6014 +1724296799,SSL client,333109,580512 +1724296799,Microsoft,159623,260729 +1724296799,Mail.Ru,123945,119822 +1724296799,Yandex,23588,39396 +1724296799,Ubuntu,1162,1096 +1724296799,Google Update,4400,10370 +1724296799,Apple Maps,2612,7137 +1724296799,Office 365,3134,15277 +1724296799,Sharepoint Online,3238,94345 +1724296799,Microsoft Windows Live Services Authentication,6357,15698 +1724296799,DNS over HTTPS,2887,10232 +1724296799,HTTPS,53689,70636 +1724296799,SSL client,53689,70636 +1724296799,Telegram,53689,70636 +1724296799,HTTPS,53723,70636 +1724296799,SSL client,53723,70636 +1724296799,Telegram,53723,70636 +1724296799,__unknown,215,225 +1724296799,ICMP,1476,0 +1724296799,__unknown,3598,20648 +1724296799,ICMP,656,0 +1724296799,DNS over HTTPS,1773,17656 +1724296799,__unknown,145,60 +1724296799,HTTPS,3360,5401 +1724296799,ICMP,3720,3660 +1724296799,__unknown,401520,434764 +1724296799,BitTorrent,463,1033 +1724296799,DHCPv6,163,0 +1724296799,Google APIs,5017,16663 +1724296799,Google Drive,33123,25217 +1724296799,Google,81864,105705 +1724296799,BitTorrent tracker,153,537 +1724296799,DNS,13032,0 +1724296799,Gmail,21064,24773 +1724296799,HTTP,29829,2359897 +1724296799,NTP,36720,7470 +1724296799,VKontakte,2743,6097 +1724296799,HTTPS,251271,454200 +1724296799,Mozilla,2615,1712 +1724296799,SSL client,165378,337801 +1724296799,CloudFront,10224,145185 +1724296799,Microsoft CryptoAPI,29829,2359897 +1724296799,ICMP,4808,2340 +1724296799,Telegram,2439,7841 +1724296799,Google Sign in,6289,4608 +1724296799,DNS over HTTPS,7505,20997 +1724296799,__unknown,243130,187855 +1724296799,Google APIs,3465,12250 +1724296799,Google,48827,211928 +1724296799,Kaspersky,608,607 +1724296799,DNS,45848,41535 +1724296799,Firefox,822,1130 +1724296799,Gmail,6343,8020 +1724296799,HTTP,201068,3743185 +1724296799,Launchpad,3200,2480 +1724296799,Microsoft Update,1337,1274 +1724296799,NTP,12660,2910 +1724296799,Advanced Packaging Tool,34310,278376 +1724296799,HTTPS,133203,520572 +1724296799,Apple sites,13544,14786 +1724296799,Mozilla,8622,7376 +1724296799,SSL client,94381,307231 +1724296799,Ubuntu Update Manager,28648,273740 +1724296799,Microsoft,113474,3391515 +1724296799,Yandex,10799,40376 +1724296799,Ubuntu,3968,3679 +1724296799,Microsoft CryptoAPI,1902,1978 +1724296799,Microsoft WNS,573,8037 +1724296799,ICMP,915,0 +1724296799,Edge Chromium,4743,12282 +1724296799,DNS over TLS,3233,14252 +1724296799,DNS over HTTPS,13445,50167 +1724297099,__unknown,99858,84366 +1724297099,__unknown,72270,66520 +1724297099,HTTPS,45681,68832 +1724297099,SSL client,45681,68832 +1724297099,Telegram,45681,68832 +1724297099,HTTPS,204442,72381 +1724297099,Windows Live,91954,31242 +1724297099,HTTPS,97119,37504 +1724297099,SSL client,97119,37504 +1724297099,Sharepoint Online,5165,6262 +1724297099,HTTPS,18744,133938 +1724297099,SSL client,11048,124528 +1724297099,Microsoft,8213,117335 +1724297099,Microsoft Teams,2835,7193 +1724297099,HTTPS,67864,90388 +1724297099,SSL client,54953,66313 +1724297099,Telegram,54953,66313 +1724297099,HTTPS,10682,9410 +1724297099,__unknown,93239,97019 +1724297099,Google APIs,4604,12626 +1724297099,Steam,2053,4917 +1724297099,HTTPS,70989,106139 +1724297099,SSL client,49488,76417 +1724297099,Microsoft,9168,22042 +1724297099,Mail.Ru,8851,6605 +1724297099,Yandex,24812,30227 +1724297099,DNS over HTTPS,0,1390 +1724297099,__unknown,135067,208564 +1724297099,Google APIs,2533,7005 +1724297099,Google,239358,151295 +1724297099,HTTP,5546,11847 +1724297099,Skype,3267,7019 +1724297099,Advanced Packaging Tool,569,566 +1724297099,HTTPS,544499,606160 +1724297099,Avast,580,391 +1724297099,SSL client,475330,462658 +1724297099,Microsoft,30532,46121 +1724297099,Mail.Ru,132077,126417 +1724297099,Yandex,23332,33298 +1724297099,GitHub,1592,5975 +1724297099,Ubuntu,569,566 +1724297099,Google Update,4397,10890 +1724297099,Office 365,10234,39408 +1724297099,Microsoft Windows Live Services Authentication,32405,46120 +1724297099,DNS over HTTPS,2772,10468 +1724297099,CoAP,7252,5328 +1724297099,HTTPS,54116,53668 +1724297099,__unknown,15272,10873 +1724297099,HTTPS,3369,5443 +1724297099,Google,45696,32785 +1724297099,HTTPS,65433,61750 +1724297099,SSL client,45696,32785 +1724297099,ICMP,1172,0 +1724297099,__unknown,416342,417260 +1724297099,BitTorrent,310,496 +1724297099,DHCPv6,978,0 +1724297099,Google APIs,4661,14866 +1724297099,Google,14821,42789 +1724297099,DNS,16314,0 +1724297099,HTTP,2241,1999 +1724297099,NetBIOS-dgm,243,0 +1724297099,NTP,27300,7800 +1724297099,STUN,1860,3190 +1724297099,VKontakte,2804,6102 +1724297099,Odnoklassniki,2549,7423 +1724297099,HTTPS,118098,216390 +1724297099,SSL client,27066,78957 +1724297099,Microsoft CryptoAPI,1734,1469 +1724297099,ICMP,4515,0 +1724297099,Grammarly,2231,7777 +1724297099,DNS over HTTPS,21655,62677 +1724297099,__unknown,264792,476346 +1724297099,DHCPv6,163,0 +1724297099,Google APIs,4255,13496 +1724297099,Google,26407,43725 +1724297099,Chrome,1305,1337 +1724297099,DNS,45369,39797 +1724297099,HTTP,2903008,147266324 +1724297099,Internet Explorer,762,660 +1724297099,Launchpad,2560,1852 +1724297099,NTP,630,630 +1724297099,Advanced Packaging Tool,2753708,143384250 +1724297099,HTTPS,136810,377132 +1724297099,Avast,382,391 +1724297099,SSL client,51436,122657 +1724297099,Ubuntu Update Manager,2746260,143378014 +1724297099,Microsoft,89462,3802030 +1724297099,Mail.Ru,2236,5479 +1724297099,Yandex,12819,38425 +1724297099,Ubuntu,7013,6755 +1724297099,Microsoft CryptoAPI,1147,965 +1724297099,ICMP,2028,0 +1724297099,Edge Chromium,4743,12283 +1724297099,DNS over TLS,4616,19229 +1724297099,DNS over HTTPS,20279,77740 +1724297400,HTTPS,109088,128382 +1724297400,HTTPS,12678,5721 +1724297400,HTTPS,7248,12350 +1724297400,SSL client,1506,5962 +1724297400,Google Play,1506,5962 +1724297400,__unknown,1657385,765692 +1724297400,TeamViewer,1642,8838 +1724297400,HTTPS,58802,93104 +1724297400,SSL client,43799,70815 +1724297400,Microsoft,15289,26260 +1724297400,Mail.Ru,20417,22979 +1724297400,Yandex,6451,12738 +1724297400,__unknown,172015,83534 +1724297400,Apple Update,1708,5689 +1724297400,Google,153832,148461 +1724297400,Dell,1111,4306 +1724297400,HTTP,1581,2424 +1724297400,Microsoft Update,1675,5433 +1724297400,SSL,1450,1392 +1724297400,Advanced Packaging Tool,1054,1060 +1724297400,HTTPS,563242,712553 +1724297400,iCloud,16819,77121 +1724297400,SSL client,409009,528930 +1724297400,Microsoft,40278,60557 +1724297400,Mail.Ru,99743,83572 +1724297400,Yandex,53532,78729 +1724297400,Ubuntu,1054,1060 +1724297400,Office 365,1689,7788 +1724297400,Microsoft Windows Live Services Authentication,22530,38916 +1724297400,Google Hangouts,1450,1392 +1724297400,Edge Chromium,527,1364 +1724297400,Grammarly,14642,16966 +1724297400,DNS over HTTPS,7706,27274 +1724297400,HTTPS,115385,88050 +1724297400,__unknown,2092,1372 +1724297400,Google,8123,12312 +1724297400,HTTPS,8123,12312 +1724297400,SSL client,8123,12312 +1724297400,ICMP,2914,0 +1724297400,__unknown,28745,69745 +1724297400,Gmail,30660,36485 +1724297400,HTTPS,33996,90722 +1724297400,Apple sites,3336,54237 +1724297400,SSL client,33996,90722 +1724297400,ICMP,1148,0 +1724297400,DNS over HTTPS,7983,20756 +1724297400,__unknown,417771,948613 +1724297400,BitTorrent,463,694 +1724297400,Google APIs,8842,26616 +1724297400,Google,10115,33402 +1724297400,BitTorrent tracker,153,198 +1724297400,DNS,15632,260 +1724297400,Gmail,8556,15444 +1724297400,HTTP,673,2524 +1724297400,NetBIOS-dgm,250,0 +1724297400,NTP,13020,3270 +1724297400,STUN,1860,3300 +1724297400,Odnoklassniki,2609,7440 +1724297400,HTTPS,84103,303065 +1724297400,SSL client,30122,82902 +1724297400,Microsoft,673,2524 +1724297400,ICMP,36965,0 +1724297400,DNS over HTTPS,8102,25535 +1724297400,__unknown,305422,693359 +1724297400,DHCPv6,978,0 +1724297400,Google APIs,6032,14040 +1724297400,Google,26299,51843 +1724297400,DNS,46787,44488 +1724297400,Gmail,284387,163621 +1724297400,HTTP,112757,1769921 +1724297400,Launchpad,3200,2414 +1724297400,Microsoft Update,981,815 +1724297400,NTP,13110,3360 +1724297400,Advanced Packaging Tool,27210,24695 +1724297400,HTTPS,422234,554547 +1724297400,SSL client,337354,259755 +1724297400,Ubuntu Update Manager,19805,18499 +1724297400,Microsoft,33700,1668178 +1724297400,Yandex,22045,39189 +1724297400,Ubuntu,4630,4243 +1724297400,Microsoft CryptoAPI,3087,2546 +1724297400,Microsoft NCSI,454,487 +1724297400,ICMP,2684,0 +1724297400,ICMP for IPv6,70,0 +1724297400,Telegram,1965,7377 +1724297400,Edge Chromium,6804,17600 +1724297400,DNS over HTTPS,8440,28694 +1724297700,__unknown,6399726,1900728 +1724297700,Google,33913,47059 +1724297700,HTTPS,33913,47059 +1724297700,SSL client,33913,47059 +1724297700,__unknown,1244,1838 +1724297700,HTTPS,129324,40655 +1724297700,HTTPS,4143,6382 +1724297700,SSL client,4143,6382 +1724297700,Sharepoint Online,4143,6382 +1724297700,IMAPS,15449,711169 +1724297700,HTTPS,32448,27249 +1724297700,__unknown,360,7635 +1724297700,Dropbox,122896,19878 +1724297700,HTTPS,122896,19878 +1724297700,SSL client,122896,19878 +1724297700,Google APIs,4114,14536 +1724297700,HTTPS,33253,37777 +1724297700,SSL client,22712,26967 +1724297700,Google Play,18598,12431 +1724297700,__unknown,48259,17380 +1724297700,HTTPS,89709,115726 +1724297700,Apple sites,6009,9262 +1724297700,iCloud,12645,21445 +1724297700,Mozilla,2241,4679 +1724297700,SSL client,60785,86852 +1724297700,Microsoft,6095,14773 +1724297700,Mail.Ru,11907,12140 +1724297700,Yandex,21888,24553 +1724297700,__unknown,88304,96619 +1724297700,Google APIs,97086124,1942044 +1724297700,Google,2982,3194 +1724297700,Microsoft Update,49142,34817 +1724297700,HTTPS,97546703,2615989 +1724297700,Apple sites,2087,8701 +1724297700,iCloud,9566,17625 +1724297700,Mozilla,2201,5459 +1724297700,SSL client,97481448,2464764 +1724297700,Amazon Web Services,13416,28610 +1724297700,Microsoft,55532,78249 +1724297700,Mail.Ru,69897,68708 +1724297700,Yandex,139192,101568 +1724297700,Exchange Online,2743,12938 +1724297700,Office 365,12991,99277 +1724297700,Microsoft Windows Live Services Authentication,32951,56550 +1724297700,Grammarly,2624,7024 +1724297700,DNS over HTTPS,2166,9393 +1724297700,__unknown,188,229 +1724297700,__unknown,94,594 +1724297700,__unknown,3645,11977 +1724297700,HTTPS,89342,4553611 +1724297700,SSL client,89342,4553611 +1724297700,Mac App Store,64065,4516961 +1724297700,ICMP,8160,8160 +1724297700,Telegram,25277,36650 +1724297700,__unknown,7724,12482 +1724297700,HTTPS,10867,17142 +1724297700,DNS over HTTPS,0,1390 +1724297700,__unknown,447687,575001 +1724297700,BitTorrent,310,496 +1724297700,DHCPv6,163,0 +1724297700,Google APIs,2707,9825 +1724297700,Google,56537,189397 +1724297700,DNS,13064,0 +1724297700,Gmail,8618,15298 +1724297700,HTTP,816,738 +1724297700,NTP,990,990 +1724297700,Odnoklassniki,2609,7484 +1724297700,HTTPS,106868,319108 +1724297700,SSL client,72642,229880 +1724297700,Microsoft CryptoAPI,816,738 +1724297700,Samsung Push Notification,2672,9180 +1724297700,ICMP,4604,0 +1724297700,Grammarly,2171,7876 +1724297700,DNS over HTTPS,8223,25817 +1724297700,__unknown,206726,198262 +1724297700,DHCPv6,978,0 +1724297700,Google APIs,6032,14131 +1724297700,Google Drive,18684,21773 +1724297700,Google,56458,197326 +1724297700,QQ,414,1581 +1724297700,DNS,48188,46575 +1724297700,HTTP,90341,701114 +1724297700,Launchpad,2560,1984 +1724297700,Microsoft Update,29735,614184 +1724297700,NetBIOS-dgm,243,0 +1724297700,NTP,13740,3990 +1724297700,STUN,1860,3300 +1724297700,Steam,637,2923 +1724297700,Advanced Packaging Tool,24691,22485 +1724297700,Windows Update,29040,613411 +1724297700,HTTPS,219384,596624 +1724297700,Spotify,1838,4674 +1724297700,Avast,1319,4855 +1724297700,SSL client,87811,252238 +1724297700,Ubuntu Update Manager,18465,17213 +1724297700,Yandex,3718,15161 +1724297700,Ubuntu,5858,5589 +1724297700,Microsoft CryptoAPI,1990,1746 +1724297700,ICMP,2128,0 +1724297700,Edge Chromium,7151,20951 +1724297700,DNS over HTTPS,16164,62334 +1724298000,HTTPS,59074,126903 +1724298000,SSL client,59074,126903 +1724298000,Yandex,59074,126903 +1724298000,ICMP,14350,0 +1724298000,HTTPS,45893,63952 +1724298000,SSL client,45893,63952 +1724298000,Telegram,45893,63952 +1724298000,__unknown,6818,18275 +1724298000,__unknown,834,0 +1724298000,Windows Live,28012,7873 +1724298000,Skype,3977,8741 +1724298000,HTTPS,127209,202858 +1724298000,SSL client,127209,202858 +1724298000,Microsoft,9651,118354 +1724298000,Google Play,31100,5854 +1724298000,Telegram,54469,62036 +1724298000,HTTPS,11429,14361 +1724298000,__unknown,8364,48148 +1724298000,Bing,3425,6484 +1724298000,MSN,1426,7461 +1724298000,HTTP,558,2221 +1724298000,TeamViewer,1450,8838 +1724298000,HTTPS,288375,282647 +1724298000,Avast,1320,11657 +1724298000,SSL client,37818,179008 +1724298000,Microsoft,14539,35448 +1724298000,Mail.Ru,5356,1674 +1724298000,Yandex,5170,3750 +1724298000,Microsoft CryptoAPI,558,2221 +1724298000,Sharepoint Online,2878,94291 +1724298000,GISMETEO,2254,9405 +1724298000,__unknown,8612,92471 +1724298000,Google,286507,186943 +1724298000,MSN,5184,9509 +1724298000,HTTP,4826,41596 +1724298000,Microsoft Update,35865,6088 +1724298000,Steam,9392,17333 +1724298000,Advanced Packaging Tool,3746,40018 +1724298000,HTTPS,911427,666658 +1724298000,SSL client,860051,556953 +1724298000,Amazon Web Services,3259,21430 +1724298000,CloudFront,1509,1062 +1724298000,Ubuntu Update Manager,1274,1226 +1724298000,Microsoft,171882,76600 +1724298000,Mail.Ru,99051,93725 +1724298000,Yandex,216296,85007 +1724298000,Microsoft CryptoAPI,1080,1578 +1724298000,Office 365,558,1139 +1724298000,Microsoft Windows Live Services Authentication,16895,44102 +1724298000,BlueStacks,1599,5046 +1724298000,Grammarly,12612,10108 +1724298000,DNS over HTTPS,1055,5253 +1724298000,HTTPS,7782,10982 +1724298000,SSL client,7782,10982 +1724298000,DNS over HTTPS,7782,10982 +1724298000,ICMP,2726,0 +1724298000,__unknown,4239,3120 +1724298000,HTTPS,53937,62036 +1724298000,SSL client,53937,62036 +1724298000,Telegram,53937,62036 +1724298000,CoAP,3136,2304 +1724298000,HTTPS,4026,19640 +1724298000,ICMP,328,0 +1724298000,DNS over HTTPS,5415,13757 +1724298000,__unknown,395526,724721 +1724298000,BitTorrent,463,496 +1724298000,DHCPv6,163,0 +1724298000,Google APIs,31111,8345 +1724298000,Google Drive,12589,15061 +1724298000,Google,16478,60168 +1724298000,BitTorrent tracker,153,0 +1724298000,DNS,20662,0 +1724298000,Gmail,33016,79358 +1724298000,HTTP,3128,2724 +1724298000,Microsoft Update,1292,1035 +1724298000,NetBIOS-dgm,243,0 +1724298000,NTP,13920,4170 +1724298000,STUN,3720,6600 +1724298000,Odnoklassniki,4517,8671 +1724298000,Advanced Packaging Tool,1274,1226 +1724298000,HTTPS,159182,558819 +1724298000,Mozilla,1876,4611 +1724298000,SSL client,114436,194114 +1724298000,Ubuntu Update Manager,1274,1226 +1724298000,Microsoft CryptoAPI,1854,1498 +1724298000,Google Play,2421,9159 +1724298000,ICMP,7840,4440 +1724298000,Google Sign in,12428,8741 +1724298000,DNS over HTTPS,18332,48949 +1724298000,__unknown,175854,181731 +1724298000,Bing,4601,7759 +1724298000,Google,70256,198198 +1724298000,DNS,44938,39583 +1724298000,Gmail,7041,4257 +1724298000,HTTP,78542,873893 +1724298000,Internet Explorer,822,660 +1724298000,Launchpad,3200,2414 +1724298000,Microsoft Update,641,507 +1724298000,NetBIOS-dgm,250,0 +1724298000,NTP,13920,4170 +1724298000,Odnoklassniki,1882,6325 +1724298000,Advanced Packaging Tool,33460,160784 +1724298000,HTTPS,153549,515513 +1724298000,SSL client,88999,233594 +1724298000,Ubuntu Update Manager,25959,154516 +1724298000,Microsoft,11834,662301 +1724298000,Yandex,6381,21133 +1724298000,Ubuntu,6001,5686 +1724298000,Microsoft CryptoAPI,1815,1513 +1724298000,ICMP,1995,0 +1724298000,Edge Chromium,4983,14850 +1724298000,DNS over HTTPS,8182,28369 +1724298300,HTTPS,61040,115026 +1724298300,ICMP,21730,0 +1724298300,Google APIs,2087,7310 +1724298300,HTTPS,4971,14885 +1724298300,SSL client,4971,14885 +1724298300,Yandex,2884,7575 +1724298300,__unknown,15185,8450 +1724298300,Dropbox,1787,5579 +1724298300,Google,8422,5322 +1724298300,HTTP,1628,2186 +1724298300,Microsoft Update,1628,2186 +1724298300,Skype,3254,7079 +1724298300,TeamViewer,1457,8838 +1724298300,Windows Update,1628,2186 +1724298300,HTTPS,88746,126301 +1724298300,SSL client,53655,79965 +1724298300,Microsoft,8365,18305 +1724298300,Mail.Ru,28176,25504 +1724298300,GISMETEO,2194,9338 +1724298300,__unknown,13342,4794 +1724298300,Bing,3344,6425 +1724298300,Dropbox,8092,11498 +1724298300,Google,3525,6897 +1724298300,HTTP,1043,2616 +1724298300,Microsoft Update,72253,22337 +1724298300,Windows Update,480,539 +1724298300,HTTPS,532092,596253 +1724298300,SSL client,477467,476086 +1724298300,Amazon Web Services,3319,21490 +1724298300,Microsoft,24253,23710 +1724298300,VeriSign,563,2077 +1724298300,Mail.Ru,79657,74689 +1724298300,Yandex,254169,239953 +1724298300,GitHub,1526,5977 +1724298300,Ubuntu,1947,21203 +1724298300,Microsoft CryptoAPI,563,2077 +1724298300,Office 365,1161,7775 +1724298300,Microsoft Windows Live Services Authentication,24701,34671 +1724298300,DNS over HTTPS,86607,196135 +1724298300,HTTPS,27695,40713 +1724298300,SSL client,18561,26067 +1724298300,DNS over HTTPS,18561,26067 +1724298300,__unknown,6623,53567 +1724298300,Google,18112,15425 +1724298300,HTTPS,27197,22949 +1724298300,SSL client,27197,22949 +1724298300,Siri,9085,7524 +1724298300,__unknown,0,4170 +1724298300,__unknown,0,1112 +1724298300,Windows Live,7303,22612 +1724298300,SSL,5454,18382 +1724298300,HTTPS,12335,30201 +1724298300,SSL client,7303,22612 +1724298300,__unknown,1031,540 +1724298300,HTTPS,5072,8077 +1724298300,SSL client,5072,8077 +1724298300,Yandex,5072,8077 +1724298300,__unknown,23053,28117 +1724298300,HTTPS,77898,4398951 +1724298300,Spotify,2119,8112 +1724298300,SSL client,57076,4390703 +1724298300,Mac App Store,54957,4382591 +1724298300,__unknown,341872,523440 +1724298300,BitTorrent,310,496 +1724298300,Google APIs,48292,34734 +1724298300,Google,172027,49578 +1724298300,DNS,14910,0 +1724298300,NTP,25320,5820 +1724298300,Odnoklassniki,2669,7499 +1724298300,HTTPS,342654,251213 +1724298300,SSL client,268538,110587 +1724298300,MDNS,88,0 +1724298300,Atlassian,45550,18776 +1724298300,ICMP,8961,0 +1724298300,DNS over HTTPS,16028,45667 +1724298300,__unknown,470806,251064 +1724298300,DHCPv6,1141,0 +1724298300,Google,24249,42139 +1724298300,DNS,38783,39198 +1724298300,HTTP,157991,2775376 +1724298300,Launchpad,3200,2480 +1724298300,Microsoft Update,107390,2720953 +1724298300,NTP,2700,2700 +1724298300,Advanced Packaging Tool,29189,27231 +1724298300,Windows Update,71535,1351487 +1724298300,HTTPS,190735,452363 +1724298300,SSL client,34242,67510 +1724298300,Ubuntu Update Manager,24767,23655 +1724298300,Yandex,7805,20422 +1724298300,Ubuntu,2072,2014 +1724298300,Microsoft CryptoAPI,2364,2023 +1724298300,ICMP,1576,0 +1724298300,DNS over HTTPS,11810,41139 +1724298601,DNS over HTTPS,194386,435153 +1724298601,HTTPS,142989,461659 +1724298601,SSL client,142989,461659 +1724298601,Mail.Ru,89134,397707 +1724298601,Telegram,53855,63952 +1724298601,Dropbox,119526,21052 +1724298601,HTTPS,122626,22766 +1724298601,SSL client,119526,21052 +1724298601,HTTPS,5031,5595 +1724298601,Dropbox,5170,4197 +1724298601,Google,8210,5342 +1724298601,HTTP,1075,1826 +1724298601,HTTPS,97378,137061 +1724298601,Mozilla,2201,5279 +1724298601,SSL client,57394,95304 +1724298601,VeriSign,1075,1826 +1724298601,Mail.Ru,23502,23282 +1724298601,Yandex,7597,5534 +1724298601,Microsoft CryptoAPI,1075,1826 +1724298601,Office 365,8520,42301 +1724298601,GISMETEO,2194,9369 +1724298601,__unknown,14874,17150 +1724298601,MSN,2862,7727 +1724298601,Gmail,13367,19983 +1724298601,HTTP,4965,6653 +1724298601,Microsoft Update,2967,3301 +1724298601,Advanced Packaging Tool,1274,1193 +1724298601,Windows Update,1401,1773 +1724298601,IMAPS,13367,19983 +1724298601,HTTPS,590230,1162782 +1724298601,Mozilla,2143,5399 +1724298601,Avast,2453,13640 +1724298601,SSL client,525268,999666 +1724298601,Amazon Web Services,3319,21430 +1724298601,Ubuntu Update Manager,1274,1193 +1724298601,Microsoft,44639,60176 +1724298601,Mail.Ru,103594,87813 +1724298601,Yandex,309850,698358 +1724298601,Microsoft CryptoAPI,1566,1528 +1724298601,uTorrent,18240,32550 +1724298601,Office 365,1522,4211 +1724298601,Microsoft Windows Live Services Authentication,23279,48379 +1724298601,DNS over HTTPS,5269,17004 +1724298601,__unknown,215,225 +1724298601,HTTPS,53689,66400 +1724298601,SSL client,53689,66400 +1724298601,Telegram,53689,66400 +1724298601,ICMP,1066,0 +1724298601,__unknown,1582,1183 +1724298601,HTTPS,5870,11463 +1724298601,ICMP,984,0 +1724298601,CoAP,1764,1296 +1724298601,__unknown,719563,2060360 +1724298601,BitTorrent,463,1033 +1724298601,Google APIs,2006,8025 +1724298601,Google,234358,298236 +1724298601,BitTorrent tracker,153,537 +1724298601,DNS,16773,0 +1724298601,Gmail,16062,20183 +1724298601,HTTP,1878,1883 +1724298601,Microsoft Update,729,917 +1724298601,NTP,24780,5280 +1724298601,Odnoklassniki,2609,7485 +1724298601,HTTPS,300671,421117 +1724298601,SSL client,261231,338407 +1724298601,Microsoft CryptoAPI,1149,966 +1724298601,ICMP,4365,1080 +1724298601,Google Sign in,6196,4478 +1724298601,DNS over HTTPS,5854,21185 +1724298601,__unknown,394431,339804 +1724298601,DHCPv6,978,0 +1724298601,Google APIs,2471,6745 +1724298601,Google,64547,204206 +1724298601,Windows Live,4884,26356 +1724298601,Chrome,1275,743 +1724298601,DNS,42993,39946 +1724298601,Gmail,13655,12014 +1724298601,HTTP,64111,341423 +1724298601,Launchpad,3200,2414 +1724298601,Microsoft Update,982,888 +1724298601,NetBIOS-dgm,243,0 +1724298601,NTP,900,900 +1724298601,STUN,1860,3300 +1724298601,Advanced Packaging Tool,44871,303797 +1724298601,HTTPS,255163,719707 +1724298601,Mozilla,4963,10929 +1724298601,Avast,382,391 +1724298601,SSL client,140795,329660 +1724298601,Ubuntu Update Manager,32374,161149 +1724298601,Microsoft,633,8036 +1724298601,Yandex,28025,39765 +1724298601,Linux Mint,928,996 +1724298601,Ubuntu,10201,141078 +1724298601,Microsoft CryptoAPI,5061,4402 +1724298601,Microsoft WNS,633,8036 +1724298601,Google Play,17268,12869 +1724298601,ICMP,2096,0 +1724298601,Edge Chromium,1761,6019 +1724298601,Grammarly,2241,7947 +1724298601,DNS over TLS,2314,9900 +1724298601,DNS over HTTPS,15179,51220 +1724298901,HTTPS,51296,27930 +1724298901,HTTPS,49923,21357 +1724298901,HTTPS,53970,64822 +1724298901,SSL client,53970,64822 +1724298901,Telegram,53970,64822 +1724298901,Windows Live,27148,12795 +1724298901,HTTPS,27148,12795 +1724298901,SSL client,27148,12795 +1724298901,HTTPS,107502,40178 +1724298901,HTTPS,42984,137362 +1724298901,SSL client,39817,133477 +1724298901,Microsoft,39817,133477 +1724298901,HTTPS,54012,32736 +1724298901,__unknown,72610,58224 +1724298901,Steam,2492,5234 +1724298901,HTTPS,78261,156538 +1724298901,Mozilla,2207,4819 +1724298901,Avast,1320,8999 +1724298901,SSL client,56366,138074 +1724298901,Microsoft,14354,35372 +1724298901,Mail.Ru,33859,74341 +1724298901,GISMETEO,2134,9309 +1724298901,__unknown,1522653,2129953 +1724298901,Google APIs,21667,14864 +1724298901,Google,107166,182443 +1724298901,HTTP,1871,1484 +1724298901,Microsoft Update,1424,1010 +1724298901,Skype,5171,93297 +1724298901,Steam,25561,30590 +1724298901,HTTPS,671416,1070516 +1724298901,iCloud,4282,8790 +1724298901,Avast,4565,16912 +1724298901,SSL client,410090,594526 +1724298901,Microsoft,34546,71316 +1724298901,Mail.Ru,123664,108285 +1724298901,Yandex,70984,29541 +1724298901,Microsoft CryptoAPI,1424,1010 +1724298901,Office 365,4032,14442 +1724298901,Microsoft Windows Live Services Authentication,8452,24046 +1724298901,DNS over HTTPS,5874,24157 +1724298901,HTTPS,24605,36513 +1724298901,SSL client,24605,36513 +1724298901,Telegram,24605,36513 +1724298901,__unknown,1384,984 +1724298901,HTTPS,7778,8908 +1724298901,ICMP,1476,0 +1724298901,HTTPS,4253,7933 +1724298901,ICMP,246,0 +1724298901,__unknown,384741,430049 +1724298901,BitTorrent,310,496 +1724298901,DHCPv6,163,0 +1724298901,Google Drive,27378,16510 +1724298901,Google,11000,30159 +1724298901,Google Translate,5181,10627 +1724298901,DNS,16823,288 +1724298901,Gmail,8678,15311 +1724298901,HTTP,1441,1202 +1724298901,NetBIOS-dgm,250,0 +1724298901,NTP,270,270 +1724298901,SSL,797,7092 +1724298901,STUN,1860,3300 +1724298901,Odnoklassniki,2609,7483 +1724298901,HTTPS,176422,224459 +1724298901,SSL client,83137,97514 +1724298901,Microsoft CryptoAPI,1441,1202 +1724298901,Google Play,27494,10332 +1724298901,Google Hangouts,797,7092 +1724298901,ICMP,3424,1740 +1724298901,DNS over HTTPS,9997,28002 +1724298901,CoAP,784,576 +1724298901,__unknown,292321,348870 +1724298901,Google APIs,5674,13205 +1724298901,Google,181690,107118 +1724298901,DNS,43027,41748 +1724298901,HTTP,705179,79249993 +1724298901,Internet Explorer,762,660 +1724298901,Launchpad,3200,2414 +1724298901,NTP,450,450 +1724298901,Advanced Packaging Tool,662711,79184858 +1724298901,HTTPS,298013,474280 +1724298901,Avast,437,1261 +1724298901,SSL client,205482,185028 +1724298901,Ubuntu Update Manager,652814,79176434 +1724298901,Mail.Ru,1027,5269 +1724298901,Yandex,15522,56377 +1724298901,Ubuntu,8397,7854 +1724298901,Nvidia,1477,5957 +1724298901,Microsoft CryptoAPI,1174,986 +1724298901,uTorrent,649,482 +1724298901,ICMP,1460,0 +1724298901,Edge Chromium,7738,22947 +1724298901,DNS over HTTPS,10646,41670 +1724299200,ICMP,169800,169740 +1724299200,HTTPS,548196,101172 +1724299200,HTTPS,3430,6523 +1724299200,SSL client,3430,6523 +1724299200,Microsoft Windows Live Services Authentication,3430,6523 +1724299200,ICMP,44880,44880 +1724299200,HTTPS,45885,63952 +1724299200,SSL client,45885,63952 +1724299200,Telegram,45885,63952 +1724299200,__unknown,1608,0 +1724299200,HTTPS,184766,124825 +1724299200,__unknown,50924,52198 +1724299200,HTTPS,16654,31417 +1724299200,HTTPS,32472,31573 +1724299200,SSL client,24737,27353 +1724299200,Yandex,3587,8784 +1724299200,Google Play,21150,18569 +1724299200,__unknown,202548,122611 +1724299200,Dropbox,1647,1519 +1724299200,Google APIs,2895,8978 +1724299200,Windows Live,36513,19401 +1724299200,Skype,3094,9880 +1724299200,HTTPS,141227,155554 +1724299200,Mozilla,4337,10098 +1724299200,Avast,1122,9655 +1724299200,SSL client,78551,107137 +1724299200,Microsoft,21016,23874 +1724299200,Mail.Ru,3056,5536 +1724299200,Office 365,2677,8828 +1724299200,GISMETEO,2194,9368 +1724299200,__unknown,57276,58645 +1724299200,Bing,3898,4344 +1724299200,BITS,565,606 +1724299200,Google,7803,11792 +1724299200,Dell,1111,4306 +1724299200,HTTP,7989,44690 +1724299200,TwitchTV,5267,7089 +1724299200,Advanced Packaging Tool,3526,39740 +1724299200,HTTPS,612755,1041197 +1724299200,SSL client,277551,505358 +1724299200,Microsoft,37886,177923 +1724299200,Mail.Ru,93253,77038 +1724299200,Yandex,90061,132841 +1724299200,Ubuntu,1054,1060 +1724299200,Google Play,10197,17974 +1724299200,Office 365,13419,49674 +1724299200,Microsoft Windows Live Services Authentication,6367,17328 +1724299200,Grammarly,12752,9999 +1724299200,HTTPS,68507,36932 +1724299200,HTTPS,53459,63826 +1724299200,SSL client,53459,63826 +1724299200,Telegram,53459,63826 +1724299200,HTTPS,8454,11454 +1724299200,SSL client,8454,11454 +1724299200,ICMP,3198,0 +1724299200,DNS over HTTPS,8454,11454 +1724299200,HTTPS,55047,21403 +1724299200,__unknown,182754,173976 +1724299200,HTTPS,999736,62423856 +1724299200,SSL client,944175,62397577 +1724299200,Mac App Store,944175,62397577 +1724299200,DNS over HTTPS,10795,25419 +1724299200,__unknown,11325,25022 +1724299200,SSL,19909,5724 +1724299200,HTTPS,9272,11028 +1724299200,ICMP,1204,0 +1724299200,DNS over HTTPS,4137,12318 +1724299200,__unknown,376391,374553 +1724299200,BitTorrent,463,694 +1724299200,DHCPv6,978,0 +1724299200,Google APIs,6553,15497 +1724299200,Google,27170,58758 +1724299200,Android browser,764,526 +1724299200,BitTorrent tracker,153,198 +1724299200,DNS,17988,0 +1724299200,Gmail,8622,15379 +1724299200,HTTP,4062,5001 +1724299200,Microsoft Update,2358,2157 +1724299200,NTP,13200,3450 +1724299200,STUN,1148,1036 +1724299200,VKontakte,2743,5917 +1724299200,Odnoklassniki,2609,7440 +1724299200,HTTPS,90236,337343 +1724299200,SSL client,48066,103135 +1724299200,Yandex,1133,670 +1724299200,Microsoft CryptoAPI,3298,4475 +1724299200,Office 365,940,2318 +1724299200,ICMP,6604,840 +1724299200,DNS over HTTPS,5038,16286 +1724299200,CoAP,1176,864 +1724299200,__unknown,288112,348659 +1724299200,DHCPv6,163,0 +1724299200,Google APIs,12257,22626 +1724299200,Google,18668,29277 +1724299200,DNS,47451,42701 +1724299200,HTTP,133849,998459 +1724299200,Launchpad,3200,2348 +1724299200,Microsoft Update,42773,876080 +1724299200,_err_742,782,7431 +1724299200,NTP,810,810 +1724299200,Advanced Packaging Tool,32226,29287 +1724299200,Windows Update,42132,875573 +1724299200,HTTPS,176094,2415725 +1724299200,SSL client,72310,2144482 +1724299200,Ubuntu Update Manager,26648,24747 +1724299200,Microsoft,906,5074 +1724299200,Yandex,15245,71713 +1724299200,Mac App Store,23691,2004557 +1724299200,Ubuntu,3731,3563 +1724299200,Microsoft CryptoAPI,1201,970 +1724299200,ICMP,25286,0 +1724299200,Telegram,1965,7285 +1724299200,Edge Chromium,7678,22247 +1724299200,DNS over TLS,4762,19159 +1724299200,DNS over HTTPS,13436,54435 +1724299501,DNS over HTTPS,1479,0 +1724299501,DNS over HTTPS,253414,563940 +1724299501,Dropbox,131740,21528 +1724299501,HTTPS,131740,21528 +1724299501,SSL client,131740,21528 +1724299501,HTTPS,56161,50985 +1724299501,SSL client,41345,36580 +1724299501,Google Play,41345,36580 +1724299501,__unknown,480557,497101 +1724299501,HTTPS,97380,94331 +1724299501,SSL client,34084,34892 +1724299501,Microsoft,23003,19728 +1724299501,Yandex,2433,1659 +1724299501,Google Play,5127,9084 +1724299501,Office 365,1522,1425 +1724299501,GISMETEO,1999,2996 +1724299501,__unknown,2778577,3249825 +1724299501,Apple Update,1796,5083 +1724299501,Dropbox,3467,2538 +1724299501,Google APIs,2727,6659 +1724299501,HTTPS,513051,1329536 +1724299501,Apple sites,6704,24999 +1724299501,iCloud,30297,138538 +1724299501,Mozilla,1889,5267 +1724299501,Avast,1944,4342 +1724299501,SSL client,318234,587839 +1724299501,Microsoft,32846,54462 +1724299501,Mail.Ru,107031,120295 +1724299501,Yandex,80570,95016 +1724299501,GitHub,1592,6064 +1724299501,Google Play,22627,21020 +1724299501,Office 365,7013,57194 +1724299501,Microsoft Windows Live Services Authentication,14836,39163 +1724299501,Microsoft Teams,2895,7199 +1724299501,DNS over HTTPS,36753,101911 +1724299501,HTTPS,2620,3901 +1724299501,__unknown,188,229 +1724299501,ICMP,20664,0 +1724299501,HTTPS,22724,20651 +1724299501,ICMP,43378,0 +1724299501,__unknown,135582,113528 +1724299501,HTTPS,13321,4166 +1724299501,Avast,13321,4166 +1724299501,SSL client,13321,4166 +1724299501,HTTPS,3748,2495 +1724299501,ICMP,1352,0 +1724299501,__unknown,360421,350108 +1724299501,BitTorrent,310,496 +1724299501,Google APIs,39411,15550 +1724299501,Google Drive,8895,10858 +1724299501,Google,24351,55761 +1724299501,DNS,17556,0 +1724299501,HTTP,3921825,117667222 +1724299501,_err_742,3920873,117665642 +1724299501,NetBIOS-dgm,493,0 +1724299501,NTP,12750,3090 +1724299501,STUN,3720,6600 +1724299501,Odnoklassniki,2609,7438 +1724299501,HTTPS,111068,194415 +1724299501,SSL client,79800,97706 +1724299501,ICMP,9415,3900 +1724299501,Google Sign in,4534,8099 +1724299501,DNS over HTTPS,10674,30421 +1724299501,CoAP,1176,864 +1724299501,__unknown,227501,210449 +1724299501,DHCPv6,978,0 +1724299501,QQ,1149,2584 +1724299501,DNS,47053,47350 +1724299501,HTTP,102720,121753 +1724299501,Launchpad,3496,2480 +1724299501,Microsoft Update,641,507 +1724299501,NTP,180,180 +1724299501,Odnoklassniki,1908,1544 +1724299501,Steam,2681,16844 +1724299501,Advanced Packaging Tool,34161,31057 +1724299501,HTTPS,106544,346167 +1724299501,Apple sites,853,4059 +1724299501,SSL client,17814,63489 +1724299501,Ubuntu Update Manager,23968,22435 +1724299501,VeriSign,566,2141 +1724299501,Yandex,6115,32211 +1724299501,Ubuntu,7547,7060 +1724299501,Microsoft CryptoAPI,2327,3574 +1724299501,ICMP,3764,0 +1724299501,Edge Chromium,5270,13642 +1724299501,Grammarly,4442,15777 +1724299501,DNS over HTTPS,11619,42374 +1724299800,__unknown,53961207,7686867 +1724299800,HTTPS,91640,40127 +1724299800,Google,320446,164798 +1724299800,HTTPS,320446,164798 +1724299800,SSL client,320446,164798 +1724299800,HTTPS,4848,3813 +1724299800,Dropbox,4508,5926 +1724299800,Windows Live,7964,116005 +1724299800,HTTPS,40674,134001 +1724299800,SSL client,12472,121931 +1724299800,__unknown,31824,26619 +1724299800,MSN,1377,7375 +1724299800,HTTP,589,3103 +1724299800,HTTPS,60986,229413 +1724299800,Apple sites,589,3103 +1724299800,SSL client,37562,163290 +1724299800,Microsoft,22285,38323 +1724299800,Mail.Ru,6769,6235 +1724299800,Office 365,1689,7788 +1724299800,Sharepoint Online,3248,94291 +1724299800,GISMETEO,2194,9278 +1724299800,__unknown,41645,52795 +1724299800,Bing,1929,9268 +1724299800,Dropbox,6361,223016 +1724299800,Google APIs,2609,9787 +1724299800,Google,606676,338927 +1724299800,MSN,3393,9506 +1724299800,HTTP,2303,3574 +1724299800,Microsoft Update,19254,4083 +1724299800,TeamViewer,1508,8898 +1724299800,TwitchTV,5333,7221 +1724299800,Advanced Packaging Tool,527,530 +1724299800,HTTPS,998075,1216037 +1724299800,Apple sites,2147,8711 +1724299800,iCloud,2685,7838 +1724299800,SSL client,939854,1028380 +1724299800,Microsoft,167709,226612 +1724299800,Mail.Ru,72244,69744 +1724299800,Yandex,23776,54466 +1724299800,Ubuntu,527,530 +1724299800,Microsoft CryptoAPI,1052,886 +1724299800,Office 365,5121,22867 +1724299800,Microsoft Windows Live Services Authentication,6496,17328 +1724299800,Grammarly,12613,10108 +1724299800,ICMP,1558,0 +1724299800,__unknown,2131,9646 +1724299800,HTTPS,6896,19226 +1724299800,DNS over HTTPS,6964,15479 +1724299800,__unknown,445314,316743 +1724299800,BitTorrent,463,1033 +1724299800,DHCPv6,163,0 +1724299800,Google APIs,5759,20582 +1724299800,Google Drive,9462,11254 +1724299800,Google,40959,104240 +1724299800,BitTorrent tracker,153,537 +1724299800,DNS,17847,0 +1724299800,HTTP,1911,1568 +1724299800,Microsoft Update,1037,829 +1724299800,NTP,540,540 +1724299800,Odnoklassniki,2609,7440 +1724299800,HTTPS,127430,423402 +1724299800,Apple sites,4023,152194 +1724299800,SSL client,63734,303244 +1724299800,Microsoft,922,7534 +1724299800,Microsoft CryptoAPI,1911,1568 +1724299800,ICMP,25654,5940 +1724299800,ICMP for IPv6,70,0 +1724299800,DNS over HTTPS,14911,44814 +1724299800,__unknown,519852,440087 +1724299800,BITS,11392,852823 +1724299800,Google APIs,1279,1664 +1724299800,Google,14273,27785 +1724299800,Chrome,1130,1034 +1724299800,DNS,43509,40502 +1724299800,Gmail,7161,4160 +1724299800,HTTP,125386,1179828 +1724299800,Internet Explorer,6285,2010 +1724299800,Launchpad,3200,2480 +1724299800,Microsoft Update,2905,2483 +1724299800,NetBIOS-dgm,243,0 +1724299800,NTP,15090,5340 +1724299800,SSL,797,7092 +1724299800,Advanced Packaging Tool,31915,29243 +1724299800,HTTPS,121938,349521 +1724299800,Mozilla,2058,4535 +1724299800,SSL client,44471,86005 +1724299800,Ubuntu Update Manager,25193,23583 +1724299800,Microsoft,12658,868895 +1724299800,Yandex,21980,32511 +1724299800,Ubuntu,6307,5996 +1724299800,Microsoft CryptoAPI,8691,7469 +1724299800,Microsoft WNS,1266,16072 +1724299800,Google Hangouts,797,7092 +1724299800,ICMP,2316,0 +1724299800,Edge Chromium,6444,17665 +1724299800,DNS over TLS,2434,9615 +1724299800,DNS over HTTPS,13438,45003 +1724300099,__unknown,1484,2060 +1724300099,HTTPS,45687,63952 +1724300099,SSL client,45687,63952 +1724300099,Telegram,45687,63952 +1724300099,HTTPS,7998,13429 +1724300099,SSL client,4139,6438 +1724300099,Sharepoint Online,4139,6438 +1724300099,__unknown,810,0 +1724300099,HTTPS,28535,36129 +1724300099,SSL client,23379,30478 +1724300099,Google Play,23379,30478 +1724300099,__unknown,7773,7745 +1724300099,Dropbox,2628,1402 +1724300099,HTTPS,81844,117318 +1724300099,Avast,1380,11755 +1724300099,SSL client,54597,92128 +1724300099,Microsoft,21493,31706 +1724300099,Mail.Ru,21821,18679 +1724300099,Yandex,1055,4632 +1724300099,Office 365,1689,7788 +1724300099,GISMETEO,2194,9338 +1724300099,Grammarly,2337,6828 +1724300099,__unknown,80797,50579 +1724300099,Bing,3610,6424 +1724300099,Google APIs,3032,7161 +1724300099,Google,4822156,2031467 +1724300099,MSN,2069,13860 +1724300099,HTTP,5413,11285 +1724300099,Microsoft Update,23747,38149 +1724300099,Advanced Packaging Tool,587,530 +1724300099,HTTPS,5193584,2732287 +1724300099,Mozilla,7449,8978 +1724300099,Avast,1254,8284 +1724300099,Opera,9691,5952 +1724300099,SSL client,5077483,2382024 +1724300099,Microsoft,15799,39479 +1724300099,Mail.Ru,138818,129827 +1724300099,Yandex,36933,52470 +1724300099,GitHub,1592,6064 +1724300099,Ubuntu,1090,981 +1724300099,Google Update,4323,10304 +1724300099,Office 365,4837,16559 +1724300099,Microsoft Windows Live Services Authentication,16187,23302 +1724300099,DNS over HTTPS,8337,22481 +1724300099,__unknown,146071,93803 +1724300099,Google,279258,308565 +1724300099,HTTPS,279258,308565 +1724300099,SSL client,279258,308565 +1724300099,ICMP,6020,0 +1724300099,__unknown,215,225 +1724300099,Gmail,67912,46258 +1724300099,HTTPS,101150,73785 +1724300099,SSL client,67912,46258 +1724300099,__unknown,684,492 +1724300099,__unknown,983,488 +1724300099,HTTPS,26745,35207 +1724300099,ICMP,4214,3300 +1724300099,CoAP,1764,1296 +1724300099,__unknown,234012,258696 +1724300099,BitTorrent,310,496 +1724300099,DHCPv6,978,0 +1724300099,Google APIs,8445,24505 +1724300099,Google,70759,139114 +1724300099,DNS,18877,0 +1724300099,Gmail,8674,15408 +1724300099,HTTP,2525,2187 +1724300099,Microsoft Update,2018,1654 +1724300099,NTP,1260,1260 +1724300099,STUN,2666,4188 +1724300099,Odnoklassniki,2609,7499 +1724300099,HTTPS,112719,294487 +1724300099,Avast,792,7925 +1724300099,SSL client,91279,194451 +1724300099,Microsoft CryptoAPI,2018,1654 +1724300099,ICMP,15518,3960 +1724300099,DNS over HTTPS,16495,44196 +1724300099,__unknown,452950,210663 +1724300099,BITS,13348,486149 +1724300099,DHCPv6,163,0 +1724300099,Google,24825,57724 +1724300099,DNS,47447,45139 +1724300099,HTTP,100830,596995 +1724300099,Launchpad,3200,2480 +1724300099,Microsoft Update,1618,1328 +1724300099,NetBIOS-dgm,250,0 +1724300099,NTP,1350,1350 +1724300099,Odnoklassniki,3850,7513 +1724300099,Advanced Packaging Tool,25038,22619 +1724300099,HTTPS,132672,411487 +1724300099,Mozilla,2758,1673 +1724300099,Avast,580,457 +1724300099,SSL client,40205,80826 +1724300099,Ubuntu Update Manager,18220,16887 +1724300099,VeriSign,566,2141 +1724300099,Mail.Ru,5428,5479 +1724300099,Yandex,4109,14051 +1724300099,Ubuntu,4893,4627 +1724300099,Microsoft CryptoAPI,6422,7043 +1724300099,ICMP,1548,0 +1724300099,ICMP for IPv6,70,0 +1724300099,Edge Chromium,8852,26333 +1724300099,DNS over HTTPS,13095,42885 +1724300399,HTTPS,180408,312023 +1724300399,SSL client,59250,260988 +1724300399,Mail.Ru,59250,260988 +1724300399,HTTPS,30664,45278 +1724300399,SSL client,27139,41323 +1724300399,Telegram,27139,41323 +1724300399,HTTPS,74916,82245 +1724300399,SSL client,23176,18549 +1724300399,Google Play,23176,18549 +1724300399,__unknown,11428,2951 +1724300399,Google APIs,4054,14512 +1724300399,HTTPS,96847,102135 +1724300399,SSL client,88812,93781 +1724300399,Google Play,84758,79269 +1724300399,__unknown,199265,208983 +1724300399,Google,12873,9228 +1724300399,HTTPS,61596,112469 +1724300399,SSL client,37933,91385 +1724300399,Microsoft,2213,3664 +1724300399,Mail.Ru,8787,6545 +1724300399,Yandex,8362,43926 +1724300399,Office 365,3498,18362 +1724300399,GISMETEO,2200,9660 +1724300399,__unknown,83749,58042 +1724300399,Dropbox,9508,227396 +1724300399,Google,2156,11671 +1724300399,MSN,3340,9504 +1724300399,HTTP,12693,21625 +1724300399,Advanced Packaging Tool,1274,1193 +1724300399,HTTPS,466174,798733 +1724300399,Apple sites,4311,18731 +1724300399,iCloud,9521,17580 +1724300399,Mozilla,5392,5794 +1724300399,Avast,1254,9270 +1724300399,SSL client,427004,685800 +1724300399,Ubuntu Update Manager,1274,1193 +1724300399,Microsoft,268751,232854 +1724300399,Mail.Ru,87978,83283 +1724300399,Yandex,19918,40565 +1724300399,Google Update,4400,10370 +1724300399,uTorrent,21894,39214 +1724300399,DNS over HTTPS,3204,10907 +1724300399,ICMP,6278,0 +1724300399,ICMP,3690,0 +1724300399,HTTPS,25015,37076 +1724300399,SSL client,25015,37076 +1724300399,Telegram,25015,37076 +1724300399,__unknown,1458,11008 +1724300399,Google,45215,36381 +1724300399,HTTPS,46008,48464 +1724300399,SSL client,45215,36381 +1724300399,__unknown,5846,20075 +1724300399,Google Translate,20355,16477 +1724300399,HTTPS,20355,16477 +1724300399,SSL client,20355,16477 +1724300399,ICMP,430,0 +1724300399,__unknown,78581,18521 +1724300399,Google,20645,22101 +1724300399,HTTPS,32798,40838 +1724300399,SSL client,20645,22101 +1724300399,ICMP,2494,0 +1724300399,__unknown,370455,3178321 +1724300399,BitTorrent,463,496 +1724300399,Google APIs,60805,25393 +1724300399,Google Drive,5971,10017 +1724300399,Google,20948,47362 +1724300399,BitTorrent tracker,153,0 +1724300399,DNS,22404,0 +1724300399,Gmail,9934,6625 +1724300399,HTTP,1274,1226 +1724300399,NTP,12840,3090 +1724300399,VKontakte,2863,6214 +1724300399,Odnoklassniki,2609,7500 +1724300399,Advanced Packaging Tool,1274,1226 +1724300399,HTTPS,170788,232123 +1724300399,Mozilla,2615,1712 +1724300399,SSL client,118232,113833 +1724300399,Ubuntu Update Manager,1274,1226 +1724300399,ICMP,13082,3960 +1724300399,Google Sign in,12487,9010 +1724300399,DNS over HTTPS,6722,19577 +1724300399,__unknown,266456,224428 +1724300399,DHCPv6,978,0 +1724300399,Google APIs,5041,13564 +1724300399,Google,42215,54939 +1724300399,DNS,44792,39868 +1724300399,Gmail,14964,23630 +1724300399,HTTP,74419,100851 +1724300399,Launchpad,2560,1984 +1724300399,Microsoft Update,1959,1679 +1724300399,NTP,12930,3180 +1724300399,SSL,855,7031 +1724300399,STUN,1860,3300 +1724300399,Odnoklassniki,3699,2376 +1724300399,Advanced Packaging Tool,29630,27185 +1724300399,HTTPS,178240,406560 +1724300399,Apple sites,1864,4512 +1724300399,SSL client,78096,145014 +1724300399,Ubuntu Update Manager,22278,20891 +1724300399,Microsoft,573,8036 +1724300399,VeriSign,566,2141 +1724300399,Yandex,6612,21483 +1724300399,GitHub,2980,10460 +1724300399,Ubuntu,6427,6146 +1724300399,Microsoft CryptoAPI,3108,4319 +1724300399,Microsoft WNS,573,8036 +1724300399,Google Hangouts,855,7031 +1724300399,ICMP,1946,60 +1724300399,Edge Chromium,5750,18794 +1724300399,DNS over TLS,2926,18834 +1724300399,DNS over HTTPS,15485,57418 +1724300700,Windows Live,46661,15375 +1724300700,Skype,6685,10373 +1724300700,HTTPS,107135,89700 +1724300700,SSL client,107135,89700 +1724300700,Telegram,53789,63952 +1724300700,HTTPS,64447,76536 +1724300700,SSL client,54409,62036 +1724300700,Telegram,54409,62036 +1724300700,Dropbox,118679,20123 +1724300700,HTTPS,124102,36408 +1724300700,SSL client,118679,20123 +1724300700,HTTPS,5694,16440 +1724300700,__unknown,2280,9846 +1724300700,HTTP,158838,7379097 +1724300700,iTunes,3852,19414 +1724300700,Skype,2593,8335 +1724300700,Advanced Packaging Tool,158838,7379097 +1724300700,HTTPS,2640870,75791359 +1724300700,SSL client,2599317,75759264 +1724300700,Ubuntu Update Manager,158838,7379097 +1724300700,Microsoft,14648,29362 +1724300700,Mail.Ru,6233,5840 +1724300700,GISMETEO,2134,9310 +1724300700,Firefox Update,2569857,75687003 +1724300700,__unknown,36560,13532 +1724300700,Google APIs,2680,9041 +1724300700,Google,389288,306642 +1724300700,HTTP,6882,14470 +1724300700,Advanced Packaging Tool,527,530 +1724300700,HTTPS,684025,781958 +1724300700,SSL client,623790,580146 +1724300700,Amazon Web Services,3325,21678 +1724300700,Microsoft,39041,49669 +1724300700,Mail.Ru,102405,106267 +1724300700,Yandex,81701,64854 +1724300700,GitHub,1652,5977 +1724300700,Ubuntu,527,530 +1724300700,Google Update,4390,10370 +1724300700,Microsoft CryptoAPI,1640,3450 +1724300700,Office 365,3698,16018 +1724300700,DNS over HTTPS,6037,26675 +1724300700,HTTPS,9518,13378 +1724300700,SSL client,9518,13378 +1724300700,ICMP,2378,0 +1724300700,DNS over HTTPS,9518,13378 +1724300700,HTTPS,22896,20717 +1724300700,ICMP,1558,0 +1724300700,__unknown,808,392 +1724300700,ICMP,1290,0 +1724300700,__unknown,76702,29206 +1724300700,Google Drive,27371,16035 +1724300700,HTTPS,32902,26790 +1724300700,SSL client,27371,16035 +1724300700,ICMP,4220,3300 +1724300700,__unknown,271669,354754 +1724300700,BITS,47250,1705715 +1724300700,BitTorrent,310,496 +1724300700,DHCPv6,163,0 +1724300700,Google,64851,81708 +1724300700,DNS,16246,260 +1724300700,HTTP,47888,1707746 +1724300700,NetBIOS-dgm,243,0 +1724300700,NTP,12390,2640 +1724300700,VKontakte,2804,6087 +1724300700,Odnoklassniki,2609,7499 +1724300700,Steam,638,2031 +1724300700,HTTPS,117607,210131 +1724300700,SSL client,79525,120317 +1724300700,Microsoft,47250,1705715 +1724300700,Google Play,2436,9156 +1724300700,ICMP,10277,3480 +1724300700,Google Sign in,4532,7921 +1724300700,Grammarly,2293,7946 +1724300700,DNS over HTTPS,8219,25394 +1724300700,__unknown,401949,167070 +1724300700,DHCPv6,978,0 +1724300700,Google,40879,116598 +1724300700,DNS,42471,40460 +1724300700,HTTP,100298,948803 +1724300700,Internet Explorer,762,660 +1724300700,Launchpad,3200,2480 +1724300700,Microsoft Update,1282,1003 +1724300700,NTP,12570,2820 +1724300700,Advanced Packaging Tool,49984,879198 +1724300700,HTTPS,180449,431566 +1724300700,Avast,937,4464 +1724300700,SSL client,52774,141019 +1724300700,Ubuntu Update Manager,43753,873996 +1724300700,Yandex,12870,29877 +1724300700,Ubuntu,5234,5081 +1724300700,Microsoft CryptoAPI,5945,4818 +1724300700,ICMP,24544,0 +1724300700,Edge Chromium,5690,18157 +1724300700,DNS over HTTPS,19114,66162 +1724300999,HTTPS,45897,63952 +1724300999,SSL client,45897,63952 +1724300999,Telegram,45897,63952 +1724300999,HTTPS,3113,1766 +1724300999,HTTPS,20738,33545 +1724300999,SSL client,2696,11970 +1724300999,Google Play,2696,11970 +1724300999,__unknown,1546088,634314 +1724300999,BitTorrent,22218,21476 +1724300999,HTTPS,63322,91905 +1724300999,SSL client,39858,63081 +1724300999,Microsoft,12017,27852 +1724300999,Mail.Ru,3056,5536 +1724300999,Yandex,12486,17308 +1724300999,Google Play,12299,12385 +1724300999,__unknown,34708,25244 +1724300999,Google,105106,116255 +1724300999,Dell,1111,4307 +1724300999,HTTP,1693,2000 +1724300999,Microsoft Update,1459,3579 +1724300999,Skype,2337,16513 +1724300999,TwitchTV,5595,7155 +1724300999,Advanced Packaging Tool,569,566 +1724300999,HTTPS,608328,1209420 +1724300999,Apple sites,3866,11893 +1724300999,Avast,1254,10552 +1724300999,SSL client,505884,766655 +1724300999,Amazon Web Services,3259,21490 +1724300999,Microsoft,73435,163466 +1724300999,Mail.Ru,164683,145912 +1724300999,Yandex,46950,92944 +1724300999,Ubuntu,569,566 +1724300999,Microsoft NCSI,411,427 +1724300999,Office 365,3715,9954 +1724300999,Sharepoint Online,1718,7903 +1724300999,Microsoft Windows Live Services Authentication,79609,145860 +1724300999,Grammarly,12500,9879 +1724300999,DNS over HTTPS,1055,5252 +1724300999,__unknown,188,229 +1724300999,__unknown,1012,5770 +1724300999,HTTPS,74213,31444 +1724300999,SSL client,71002,26029 +1724300999,Google Play,71002,26029 +1724300999,CoAP,2744,2016 +1724300999,__unknown,966,486 +1724300999,HTTPS,5874,11668 +1724300999,Spotify,2065,8257 +1724300999,SSL client,2065,8257 +1724300999,ICMP,6028,1740 +1724300999,__unknown,362205,498962 +1724300999,BitTorrent,463,496 +1724300999,DHCPv6,163,0 +1724300999,Google APIs,6323,16814 +1724300999,Google,46994,116541 +1724300999,BitTorrent tracker,153,0 +1724300999,DNS,17206,0 +1724300999,NetBIOS-dgm,250,0 +1724300999,NTP,630,630 +1724300999,STUN,1558,1406 +1724300999,HTTPS,122305,333097 +1724300999,SSL client,53317,133355 +1724300999,ICMP,5408,0 +1724300999,ICMP for IPv6,70,0 +1724300999,DNS over HTTPS,8162,25313 +1724300999,__unknown,261926,253611 +1724300999,Google APIs,7835,20463 +1724300999,Google,4785,10897 +1724300999,DNS,43743,38979 +1724300999,Gmail,15893,19623 +1724300999,HTTP,694447,85957381 +1724300999,Launchpad,2560,1984 +1724300999,Microsoft Update,2496,2014 +1724300999,NTP,12750,3000 +1724300999,SSL,797,7092 +1724300999,Odnoklassniki,3819,2733 +1724300999,Advanced Packaging Tool,631720,85873637 +1724300999,HTTPS,120723,377182 +1724300999,SSL client,49131,102067 +1724300999,Ubuntu Update Manager,621924,85865083 +1724300999,Microsoft,906,5302 +1724300999,Yandex,11892,25918 +1724300999,GitHub,1727,5582 +1724300999,Ubuntu,9852,9328 +1724300999,Microsoft CryptoAPI,4203,3442 +1724300999,Apple Maps,1720,30351 +1724300999,Google Hangouts,797,7092 +1724300999,ICMP,2811,0 +1724300999,Telegram,2025,7377 +1724300999,Edge Chromium,6624,19585 +1724300999,DNS over TLS,2224,9540 +1724300999,DNS over HTTPS,8728,30965 +1724301300,__unknown,1244,1838 +1724301300,HTTPS,4336,3173 +1724301300,HTTPS,46200,202600 +1724301300,SSL client,46200,202600 +1724301300,Mail.Ru,46200,202600 +1724301300,Google APIs,4114,14478 +1724301300,HTTPS,33662,24568 +1724301300,SSL client,33662,24568 +1724301300,Google Play,29548,10090 +1724301300,__unknown,2089,7306 +1724301300,HTTP,2586,53465 +1724301300,Advanced Packaging Tool,2586,53465 +1724301300,HTTPS,66656,93491 +1724301300,Mozilla,2201,5279 +1724301300,Avast,1314,10556 +1724301300,SSL client,29286,52907 +1724301300,Microsoft,4280,7832 +1724301300,Yandex,2493,1443 +1724301300,Google Play,10093,7012 +1724301300,Office 365,1749,7788 +1724301300,GISMETEO,2134,9307 +1724301300,Google Sign in,5022,3690 +1724301300,__unknown,22595,40695 +1724301300,Bing,3826,5533 +1724301300,Google,287641,157329 +1724301300,Gmail,1619,1672 +1724301300,HTTP,6785,115938 +1724301300,Launchpad,574,496 +1724301300,Microsoft Update,134960,241357 +1724301300,Steam,7275,15633 +1724301300,Advanced Packaging Tool,5611,111922 +1724301300,HTTPS,1007531,1463293 +1724301300,iCloud,90655,422409 +1724301300,Mozilla,2177,5151 +1724301300,SSL client,900654,1279297 +1724301300,Amazon Web Services,3139,21490 +1724301300,Microsoft,194422,121916 +1724301300,Mail.Ru,113386,126509 +1724301300,Yandex,44968,75462 +1724301300,Ubuntu,1054,1060 +1724301300,Exchange Online,1168,8065 +1724301300,Office 365,7884,53508 +1724301300,Dropbox Upload,2126,11545 +1724301300,Microsoft Windows Live Services Authentication,6582,15734 +1724301300,Edge Chromium,1174,4016 +1724301300,DNS over HTTPS,4490,19918 +1724301300,__unknown,13668,11524 +1724301300,ICMP,12710,0 +1724301300,STUN,3269455,58749372 +1724301300,HTTPS,4224,6848 +1724301300,__unknown,4704,22598 +1724301300,ICMP,902,0 +1724301300,Google,3921,10405 +1724301300,HTTPS,7765,12900 +1724301300,SSL client,3921,10405 +1724301300,ICMP,4222,1620 +1724301300,__unknown,360095,400977 +1724301300,BitTorrent,310,496 +1724301300,Google Drive,7469,10349 +1724301300,Google,29038,42490 +1724301300,DNS,14532,0 +1724301300,HTTP,2753,2331 +1724301300,Microsoft Update,1623,1314 +1724301300,NetBIOS-dgm,243,0 +1724301300,NTP,1170,1170 +1724301300,STUN,1860,3300 +1724301300,YouTube,10371,23938 +1724301300,Odnoklassniki,2609,7424 +1724301300,HTTPS,78087,160641 +1724301300,SSL client,51758,92088 +1724301300,Microsoft CryptoAPI,2753,2331 +1724301300,ICMP,2602,60 +1724301300,Grammarly,2271,7887 +1724301300,DNS over HTTPS,2896,8737 +1724301300,__unknown,321698,336479 +1724301300,DHCPv6,1141,0 +1724301300,Google APIs,866,5021 +1724301300,Google Drive,17203,12621 +1724301300,Google,10622,24307 +1724301300,QQ,414,1581 +1724301300,DNS,46741,47586 +1724301300,HTTP,85476,232762 +1724301300,Launchpad,3200,2480 +1724301300,Microsoft Update,695,773 +1724301300,NTP,1800,1800 +1724301300,SSL,855,7031 +1724301300,STUN,44064,222 +1724301300,Advanced Packaging Tool,32437,161544 +1724301300,HTTPS,122173,329867 +1724301300,SSL client,47352,104954 +1724301300,Ubuntu Update Manager,24445,154752 +1724301300,Yandex,7658,33205 +1724301300,GitHub,1727,5582 +1724301300,Ubuntu,5217,4773 +1724301300,Microsoft CryptoAPI,1397,1241 +1724301300,Google Hangouts,855,7031 +1724301300,ICMP,18493,60 +1724301300,Google Sign in,4465,7999 +1724301300,Edge Chromium,5270,13648 +1724301300,DNS over HTTPS,16433,58362 +1724301600,HTTPS,13716,20551 +1724301600,SSL client,13716,20551 +1724301600,DNS over HTTPS,13716,20551 +1724301600,Dropbox,117965,19876 +1724301600,HTTPS,136799,45924 +1724301600,SSL client,117965,19876 +1724301600,HTTPS,10315,10189 +1724301600,__unknown,34467,24209 +1724301600,HTTP,7213,217513 +1724301600,Advanced Packaging Tool,7213,217513 +1724301600,HTTPS,110707,170635 +1724301600,Avast,2376,22236 +1724301600,SSL client,45512,90607 +1724301600,Microsoft,10199,24541 +1724301600,Mail.Ru,6765,6235 +1724301600,Google Play,22456,26862 +1724301600,Office 365,1522,1365 +1724301600,GISMETEO,2194,9368 +1724301600,__unknown,224922,193557 +1724301600,Bing,3736,6489 +1724301600,Dropbox,781,449 +1724301600,Google,825729,492145 +1724301600,HTTP,4432,10364 +1724301600,Skype,3488,8102 +1724301600,HTTPS,1185067,1066034 +1724301600,Apple sites,2111,7180 +1724301600,Avast,1320,10111 +1724301600,SSL client,1065192,901173 +1724301600,CloudFront,2325,1747 +1724301600,Microsoft,55304,104638 +1724301600,Mail.Ru,120235,118293 +1724301600,Yandex,37689,56818 +1724301600,Google Update,4432,10364 +1724301600,Office 365,6120,78509 +1724301600,Microsoft Windows Live Services Authentication,6354,16692 +1724301600,HTTPS,11396,15209 +1724301600,SSL client,11396,15209 +1724301600,DNS over HTTPS,11396,15209 +1724301600,HTTPS,11948,108742 +1724301600,__unknown,24538,249990 +1724301600,ICMP,602,0 +1724301600,__unknown,1206,732 +1724301600,HTTPS,5587,10817 +1724301600,ICMP,1746,1500 +1724301600,__unknown,357955,317282 +1724301600,BitTorrent,463,1033 +1724301600,Google APIs,35585,18651 +1724301600,Google Drive,12604,14928 +1724301600,Google,34556,97791 +1724301600,Google Translate,5118,10625 +1724301600,BitTorrent tracker,153,537 +1724301600,DNS,25177,0 +1724301600,HTTP,1190,1012 +1724301600,NTP,900,900 +1724301600,Odnoklassniki,2609,7364 +1724301600,HTTPS,156321,557971 +1724301600,Mozilla,1876,4611 +1724301600,SSL client,94638,161807 +1724301600,Microsoft CryptoAPI,1190,1012 +1724301600,ICMP,10660,0 +1724301600,Grammarly,2290,7837 +1724301600,DNS over HTTPS,17904,52086 +1724301600,__unknown,364777,3122475 +1724301600,DHCPv6,978,0 +1724301600,Google APIs,1279,1664 +1724301600,Google,90253,300840 +1724301600,DNS,52590,44113 +1724301600,Gmail,7430,9962 +1724301600,HTTP,61632,480503 +1724301600,Internet Explorer,762,660 +1724301600,Launchpad,3200,2480 +1724301600,Microsoft Update,1288,1003 +1724301600,NetBIOS-dgm,250,0 +1724301600,NTP,14010,4260 +1724301600,Odnoklassniki,3670,7454 +1724301600,Steam,1876,34225 +1724301600,Advanced Packaging Tool,38725,404806 +1724301600,HTTPS,246576,716906 +1724301600,SSL client,168483,456985 +1724301600,Ubuntu Update Manager,30050,397412 +1724301600,Microsoft,693,8036 +1724301600,Yandex,45853,108428 +1724301600,Ubuntu,6751,6289 +1724301600,Microsoft CryptoAPI,2435,1968 +1724301600,Microsoft WNS,693,8036 +1724301600,Google Play,15367,11327 +1724301600,ICMP,2386,0 +1724301600,Edge Chromium,4109,10191 +1724301600,Grammarly,2203,7888 +1724301600,DNS over TLS,2356,9540 +1724301600,DNS over HTTPS,10538,37823 +1724301900,Windows Live,77742,18462 +1724301900,HTTPS,82665,20098 +1724301900,SSL client,82665,20098 +1724301900,Microsoft,4923,1636 +1724301900,__unknown,48839,49181 +1724301900,Dropbox,199549,24211 +1724301900,HTTPS,199549,24211 +1724301900,SSL client,199549,24211 +1724301900,HTTPS,21494,18128 +1724301900,SSL client,21494,18128 +1724301900,Google Play,21494,18128 +1724301900,__unknown,8187,10734 +1724301900,Dropbox,2117,5735 +1724301900,HTTPS,96472,104240 +1724301900,SSL client,22879,39165 +1724301900,Microsoft,4271,7331 +1724301900,Mail.Ru,6765,6234 +1724301900,Google Play,5783,2709 +1724301900,Office 365,1749,7788 +1724301900,GISMETEO,2194,9368 +1724301900,__unknown,21623,30045 +1724301900,Bing,3827,6422 +1724301900,Dropbox,4574,6540 +1724301900,Google APIs,3037,7163 +1724301900,Google,61372,79740 +1724301900,Microsoft Update,123306,296191 +1724301900,HTTPS,862017,1180914 +1724301900,iCloud,13199,34427 +1724301900,SSL client,619904,946568 +1724301900,Microsoft,156700,178374 +1724301900,Mail.Ru,144664,138345 +1724301900,Siri,3685,6089 +1724301900,Yandex,59392,137020 +1724301900,Google Play,36826,15674 +1724301900,Exchange Online,1138,8065 +1724301900,Office 365,8184,32518 +1724301900,DNS over HTTPS,1589,5610 +1724301900,__unknown,215,225 +1724301900,ICMP,1558,0 +1724301900,__unknown,2412,69688 +1724301900,__unknown,716,2123 +1724301900,ICMP,3462,0 +1724301900,CoAP,2940,2160 +1724301900,__unknown,819,552 +1724301900,Gmail,14760,11103 +1724301900,HTTPS,29523,98083 +1724301900,SSL client,14760,11103 +1724301900,__unknown,336283,350116 +1724301900,BitTorrent,310,496 +1724301900,DHCPv6,163,0 +1724301900,Google APIs,2144,7209 +1724301900,Google,38480,72197 +1724301900,DNS,15500,0 +1724301900,NTP,37890,8640 +1724301900,VKontakte,2804,6097 +1724301900,Odnoklassniki,2609,7423 +1724301900,HTTPS,86800,203258 +1724301900,SSL client,47170,93596 +1724301900,Yandex,1133,670 +1724301900,ICMP,5086,0 +1724301900,DNS over HTTPS,13049,34634 +1724301900,__unknown,263074,261816 +1724301900,Google APIs,21250,890364 +1724301900,Google,80209,231040 +1724301900,Chrome,607,664 +1724301900,DNS,46156,46237 +1724301900,HTTP,71549,445002 +1724301900,Launchpad,3200,2480 +1724301900,NetBIOS-dgm,243,0 +1724301900,NTP,900,900 +1724301900,SSL,737,7092 +1724301900,STUN,1230,1110 +1724301900,VKontakte,2563,5671 +1724301900,Odnoklassniki,3699,2377 +1724301900,Advanced Packaging Tool,43767,397936 +1724301900,HTTPS,246741,1494975 +1724301900,SSL client,135519,1195056 +1724301900,Ubuntu Update Manager,35775,391144 +1724301900,Yandex,20372,47279 +1724301900,Ubuntu,6492,6148 +1724301900,Microsoft CryptoAPI,1174,1006 +1724301900,Microsoft NCSI,514,487 +1724301900,Google Hangouts,737,7092 +1724301900,ICMP,2312,0 +1724301900,Google Sign in,4531,8145 +1724301900,Edge Chromium,5163,16770 +1724301900,Grammarly,2143,7669 +1724301900,DNS over HTTPS,7636,22628 +1724302199,Apple Mail,2748,7586 +1724302199,Gmail,21895,32189 +1724302199,IMAPS,24643,39775 +1724302199,SSL client,24643,39775 +1724302199,HTTPS,45819,63952 +1724302199,SSL client,45819,63952 +1724302199,Telegram,45819,63952 +1724302199,Discard,30160,23177 +1724302199,Windows Live,28338,7288 +1724302199,HTTPS,28338,7288 +1724302199,SSL client,28338,7288 +1724302199,__unknown,938,360 +1724302199,HTTPS,43399,10540 +1724302199,SSL client,43399,10540 +1724302199,Dropbox Download,43399,10540 +1724302199,__unknown,360,7635 +1724302199,HTTPS,2255,1674 +1724302199,Dropbox,1638,1266 +1724302199,HTTPS,98602,142381 +1724302199,Mozilla,2117,5151 +1724302199,SSL client,32203,59746 +1724302199,Microsoft,6219,11172 +1724302199,Mail.Ru,8943,6605 +1724302199,Yandex,2433,1543 +1724302199,Google Play,5221,6280 +1724302199,Office 365,3498,18362 +1724302199,GISMETEO,2134,9367 +1724302199,__unknown,27681,9016 +1724302199,Bing,1869,9268 +1724302199,Google,23417,30245 +1724302199,MSN,3386,9505 +1724302199,Windows Live,26952,11325 +1724302199,HTTP,1009,1401 +1724302199,HTTPS,583152,8382098 +1724302199,Mozilla,4338,11122 +1724302199,Avast,1260,9627 +1724302199,SSL client,378236,547474 +1724302199,Samsung,16984,7741 +1724302199,Microsoft,52482,80208 +1724302199,VeriSign,1009,1401 +1724302199,Mail.Ru,148333,152368 +1724302199,Yandex,51062,90036 +1724302199,Microsoft CryptoAPI,1009,1401 +1724302199,uTorrent,21799,39095 +1724302199,Exchange Online,1452,6471 +1724302199,Office 365,6828,63814 +1724302199,DNS over HTTPS,98527,205997 +1724302199,HTTPS,56947,26587 +1724302199,__unknown,0,1390 +1724302199,__unknown,10849,33573 +1724302199,Google,15408,15955 +1724302199,HTTPS,15408,15955 +1724302199,SSL client,15408,15955 +1724302199,__unknown,94,594 +1724302199,Google,49417,36530 +1724302199,HTTPS,49417,36530 +1724302199,SSL client,49417,36530 +1724302199,__unknown,3893,12128 +1724302199,Windows Live,2322,13178 +1724302199,HTTPS,6775,20309 +1724302199,SSL client,2322,13178 +1724302199,__unknown,1293,2006 +1724302199,Google,14179,30559 +1724302199,HTTPS,16513,36955 +1724302199,SSL client,16513,36955 +1724302199,DNS over HTTPS,2334,6396 +1724302199,__unknown,234689,282635 +1724302199,BitTorrent,463,694 +1724302199,DHCPv6,978,0 +1724302199,Google APIs,2824,8721 +1724302199,Google Drive,5983,10070 +1724302199,Google,216776,87369 +1724302199,BitTorrent tracker,153,198 +1724302199,DNS,21586,0 +1724302199,Gmail,31698,56407 +1724302199,HTTP,1149,966 +1724302199,NTP,450,450 +1724302199,STUN,4942,6494325 +1724302199,Odnoklassniki,2609,7484 +1724302199,HTTPS,317431,339881 +1724302199,Sourceforge,6553,15528 +1724302199,SSL client,270927,201277 +1724302199,MDNS,364,0 +1724302199,Microsoft CryptoAPI,1149,966 +1724302199,ICMP,6457,1980 +1724302199,Grammarly,4484,15698 +1724302199,DNS over HTTPS,5660,18000 +1724302199,CoAP,1372,1008 +1724302199,__unknown,232988,374237 +1724302199,DHCPv6,163,0 +1724302199,Google,14107,27774 +1724302199,Kaspersky,608,607 +1724302199,Windows Live,4884,26356 +1724302199,Chrome,1275,743 +1724302199,DNS,63387,48567 +1724302199,Gmail,7097,4264 +1724302199,HTTP,91387,966237 +1724302199,Launchpad,3200,2414 +1724302199,Microsoft Update,1934,1520 +1724302199,NTP,39330,10080 +1724302199,Advanced Packaging Tool,48551,902844 +1724302199,HTTPS,155105,432750 +1724302199,Spotify,1970,4674 +1724302199,Avast,437,1261 +1724302199,SSL client,39311,88527 +1724302199,Ubuntu Update Manager,39241,894950 +1724302199,Yandex,13701,36436 +1724302199,Ubuntu,8445,7847 +1724302199,Microsoft CryptoAPI,3083,2486 +1724302199,Microsoft NCSI,1100,1106 +1724302199,ICMP,6310,0 +1724302199,Edge Chromium,7331,22810 +1724302199,DNS over HTTPS,7497,28314 +1724302501,HTTPS,46481,122148 +1724302501,SSL client,46481,122148 +1724302501,Yandex,46481,122148 +1724302501,HTTPS,21795,41743 +1724302501,SSL client,21795,41743 +1724302501,Yandex,21795,41743 +1724302501,Google,63971,62571 +1724302501,HTTPS,63971,62571 +1724302501,SSL client,63971,62571 +1724302501,DNS over HTTPS,212065,477264 +1724302501,HTTPS,75838,34835 +1724302501,Dropbox,124889,21163 +1724302501,HTTPS,182441,84849 +1724302501,SSL client,179358,83199 +1724302501,Telegram,54469,62036 +1724302501,HTTPS,9790,7450 +1724302501,ICMP,21730,0 +1724302501,Bing,3489,6546 +1724302501,Dropbox,1786,5626 +1724302501,HTTP,486,485 +1724302501,Microsoft Update,486,485 +1724302501,Windows Update,486,485 +1724302501,HTTPS,73021,179530 +1724302501,Mozilla,2141,5459 +1724302501,SSL client,32210,91360 +1724302501,Microsoft,17327,52123 +1724302501,Mail.Ru,3056,5535 +1724302501,GISMETEO,2134,9303 +1724302501,Grammarly,2277,6768 +1724302501,__unknown,150176,200945 +1724302501,Dropbox,3776,6115 +1724302501,Google APIs,3117,2248 +1724302501,HTTP,5126,4955 +1724302501,Microsoft Update,1502,2168 +1724302501,Steam,32703,47386 +1724302501,HTTPS,711573,1254924 +1724302501,iCloud,2137,11439 +1724302501,Avast,5014,18294 +1724302501,SSL client,375336,645198 +1724302501,Microsoft,60243,294044 +1724302501,Mail.Ru,141456,152381 +1724302501,Yandex,119794,92131 +1724302501,Ubuntu,1151,6148 +1724302501,Nvidia,1332,5631 +1724302501,Google Update,3117,2248 +1724302501,Microsoft CryptoAPI,1502,2168 +1724302501,Microsoft Windows Live Services Authentication,7730,11629 +1724302501,DNS over HTTPS,2960,9675 +1724302501,HTTPS,23046,39295 +1724302501,__unknown,773,974 +1724302501,__unknown,53557,35897 +1724302501,__unknown,2035,956 +1724302501,HTTPS,8020,11508 +1724302501,ICMP,8554,0 +1724302501,Google Drive,27358,16065 +1724302501,HTTPS,34016,29362 +1724302501,SSL client,27358,16065 +1724302501,ICMP,430,0 +1724302501,__unknown,364530,763488 +1724302501,BitTorrent,310,496 +1724302501,Google APIs,2060,7664 +1724302501,Google Drive,12318,42318 +1724302501,Google,73166,90294 +1724302501,Skype Auth,1192,860 +1724302501,DNS,13623,0 +1724302501,NetBIOS-dgm,250,0 +1724302501,NTP,1800,1800 +1724302501,Skype,1192,860 +1724302501,Odnoklassniki,2609,7422 +1724302501,HTTPS,197484,293687 +1724302501,SSL client,92444,155585 +1724302501,ICMP,7227,3120 +1724302501,Grammarly,2291,7887 +1724302501,DNS over HTTPS,12492,35991 +1724302501,__unknown,290594,442362 +1724302501,DHCPv6,978,0 +1724302501,Google,47401,128312 +1724302501,Google Translate,5055,10626 +1724302501,Windows Live,2442,13178 +1724302501,DNS,47203,44831 +1724302501,HTTP,102421,577429 +1724302501,Internet Explorer,762,660 +1724302501,Launchpad,2560,1984 +1724302501,Microsoft Update,1959,1771 +1724302501,NTP,13470,3720 +1724302501,Odnoklassniki,3790,7529 +1724302501,Steam,2295,62622 +1724302501,Advanced Packaging Tool,43379,423706 +1724302501,HTTPS,151962,545528 +1724302501,SSL client,80903,215042 +1724302501,Ubuntu Update Manager,35979,417374 +1724302501,Microsoft,633,8036 +1724302501,Yandex,18119,52136 +1724302501,Ubuntu,6541,6184 +1724302501,Microsoft CryptoAPI,3133,2777 +1724302501,Microsoft WNS,633,8036 +1724302501,ICMP,1492,60 +1724302501,Google Sign in,4531,8062 +1724302501,Edge Chromium,9379,27689 +1724302501,DNS over HTTPS,16458,59886 +1724302800,__unknown,48012,125297 +1724302800,HTTPS,12311,31566 +1724302800,SSL client,12311,31566 +1724302800,Yandex,12311,31566 +1724302800,HTTPS,8159,12430 +1724302800,SSL client,8159,12430 +1724302800,Yandex,8159,12430 +1724302800,__unknown,1479,0 +1724302800,HTTPS,13096,11863 +1724302800,Google APIs,2027,7360 +1724302800,HTTPS,17079,31821 +1724302800,SSL client,2027,7360 +1724302800,__unknown,10655,5021 +1724302800,Google,8215,5011 +1724302800,HTTP,888,800 +1724302800,Microsoft Update,1611,5433 +1724302800,Skype,3032,9935 +1724302800,HTTPS,121045,197763 +1724302800,Apple sites,1744,6960 +1724302800,Mozilla,4449,10470 +1724302800,Avast,1320,9254 +1724302800,SSL client,58547,118148 +1724302800,Microsoft,20943,36554 +1724302800,Mail.Ru,8819,6605 +1724302800,Yandex,6340,18558 +1724302800,Microsoft CryptoAPI,888,800 +1724302800,GISMETEO,2074,9368 +1724302800,DNS over HTTPS,3544,10529 +1724302800,__unknown,249554,167566 +1724302800,Google,20555,30629 +1724302800,Dell,1111,4306 +1724302800,Gmail,2206,2270 +1724302800,HTTP,5852,8290 +1724302800,Microsoft Update,635,711 +1724302800,Advanced Packaging Tool,1096,1096 +1724302800,IMAPS,2206,2270 +1724302800,HTTPS,927822,1087733 +1724302800,iCloud,23177,37733 +1724302800,Avast,2016,11590 +1724302800,SSL client,823485,922036 +1724302800,Amazon Web Services,10367,220744 +1724302800,Microsoft,393509,147627 +1724302800,Mail.Ru,117350,109803 +1724302800,Yandex,212494,291779 +1724302800,Ubuntu,1096,1096 +1724302800,Microsoft CryptoAPI,871,2259 +1724302800,Office 365,871,2259 +1724302800,Microsoft Windows Live Services Authentication,28129,55592 +1724302800,Grammarly,12571,9963 +1724302800,DNS over HTTPS,877,4584 +1724302800,DNS over HTTPS,40202,87218 +1724302800,__unknown,188,229 +1724302800,HTTPS,8514,11505 +1724302800,SSL client,8514,11505 +1724302800,DNS over HTTPS,8514,11505 +1724302800,__unknown,3183,1824 +1724302800,STUN,1528554,20065882 +1724302800,HTTPS,3621,7806 +1724302800,SSL client,3621,7806 +1724302800,GitHub,3621,7806 +1724302800,DNS over HTTPS,6292,12980 +1724302800,__unknown,1969,9428 +1724302800,HTTPS,19308,24686 +1724302800,Spotify,2279,8268 +1724302800,Mozilla,2615,1816 +1724302800,SSL client,4894,10084 +1724302800,ICMP,18796,0 +1724302800,DNS over HTTPS,4232,12039 +1724302800,__unknown,473772,448954 +1724302800,BitTorrent,463,1033 +1724302800,DHCPv6,163,0 +1724302800,Google APIs,9902,19062 +1724302800,Google,15939,39102 +1724302800,BitTorrent tracker,153,537 +1724302800,DNS,21912,0 +1724302800,Gmail,12832,10514 +1724302800,HTTP,3617,3595 +1724302800,Microsoft Update,1377,1272 +1724302800,NetBIOS-dgm,243,0 +1724302800,NTP,1080,1080 +1724302800,STUN,2666,4262 +1724302800,VKontakte,2803,6036 +1724302800,Odnoklassniki,2609,7499 +1724302800,HTTPS,118799,186137 +1724302800,Mozilla,1996,4611 +1724302800,SSL client,53353,96912 +1724302800,Yandex,1071,5860 +1724302800,MDNS,1632,0 +1724302800,Microsoft CryptoAPI,3617,3595 +1724302800,ICMP,21671,0 +1724302800,ICMP for IPv6,540,0 +1724302800,IGMP,360,0 +1724302800,Google Sign in,6201,4228 +1724302800,DNS over HTTPS,5650,16891 +1724302800,__unknown,181277,213875 +1724302800,DHCPv6,978,0 +1724302800,Google Drive,7468,10152 +1724302800,Google,117593,2874168 +1724302800,Google Translate,3664,7566 +1724302800,DNS,46033,44193 +1724302800,Gmail,5654,8260 +1724302800,HTTP,69923,611771 +1724302800,iTunes,4465,5269 +1724302800,Launchpad,3200,2348 +1724302800,NTP,360,360 +1724302800,STUN,1860,3300 +1724302800,VKontakte,2356,4942 +1724302800,Advanced Packaging Tool,47998,558229 +1724302800,HTTPS,279500,3342081 +1724302800,Apple sites,7318,17238 +1724302800,SSL client,172000,3028721 +1724302800,Ubuntu Update Manager,40593,552099 +1724302800,Microsoft,633,8036 +1724302800,Yandex,24606,100821 +1724302800,Ubuntu,4630,4243 +1724302800,Microsoft CryptoAPI,1173,981 +1724302800,Microsoft WNS,633,8036 +1724302800,ICMP,2882,0 +1724302800,Telegram,1965,7377 +1724302800,Edge Chromium,8852,26309 +1724302800,Grammarly,2354,7913 +1724302800,DNS over TLS,2356,9540 +1724302800,DNS over HTTPS,4591,16775 +1724303100,ICMP,833820,834060 +1724303100,Google,210228,248240 +1724303100,HTTPS,434396,551358 +1724303100,SSL client,210228,248240 +1724303100,HTTPS,64852,73062 +1724303100,HTTPS,83716,358124 +1724303100,SSL client,83716,358124 +1724303100,Mail.Ru,79574,351802 +1724303100,Sharepoint Online,4142,6322 +1724303100,Dropbox,120325,20180 +1724303100,HTTPS,160485,25823 +1724303100,SSL client,160485,25823 +1724303100,Dropbox Download,40160,5643 +1724303100,HTTPS,3623,3703 +1724303100,__unknown,141589,128991 +1724303100,Google,8361,5252 +1724303100,HTTPS,195060,878483 +1724303100,Avast,1260,9063 +1724303100,SSL client,76688,798663 +1724303100,Microsoft,11281,33354 +1724303100,Mail.Ru,8851,6601 +1724303100,Yandex,44795,734794 +1724303100,GISMETEO,2140,9599 +1724303100,DNS over HTTPS,3262,10134 +1724303100,__unknown,728311,589475 +1724303100,Bing,2047,9390 +1724303100,Dropbox,8752,227258 +1724303100,Google APIs,2775,6902 +1724303100,HTTP,1930,1687 +1724303100,Microsoft Update,607147,286344 +1724303100,TeamViewer,1524,8893 +1724303100,Advanced Packaging Tool,1096,1096 +1724303100,HTTPS,1381931,6940430 +1724303100,Mozilla,5338,5767 +1724303100,Avast,3204,13949 +1724303100,SSL client,895660,831901 +1724303100,Microsoft,134003,89494 +1724303100,Mail.Ru,81790,94609 +1724303100,Yandex,31572,44311 +1724303100,Ubuntu,1096,1096 +1724303100,Office 365,9838,33355 +1724303100,Microsoft Windows Live Services Authentication,7670,11629 +1724303100,DNS over HTTPS,935,4585 +1724303100,HTTPS,62483,71331 +1724303100,SSL client,54349,61976 +1724303100,ICMP,4728,0 +1724303100,Telegram,54349,61976 +1724303100,__unknown,4035,12242 +1724303100,HTTPS,1133875,71426823 +1724303100,Apple sites,4044,21377 +1724303100,SSL client,1119714,71395591 +1724303100,Siri,7356,7058 +1724303100,Mac App Store,1108314,71367156 +1724303100,__unknown,971,4690 +1724303100,HTTPS,3844,2495 +1724303100,ICMP,2692,2520 +1724303100,__unknown,323925,335890 +1724303100,BitTorrent,310,496 +1724303100,DHCPv6,163,0 +1724303100,Google APIs,2512,7704 +1724303100,Google Drive,9554,10937 +1724303100,Google,68297,106166 +1724303100,DNS,19632,0 +1724303100,HTTP,2171,1730 +1724303100,Manolito,5318,6568 +1724303100,NetBIOS-dgm,250,0 +1724303100,NTP,36720,7470 +1724303100,STUN,1860,3300 +1724303100,VKontakte,2803,6146 +1724303100,HTTPS,124314,221089 +1724303100,SSL client,85414,135888 +1724303100,Microsoft CryptoAPI,2171,1730 +1724303100,ICMP,45422,120 +1724303100,DNS over HTTPS,4692,12760 +1724303100,__unknown,266566,251587 +1724303100,Google Drive,12112,21082 +1724303100,Google,31783,95380 +1724303100,QQ,1023,2523 +1724303100,DNS,46105,47681 +1724303100,HTTP,89392,1029448 +1724303100,iTunes,853,5875 +1724303100,Launchpad,4622,2488 +1724303100,Microsoft Update,5948,317378 +1724303100,NTP,90,90 +1724303100,STUN,1640,1480 +1724303100,VKontakte,2622,5725 +1724303100,Odnoklassniki,3790,7454 +1724303100,Advanced Packaging Tool,48660,648860 +1724303100,HTTPS,193013,833980 +1724303100,iCloud,6232,18152 +1724303100,SSL client,84504,510056 +1724303100,Ubuntu Update Manager,39198,642024 +1724303100,Yandex,24469,350008 +1724303100,GitHub,995,4879 +1724303100,Ubuntu,6181,5727 +1724303100,Microsoft CryptoAPI,3299,6407 +1724303100,Microsoft NCSI,865,974 +1724303100,ICMP,1234,60 +1724303100,Edge Chromium,9439,28326 +1724303100,Grammarly,2280,7888 +1724303100,DNS over HTTPS,14123,54653 +1724303400,ICMP,478860,478620 +1724303400,HTTPS,139215,80194 +1724303400,HTTPS,65048,72067 +1724303400,SSL client,65048,72067 +1724303400,Sharepoint Online,65048,72067 +1724303400,DNS over HTTPS,241825,540586 +1724303400,HTTPS,45855,63952 +1724303400,SSL client,45855,63952 +1724303400,Telegram,45855,63952 +1724303400,__unknown,1140,0 +1724303400,HTTPS,53723,68254 +1724303400,SSL client,53723,68254 +1724303400,Telegram,53723,68254 +1724303400,__unknown,360,7635 +1724303400,Dropbox,138187,21531 +1724303400,HTTPS,142260,24655 +1724303400,SSL client,138187,21531 +1724303400,HTTPS,2472,3923 +1724303400,__unknown,80270,51486 +1724303400,Google,8335,5380 +1724303400,Gmail,10900,36170 +1724303400,HTTPS,131177,266012 +1724303400,Apple sites,1686,5744 +1724303400,Avast,1254,9794 +1724303400,SSL client,87007,215115 +1724303400,Microsoft,52330,123904 +1724303400,Mail.Ru,12502,34123 +1724303400,__unknown,88993,286262 +1724303400,Google,2982,3194 +1724303400,SSL,1501,1392 +1724303400,HTTPS,348751,428182 +1724303400,SSL client,259663,308473 +1724303400,Amazon Web Services,3265,21602 +1724303400,CloudFront,6206,1153 +1724303400,Microsoft,53206,64285 +1724303400,Mail.Ru,111026,100257 +1724303400,Yandex,18097,36960 +1724303400,Microsoft Windows Live Services Authentication,50709,69582 +1724303400,Google Hangouts,1501,1392 +1724303400,Grammarly,12671,10048 +1724303400,DNS over HTTPS,242637,544599 +1724303400,HTTPS,53797,69790 +1724303400,SSL client,53797,69790 +1724303400,ICMP,13120,0 +1724303400,Telegram,53797,69790 +1724303400,__unknown,215,225 +1724303400,__unknown,161435,201048 +1724303400,ICMP,1640,0 +1724303400,CoAP,3724,2664 +1724303400,__unknown,624,424 +1724303400,ICMP,658,0 +1724303400,__unknown,3322,7898 +1724303400,Google,22814,36800 +1724303400,HTTPS,58739,88215 +1724303400,SSL client,22814,36800 +1724303400,ICMP,1066,0 +1724303400,DNS over HTTPS,3963,11554 +1724303400,__unknown,452144,505729 +1724303400,BitTorrent,463,694 +1724303400,Google APIs,40882,9096 +1724303400,Google Drive,14540,25343 +1724303400,Google,24518,54833 +1724303400,BitTorrent tracker,153,198 +1724303400,DNS,20599,0 +1724303400,Gmail,22684,18096 +1724303400,HTTP,2021,3383 +1724303400,Microsoft Update,641,502 +1724303400,NTP,630,630 +1724303400,STUN,1860,3300 +1724303400,HTTPS,156896,548391 +1724303400,SSL client,107559,129508 +1724303400,Microsoft,922,7532 +1724303400,VeriSign,566,2141 +1724303400,GitHub,1415,5341 +1724303400,Microsoft CryptoAPI,2021,3383 +1724303400,Google Play,2598,9267 +1724303400,ICMP,9258,120 +1724303400,DNS over HTTPS,11798,35256 +1724303400,__unknown,239367,953115 +1724303400,DHCPv6,1141,0 +1724303400,Google APIs,2464,8121 +1724303400,Google,18514,32750 +1724303400,DNS,39586,37617 +1724303400,Gmail,7097,4142 +1724303400,HTTP,80300,744697 +1724303400,Internet Explorer,6224,2178 +1724303400,Launchpad,3200,2414 +1724303400,Microsoft Update,981,827 +1724303400,NetBIOS-dgm,243,0 +1724303400,NTP,720,720 +1724303400,SSL,1722,11084 +1724303400,Odnoklassniki,1911,1530 +1724303400,Advanced Packaging Tool,49431,686848 +1724303400,HTTPS,373117,372479 +1724303400,APNS,925,3992 +1724303400,iCloud,1057,5254 +1724303400,Mozilla,1998,4535 +1724303400,SSL client,46540,97716 +1724303400,Ubuntu Update Manager,38899,677858 +1724303400,Microsoft,1266,16072 +1724303400,Yandex,20354,41948 +1724303400,Ubuntu,8607,7955 +1724303400,Microsoft CryptoAPI,1541,1289 +1724303400,Microsoft NCSI,931,1040 +1724303400,Microsoft WNS,1266,16072 +1724303400,Google Hangouts,797,7092 +1724303400,ICMP,8884,240 +1724303400,Edge Chromium,5690,18151 +1724303400,DNS over HTTPS,2188,5011 +1724303700,__unknown,1484,2060 +1724303700,HTTPS,151832,116747 +1724303700,Windows Live,38046,13849 +1724303700,HTTPS,38046,13849 +1724303700,SSL client,38046,13849 +1724303700,HTTPS,87658,99811 +1724303700,SSL client,54409,61976 +1724303700,Telegram,54409,61976 +1724303700,__unknown,938,360 +1724303700,HTTPS,6484,6170 +1724303700,DNS over HTTPS,5474,14349 +1724303700,__unknown,4243,66 +1724303700,Google,8419,5139 +1724303700,HTTP,526,443 +1724303700,HTTPS,79137,97387 +1724303700,SSL client,25354,36753 +1724303700,Microsoft,12242,23938 +1724303700,Yandex,4693,7676 +1724303700,Microsoft CryptoAPI,526,443 +1724303700,__unknown,34252,10327 +1724303700,Dropbox,1707,1519 +1724303700,Google,2097337,833918 +1724303700,MSN,5459,22254 +1724303700,HTTP,1621,1490 +1724303700,Microsoft Update,74641,68896 +1724303700,Advanced Packaging Tool,1621,1490 +1724303700,HTTPS,2864515,1645731 +1724303700,Mozilla,4744,10524 +1724303700,Avast,1254,8590 +1724303700,Opera,9691,6012 +1724303700,SSL client,2484742,1313765 +1724303700,Ubuntu Update Manager,1621,1490 +1724303700,Microsoft,144278,91348 +1724303700,Mail.Ru,85547,81921 +1724303700,Yandex,17290,37553 +1724303700,Office 365,12983,65905 +1724303700,Microsoft Windows Live Services Authentication,34480,87352 +1724303700,Google Sign in,5022,3985 +1724303700,DNS over HTTPS,995,4584 +1724303700,ICMP,2752,0 +1724303700,HTTPS,11077,21541 +1724303700,__unknown,2039,1092 +1724303700,HTTPS,56498,112334 +1724303700,Spotify,2053,8112 +1724303700,Apple sites,1576,8479 +1724303700,SSL client,6191,23451 +1724303700,GitHub,2562,6860 +1724303700,ICMP,8240,7380 +1724303700,DNS over HTTPS,9543,25681 +1724303700,__unknown,379373,632786 +1724303700,BitTorrent,310,496 +1724303700,Google APIs,34212,26518 +1724303700,Google Drive,10070,11292 +1724303700,Google,39048,84275 +1724303700,DNS,14979,0 +1724303700,Gmail,279149,117132 +1724303700,HTTP,646,500 +1724303700,Microsoft Update,646,500 +1724303700,NTP,25140,5640 +1724303700,STUN,1860,3300 +1724303700,HTTPS,411108,322236 +1724303700,SSL client,366115,247690 +1724303700,Microsoft CryptoAPI,646,500 +1724303700,Scorecard Research,3636,8473 +1724303700,ICMP,36676,300 +1724303700,ICMP for IPv6,70,0 +1724303700,DNS over HTTPS,16099,43114 +1724303700,CoAP,1568,1152 +1724303700,__unknown,378705,602631 +1724303700,DHCPv6,978,0 +1724303700,Google APIs,91958,180806 +1724303700,Google Drive,16224,40600 +1724303700,Google,50468,88158 +1724303700,DNS,49868,45772 +1724303700,HTTP,77524,729551 +1724303700,Launchpad,3200,2348 +1724303700,Microsoft Update,2595,2167 +1724303700,NetBIOS-dgm,250,0 +1724303700,NTP,1710,1710 +1724303700,Odnoklassniki,3759,2717 +1724303700,Advanced Packaging Tool,44565,665920 +1724303700,HTTPS,255868,625156 +1724303700,Mozilla,2758,1739 +1724303700,SSL client,181412,350923 +1724303700,Ubuntu Update Manager,37795,660356 +1724303700,Microsoft,2876,6988 +1724303700,VeriSign,565,2140 +1724303700,Yandex,14335,36278 +1724303700,Ubuntu,7180,6896 +1724303700,Microsoft CryptoAPI,8658,8977 +1724303700,Office 365,1882,13898 +1724303700,ICMP,4892,300 +1724303700,ICMP for IPv6,70,0 +1724303700,Edge Chromium,4109,14051 +1724303700,DNS over HTTPS,6368,19861 +1724304000,__unknown,442,996 +1724304000,__unknown,1080,0 +1724304000,__unknown,206204,27288 +1724304000,HTTPS,3268,2095 +1724304000,HTTPS,6782,7058 +1724304000,__unknown,4243,66 +1724304000,Google,668928,255516 +1724304000,Gmail,12802,12635 +1724304000,TeamViewer,1518,8847 +1724304000,HTTPS,787841,401576 +1724304000,Avast,1254,9042 +1724304000,SSL client,733015,346821 +1724304000,Microsoft,15052,8944 +1724304000,Mail.Ru,15084,12444 +1724304000,Yandex,14358,26354 +1724304000,Office 365,4019,13039 +1724304000,__unknown,44739,1728 +1724304000,Bing,3458,6479 +1724304000,Google APIs,10388,23737 +1724304000,HTTP,4340,10310 +1724304000,Skype,5145,94236 +1724304000,HTTPS,309526,615193 +1724304000,Apple sites,1796,4535 +1724304000,Avast,1254,8236 +1724304000,SSL client,166575,409239 +1724304000,Microsoft,16267,42493 +1724304000,Mail.Ru,66256,58943 +1724304000,Yandex,32113,55329 +1724304000,Google Update,4340,10310 +1724304000,Apple Maps,2678,6259 +1724304000,Office 365,6475,22957 +1724304000,Microsoft Windows Live Services Authentication,16127,23238 +1724304000,Google Inbox,7296,69056 +1724304000,DNS over HTTPS,2884,11904 +1724304000,HTTPS,53723,69568 +1724304000,SSL client,53723,69568 +1724304000,Telegram,53723,69568 +1724304000,Google,44134,34806 +1724304000,HTTPS,44134,34806 +1724304000,SSL client,44134,34806 +1724304000,__unknown,19633,102237 +1724304000,Google,20198,21529 +1724304000,HTTP,197016,140259 +1724304000,HTTPS,1093158,67327909 +1724304000,Apple sites,1615,8899 +1724304000,SSL client,1086831,67307984 +1724304000,Mac App Store,1065018,67277556 +1724304000,ICMP,6396,0 +1724304000,__unknown,3852,20374 +1724304000,SSL,2424,13771 +1724304000,HTTPS,8171,75000 +1724304000,ICMP,3854,0 +1724304000,DNS over HTTPS,4257,12194 +1724304000,__unknown,360006,2780017 +1724304000,BitTorrent,463,496 +1724304000,DHCPv6,163,0 +1724304000,Google APIs,55692,34331 +1724304000,Google,51009,116303 +1724304000,BitTorrent tracker,153,0 +1724304000,DNS,20354,0 +1724304000,Gmail,21912,19259 +1724304000,HTTP,1294,1076 +1724304000,Microsoft Update,641,507 +1724304000,NTP,540,540 +1724304000,HTTPS,171559,294390 +1724304000,Mozilla,2615,1712 +1724304000,SSL client,140848,189585 +1724304000,Yandex,1071,5914 +1724304000,Microsoft CryptoAPI,1294,1076 +1724304000,ICMP,12816,300 +1724304000,Google Sign in,6257,4054 +1724304000,Grammarly,2292,8012 +1724304000,DNS over HTTPS,5182,16255 +1724304000,__unknown,610340,311827 +1724304000,Google APIs,4568,13828 +1724304000,Google,66468,85523 +1724304000,DNS,39093,38345 +1724304000,Gmail,17589,16971 +1724304000,HTTP,69528,706069 +1724304000,Launchpad,3200,2348 +1724304000,Microsoft Update,1317,1148 +1724304000,NetBIOS-ns,92,0 +1724304000,NTP,180,180 +1724304000,SSL,855,7033 +1724304000,STUN,1922,3300 +1724304000,Odnoklassniki,1848,1187 +1724304000,Advanced Packaging Tool,49319,661229 +1724304000,HTTPS,229016,477457 +1724304000,SSL client,105955,185692 +1724304000,Ubuntu Update Manager,38883,652311 +1724304000,Microsoft,693,8036 +1724304000,Yandex,11992,51706 +1724304000,Ubuntu,9014,8669 +1724304000,Microsoft CryptoAPI,1317,1148 +1724304000,Microsoft NCSI,925,974 +1724304000,Microsoft WNS,693,8036 +1724304000,Apple Maps,4374,6614 +1724304000,Google Hangouts,855,7033 +1724304000,ICMP,1951,0 +1724304000,Telegram,4753,3587 +1724304000,Edge Chromium,4576,14765 +1724304000,DNS over TLS,4580,19082 +1724304000,DNS over HTTPS,10850,41294 +1724304300,HTTPS,54262,70630 +1724304300,SSL client,54262,70630 +1724304300,Telegram,54262,70630 +1724304300,__unknown,122849,21619 +1724304300,HTTPS,19694,32198 +1724304300,HTTPS,20315,22651 +1724304300,__unknown,654373,206201 +1724304300,Google APIs,4664,12594 +1724304300,HTTPS,63635,107383 +1724304300,Mozilla,5935,5699 +1724304300,Avast,1254,8220 +1724304300,SSL client,32182,70804 +1724304300,Microsoft,4144,14638 +1724304300,Mail.Ru,10626,11672 +1724304300,Sharepoint Online,3365,8619 +1724304300,GISMETEO,2194,9362 +1724304300,__unknown,10186,9820 +1724304300,Bing,3523,6547 +1724304300,Dropbox,1300,4601 +1724304300,Google APIs,2676,6148 +1724304300,Google,404973,420712 +1724304300,HTTP,6304,13012 +1724304300,Microsoft Update,2726,5658 +1724304300,TwitchTV,6510,7063 +1724304300,Advanced Packaging Tool,527,530 +1724304300,HTTPS,645046,807437 +1724304300,SSL client,528630,630101 +1724304300,Amazon Web Services,3325,21602 +1724304300,CloudFront,2325,1747 +1724304300,Microsoft,16603,38202 +1724304300,Mail.Ru,54439,48454 +1724304300,Yandex,17428,32745 +1724304300,GitHub,1652,5976 +1724304300,Ubuntu,527,530 +1724304300,Google Update,4331,10310 +1724304300,Microsoft CryptoAPI,1446,2172 +1724304300,Apple Maps,1962,5179 +1724304300,Office 365,5359,23364 +1724304300,Weborama,2214,5466 +1724304300,Google Sign in,5023,3988 +1724304300,DNS over HTTPS,1001,4981 +1724304300,HTTPS,31076,29860 +1724304300,STUN,2969306,51697992 +1724304300,HTTPS,9518,13462 +1724304300,SSL client,9518,13462 +1724304300,DNS over HTTPS,9518,13462 +1724304300,ICMP,43560,43560 +1724304300,Google,332513,5933032 +1724304300,HTTPS,340775,5942608 +1724304300,SSL client,332513,5933032 +1724304300,__unknown,1063,496 +1724304300,HTTPS,3309,5401 +1724304300,__unknown,3504,9948 +1724304300,Google,4965,10304 +1724304300,HTTP,1121,491 +1724304300,HTTPS,8267,15780 +1724304300,SSL client,4965,10304 +1724304300,ICMP,1260,1260 +1724304300,__unknown,508923,725375 +1724304300,BitTorrent,310,496 +1724304300,Google APIs,3618,7809 +1724304300,Google,24376,66770 +1724304300,Google Translate,3664,7387 +1724304300,DNS,16582,0 +1724304300,NetBIOS-dgm,243,0 +1724304300,NTP,26580,7080 +1724304300,VKontakte,2804,6096 +1724304300,Odnoklassniki,2609,7499 +1724304300,HTTPS,137322,292804 +1724304300,SSL client,37071,95561 +1724304300,ICMP,13990,0 +1724304300,DNS over HTTPS,11172,33745 +1724304300,__unknown,395830,331051 +1724304300,BITS,49280,1610549 +1724304300,DHCPv6,1141,0 +1724304300,Google APIs,16714,251914 +1724304300,Google,31997,61973 +1724304300,Windows Live,1335,6583 +1724304300,Chrome,565,484 +1724304300,DNS,39873,40280 +1724304300,HTTP,132283,2466311 +1724304300,Internet Explorer,822,660 +1724304300,Launchpad,3200,2348 +1724304300,Microsoft Update,646,506 +1724304300,NTP,1530,1530 +1724304300,Steam,823,7687 +1724304300,Advanced Packaging Tool,51490,790282 +1724304300,HTTPS,184494,684141 +1724304300,Avast,382,391 +1724304300,SSL client,66695,383188 +1724304300,Ubuntu Update Manager,36852,646082 +1724304300,Microsoft,49280,1610549 +1724304300,Yandex,15301,43603 +1724304300,Ubuntu,15772,165673 +1724304300,Microsoft CryptoAPI,3139,2539 +1724304300,ICMP,1134,0 +1724304300,Edge Chromium,8852,26336 +1724304300,Grammarly,2221,7887 +1724304300,DNS over HTTPS,11982,40781 +1724304600,Gmail,6888,14736 +1724304600,IMAPS,6888,14736 +1724304600,SSL client,6888,14736 +1724304600,HTTPS,22812,10089 +1724304600,HTTPS,68664,299065 +1724304600,SSL client,68664,299065 +1724304600,Microsoft,11694,225887 +1724304600,Telegram,54135,65985 +1724304600,Microsoft Teams,2835,7193 +1724304600,HTTPS,9303,11988 +1724304600,__unknown,12422,11412 +1724304600,Dropbox,2817,4451 +1724304600,HTTP,1095,1286 +1724304600,TwitchTV,5595,7089 +1724304600,HTTPS,72518,98746 +1724304600,Avast,2376,19056 +1724304600,SSL client,37528,72574 +1724304600,Microsoft,6282,18375 +1724304600,Mail.Ru,18198,13946 +1724304600,Microsoft CryptoAPI,588,756 +1724304600,GISMETEO,2260,9657 +1724304600,__unknown,98287,22476 +1724304600,Bing,2048,9269 +1724304600,Dropbox,1729,1358 +1724304600,MSN,3382,9504 +1724304600,Dell,1111,4307 +1724304600,HTTP,5963,7264 +1724304600,Launchpad,574,422 +1724304600,Skype,1909,87327 +1724304600,Advanced Packaging Tool,3658,3573 +1724304600,HTTPS,299172,590782 +1724304600,Avast,2376,18919 +1724304600,SSL client,179341,384492 +1724304600,Ubuntu Update Manager,2557,2621 +1724304600,Microsoft,24008,58376 +1724304600,Mail.Ru,80853,72195 +1724304600,Yandex,8561,21872 +1724304600,Ubuntu,1546,1581 +1724304600,Apple Maps,2482,52766 +1724304600,Rambler,15548,8375 +1724304600,Office 365,15492,54683 +1724304600,Microsoft Windows Live Services Authentication,8314,21482 +1724304600,Malwarebytes,1469,6886 +1724304600,Grammarly,12541,9939 +1724304600,DNS over HTTPS,11521,38396 +1724304600,__unknown,188,229 +1724304600,__unknown,58892,38119 +1724304600,HTTPS,4155,8402 +1724304600,SSL client,4155,8402 +1724304600,GitHub,4155,8402 +1724304600,__unknown,1404,860 +1724304600,DNS over HTTPS,6346,13160 +1724304600,__unknown,4600,22358 +1724304600,Gmail,14458,11766 +1724304600,HTTPS,19938,25295 +1724304600,Spotify,2119,8112 +1724304600,SSL client,16577,19878 +1724304600,ICMP,9990,9180 +1724304600,DNS over HTTPS,4317,12347 +1724304600,__unknown,467724,468902 +1724304600,BitTorrent,463,496 +1724304600,Google APIs,22168,45255 +1724304600,Google,27040,53086 +1724304600,Google Translate,3664,7386 +1724304600,BitTorrent tracker,153,0 +1724304600,DNS,18421,0 +1724304600,Gmail,15456,35546 +1724304600,HTTP,1207,2643 +1724304600,Microsoft Update,641,502 +1724304600,NetBIOS-dgm,250,0 +1724304600,NTP,25050,5550 +1724304600,TFTP,60,0 +1724304600,HTTPS,122200,213632 +1724304600,SSL client,70620,149161 +1724304600,VeriSign,566,2141 +1724304600,Microsoft CryptoAPI,1207,2643 +1724304600,ICMP,6868,600 +1724304600,ICMP for IPv6,70,0 +1724304600,Grammarly,2292,7888 +1724304600,DNS over HTTPS,8379,25632 +1724304600,__unknown,250467,212862 +1724304600,BITS,1770,14469 +1724304600,DHCPv6,978,0 +1724304600,Google APIs,3341,6939 +1724304600,Google Drive,7405,10526 +1724304600,Google,28151,51833 +1724304600,Chrome,7501,6490 +1724304600,DNS,47997,43042 +1724304600,Gmail,279446,121257 +1724304600,HTTP,73541,491429 +1724304600,Launchpad,3200,2348 +1724304600,Microsoft Update,606,501 +1724304600,NetBIOS-ns,276,0 +1724304600,NTP,1890,1890 +1724304600,Advanced Packaging Tool,42442,424830 +1724304600,HTTPS,410277,503081 +1724304600,Apple sites,2346,54583 +1724304600,SSL client,334923,278926 +1724304600,Ubuntu Update Manager,34354,418098 +1724304600,Microsoft,633,8036 +1724304600,Yandex,12675,31037 +1724304600,MDNS,210,0 +1724304600,Ubuntu,6311,5981 +1724304600,Microsoft CryptoAPI,1166,964 +1724304600,Microsoft WNS,633,8036 +1724304600,Office 365,2838,16425 +1724304600,ICMP,1714,0 +1724304600,Telegram,3222,14363 +1724304600,Edge Chromium,4516,14181 +1724304600,Grammarly,2240,7889 +1724304600,DNS over HTTPS,13659,51364 +1724304900,__unknown,170502,92218 +1724304900,__unknown,1244,1838 +1724304900,__unknown,2956,5004 +1724304900,HTTPS,53789,63952 +1724304900,SSL client,53789,63952 +1724304900,Telegram,53789,63952 +1724304900,__unknown,48905,56717 +1724304900,Dropbox,136719,20766 +1724304900,Google APIs,2362,6365 +1724304900,HTTPS,180747,39008 +1724304900,SSL client,180747,39008 +1724304900,Google Play,1506,6003 +1724304900,Dropbox Download,40160,5874 +1724304900,Google APIs,4174,14548 +1724304900,HTTPS,54365,54343 +1724304900,SSL client,45571,45972 +1724304900,Google Play,41397,31424 +1724304900,__unknown,40214,52908 +1724304900,Google,5450,18759 +1724304900,HTTPS,62666,119860 +1724304900,iCloud,5340,12329 +1724304900,Mozilla,1450,5091 +1724304900,Avast,1254,10162 +1724304900,SSL client,29184,74911 +1724304900,Microsoft,5513,10973 +1724304900,Mail.Ru,5364,5539 +1724304900,Yandex,2553,2397 +1724304900,GISMETEO,2260,9661 +1724304900,__unknown,98126,83858 +1724304900,Bing,3147,6517 +1724304900,Google APIs,193013482,4130742 +1724304900,MSN,3286,9509 +1724304900,HTTP,2028,1488 +1724304900,Microsoft Update,55854,41802 +1724304900,TwitchTV,5433,7250 +1724304900,Advanced Packaging Tool,1501,1428 +1724304900,HTTPS,193534653,4855661 +1724304900,Apple sites,1695,15960 +1724304900,iCloud,3656,12391 +1724304900,Mozilla,2361,4739 +1724304900,Avast,1254,9426 +1724304900,SSL client,193442677,4740285 +1724304900,Amazon Web Services,3445,21602 +1724304900,Ubuntu Update Manager,1501,1428 +1724304900,Microsoft,91245,118488 +1724304900,Mail.Ru,82184,73121 +1724304900,Yandex,156688,75301 +1724304900,GitHub,1592,5976 +1724304900,Microsoft CryptoAPI,527,60 +1724304900,Exchange Online,2537,14532 +1724304900,Office 365,6424,171034 +1724304900,Microsoft Windows Live Services Authentication,8394,21895 +1724304900,DNS over HTTPS,7357,33099 +1724304900,ICMP,3096,0 +1724304900,__unknown,1320,24370 +1724304900,ICMP,5752,4440 +1724304900,__unknown,12554,25367 +1724304900,ICMP,9870,0 +1724304900,__unknown,7109,16056 +1724304900,HTTPS,10567,13294 +1724304900,ICMP,574,0 +1724304900,__unknown,294077,367363 +1724304900,BitTorrent,310,496 +1724304900,DHCPv6,163,0 +1724304900,Google APIs,2768,8387 +1724304900,Google,50480,123648 +1724304900,DNS,17875,0 +1724304900,Gmail,8556,15393 +1724304900,NetBIOS-dgm,243,0 +1724304900,NTP,12660,2910 +1724304900,HTTPS,115053,279912 +1724304900,SSL client,61804,147428 +1724304900,Apple Maps,2716,5993 +1724304900,ICMP,6564,0 +1724304900,DNS over HTTPS,5420,16619 +1724304900,__unknown,308665,263662 +1724304900,Google,22248,35707 +1724304900,Chrome,4520,3872 +1724304900,DNS,48862,48984 +1724304900,HTTP,72531,679614 +1724304900,Launchpad,3200,2414 +1724304900,NTP,1530,1530 +1724304900,Advanced Packaging Tool,43689,630375 +1724304900,HTTPS,173670,486586 +1724304900,Avast,382,391 +1724304900,SSL client,44540,85284 +1724304900,Ubuntu Update Manager,31257,487818 +1724304900,Yandex,18626,40787 +1724304900,GitHub,1727,5582 +1724304900,Ubuntu,9020,140153 +1724304900,Nvidia,1625,5973 +1724304900,Microsoft CryptoAPI,1403,1241 +1724304900,ICMP,354,0 +1724304900,Edge Chromium,8265,24260 +1724304900,DNS over HTTPS,16086,62557 +1724305201,HTTPS,45687,63449 +1724305201,SSL client,45687,63449 +1724305201,Telegram,45687,63449 +1724305201,HTTPS,143858,70310 +1724305201,Dropbox,120464,21527 +1724305201,HTTPS,120464,21527 +1724305201,SSL client,120464,21527 +1724305201,HTTPS,2926,4334 +1724305201,__unknown,7113,5359 +1724305201,Dropbox,3163,1367 +1724305201,Google,8266,5137 +1724305201,Gmail,10179,5926 +1724305201,HTTPS,65639,95149 +1724305201,Avast,1254,9314 +1724305201,SSL client,46538,74061 +1724305201,Microsoft,13638,40115 +1724305201,Mail.Ru,3056,5535 +1724305201,Yandex,5043,3754 +1724305201,GISMETEO,1939,2913 +1724305201,__unknown,7072,10167 +1724305201,BITS,8527,480257 +1724305201,Dropbox,4197,1894 +1724305201,Google,1079106,596065 +1724305201,MSN,6482,36865 +1724305201,HTTP,8527,480257 +1724305201,HTTPS,1641236,1493912 +1724305201,SSL client,1529756,1302027 +1724305201,CloudFront,3772,1093 +1724305201,Microsoft,49424,97061 +1724305201,Mail.Ru,88781,84398 +1724305201,Yandex,248655,149279 +1724305201,Office 365,14495,55915 +1724305201,Sharepoint Online,9346,213208 +1724305201,Microsoft Windows Live Services Authentication,25498,66249 +1724305201,DNS over HTTPS,2344,10787 +1724305201,ICMP,6536,0 +1724305201,__unknown,215,225 +1724305201,ICMP,12956,0 +1724305201,HTTPS,8394,11430 +1724305201,SSL client,8394,11430 +1724305201,DNS over HTTPS,8394,11430 +1724305201,ICMP,5520,5520 +1724305201,__unknown,4528,88330 +1724305201,HTTPS,67165,37457 +1724305201,ICMP,946,0 +1724305201,DNS over HTTPS,17914,42696 +1724305201,__unknown,38696,86296 +1724305201,Google,31326,42078 +1724305201,HTTP,897,5858 +1724305201,Microsoft Update,897,5858 +1724305201,HTTPS,31326,42078 +1724305201,SSL client,31326,42078 +1724305201,Microsoft CryptoAPI,897,5858 +1724305201,ICMP,2734,2160 +1724305201,DNS over HTTPS,4551,12480 +1724305201,__unknown,284337,347495 +1724305201,BitTorrent,463,1033 +1724305201,DHCPv6,978,0 +1724305201,Google APIs,32639,8667 +1724305201,Google Drive,27297,25241 +1724305201,Google,17983,50021 +1724305201,BitTorrent tracker,153,537 +1724305201,DNS,23422,0 +1724305201,HTTP,1648,1318 +1724305201,Microsoft Update,1648,1318 +1724305201,NTP,24690,5190 +1724305201,Odnoklassniki,2669,7499 +1724305201,HTTPS,179523,996059 +1724305201,Mozilla,1876,4611 +1724305201,SSL client,85678,111460 +1724305201,Microsoft,922,7534 +1724305201,Microsoft CryptoAPI,1648,1318 +1724305201,ICMP,19819,960 +1724305201,Grammarly,2292,7887 +1724305201,DNS over HTTPS,16927,49922 +1724305201,__unknown,198773,201762 +1724305201,DHCPv6,163,0 +1724305201,Google APIs,14325,56920 +1724305201,Google Drive,9832,29296 +1724305201,Google,188730,86023 +1724305201,Google Translate,3664,7388 +1724305201,Chrome,549,452 +1724305201,DNS,45764,41471 +1724305201,Gmail,13080,18353 +1724305201,HTTP,64342,866493 +1724305201,Internet Explorer,822,660 +1724305201,Launchpad,3200,2414 +1724305201,Microsoft Update,2571,2009 +1724305201,NetBIOS-dgm,250,0 +1724305201,NTP,270,270 +1724305201,SSL,855,7031 +1724305201,STUN,1860,3300 +1724305201,Odnoklassniki,1851,1189 +1724305201,Steam,2757,53190 +1724305201,Advanced Packaging Tool,41806,768525 +1724305201,HTTPS,316764,495871 +1724305201,WhatsApp,853,2679 +1724305201,Mozilla,2467,5186 +1724305201,Avast,901,7264 +1724305201,SSL client,260651,281464 +1724305201,Ubuntu Update Manager,34353,762293 +1724305201,Microsoft,1361,9002 +1724305201,Yandex,17887,52281 +1724305201,GitHub,1727,5580 +1724305201,Ubuntu,5528,5193 +1724305201,Microsoft CryptoAPI,3447,2749 +1724305201,Microsoft WNS,633,8036 +1724305201,Google Play,5422,7220 +1724305201,Google Hangouts,855,7031 +1724305201,ICMP,2374,0 +1724305201,Edge Chromium,4696,16047 +1724305201,DNS over TLS,3480,9844 +1724305201,DNS over HTTPS,10227,30736 +1724305500,HTTPS,15424,41471 +1724305500,SSL client,15424,41471 +1724305500,Yandex,15424,41471 +1724305500,HTTPS,53789,64042 +1724305500,SSL client,53789,64042 +1724305500,Telegram,53789,64042 +1724305500,HTTPS,1332643,322065 +1724305500,SSL client,1332643,322065 +1724305500,Yandex,6036,25019 +1724305500,Google Play,1326607,297046 +1724305500,__unknown,85157,46074 +1724305500,__unknown,214965,58102 +1724305500,HTTPS,60188,67480 +1724305500,SSL client,54469,62036 +1724305500,Telegram,54469,62036 +1724305500,__unknown,9333,4812 +1724305500,Dropbox,2025,2317 +1724305500,HTTPS,131117,118831 +1724305500,Avast,1254,8572 +1724305500,SSL client,87208,63613 +1724305500,Microsoft,4513,8816 +1724305500,Mail.Ru,15052,12444 +1724305500,Yandex,37456,16142 +1724305500,Google Play,24714,5953 +1724305500,GISMETEO,2194,9369 +1724305500,__unknown,96926,52408 +1724305500,Bing,3337,6422 +1724305500,Microsoft Update,20893,4638 +1724305500,HTTPS,402990,521259 +1724305500,Avast,2376,16483 +1724305500,SSL client,302086,343188 +1724305500,CloudFront,1509,1062 +1724305500,Microsoft,30907,56922 +1724305500,Mail.Ru,96604,89184 +1724305500,Yandex,77191,46495 +1724305500,Google Play,5106,8814 +1724305500,Office 365,1445,7489 +1724305500,Microsoft Windows Live Services Authentication,57699,101875 +1724305500,Google Sign in,5019,3804 +1724305500,DNS over HTTPS,995,4585 +1724305500,ICMP,2236,0 +1724305500,CoAP,5880,4320 +1724305500,HTTP,579,408 +1724305500,__unknown,972,452 +1724305500,__unknown,6084,3664 +1724305500,HTTPS,5306,47569 +1724305500,Spotify,1009,8116 +1724305500,SSL client,1009,8116 +1724305500,ICMP,13628,2640 +1724305500,DNS over HTTPS,4949,13595 +1724305500,__unknown,515483,496509 +1724305500,BitTorrent,310,496 +1724305500,Google APIs,39527,15637 +1724305500,Google Drive,10019,10975 +1724305500,Google,15185,56690 +1724305500,Skype Auth,1312,992 +1724305500,Windows Live,2442,13178 +1724305500,DNS,14768,0 +1724305500,NTP,24870,5370 +1724305500,Skype,1312,992 +1724305500,SSL,1785,8029 +1724305500,Odnoklassniki,2609,7364 +1724305500,HTTPS,164193,209687 +1724305500,SSL client,120981,133235 +1724305500,Atlassian,45730,18870 +1724305500,Google Play,3684,2492 +1724305500,Google Hangouts,1785,8029 +1724305500,ICMP,3898,900 +1724305500,DNS over HTTPS,10026,25129 +1724305500,__unknown,375881,463642 +1724305500,BitTorrent,310,310 +1724305500,DHCPv6,978,0 +1724305500,Google APIs,1153,6090 +1724305500,Google,18077,44633 +1724305500,DNS,38940,38475 +1724305500,Firefox,1482,2910 +1724305500,HTTP,425514,19769422 +1724305500,Launchpad,3126,2348 +1724305500,Microsoft Update,2584,2042 +1724305500,NetBIOS-dgm,243,0 +1724305500,NTP,630,630 +1724305500,SSL,797,7092 +1724305500,Odnoklassniki,3654,7497 +1724305500,Advanced Packaging Tool,47841,749873 +1724305500,HTTPS,108940,366538 +1724305500,Avast,382,391 +1724305500,SSL client,35946,88248 +1724305500,Ubuntu Update Manager,39985,743213 +1724305500,Microsoft,351751,18975548 +1724305500,Yandex,4478,15460 +1724305500,Ubuntu,6430,6148 +1724305500,Microsoft CryptoAPI,4241,3561 +1724305500,Microsoft NCSI,865,974 +1724305500,Google Hangouts,797,7092 +1724305500,ICMP,3012,0 +1724305500,Google Sign in,6079,4170 +1724305500,Edge Chromium,5163,16883 +1724305500,DNS over TLS,2290,9541 +1724305500,DNS over HTTPS,10344,33549 +1724305800,__unknown,1221,0 +1724305800,Apple Mail,3990,9276 +1724305800,IMAPS,3990,9276 +1724305800,SSL client,3990,9276 +1724305800,__unknown,834,0 +1724305800,Dropbox,127153,19742 +1724305800,Windows Live,59995,22185 +1724305800,Skype,3977,8741 +1724305800,HTTPS,247165,181695 +1724305800,Apple sites,2328,6018 +1724305800,SSL client,247165,181695 +1724305800,Microsoft,8710,118483 +1724305800,Dropbox Download,45002,6526 +1724305800,__unknown,9197,6208 +1724305800,HTTPS,55171,46050 +1724305800,SSL client,55171,46050 +1724305800,Google Play,55171,46050 +1724305800,__unknown,74021,39254 +1724305800,Dropbox,3342,2539 +1724305800,Google APIs,2129,6144 +1724305800,Gmail,10366,5297 +1724305800,HTTPS,116881,158938 +1724305800,Mozilla,2141,4639 +1724305800,SSL client,78983,117832 +1724305800,Microsoft,14340,31762 +1724305800,Mail.Ru,6265,5840 +1724305800,Yandex,4581,5978 +1724305800,Google Play,29379,26862 +1724305800,Office 365,4246,19402 +1724305800,GISMETEO,2194,9369 +1724305800,__unknown,158711,89761 +1724305800,Bing,5225,15815 +1724305800,Google APIs,6189,14477 +1724305800,Google,23059,29747 +1724305800,MSN,6364,24280 +1724305800,Adobe Software,10836,6265 +1724305800,Gmail,10645,19808 +1724305800,HTTP,3681,3936 +1724305800,IMAPS,10645,19808 +1724305800,HTTPS,480789,1102032 +1724305800,Apple sites,3883,13294 +1724305800,Mozilla,2143,4699 +1724305800,Avast,2382,17779 +1724305800,SSL client,382869,865690 +1724305800,Microsoft,41601,194649 +1724305800,VeriSign,1075,1826 +1724305800,Mail.Ru,131914,122514 +1724305800,Siri,3696,6329 +1724305800,Yandex,49337,91940 +1724305800,Microsoft CryptoAPI,1519,2193 +1724305800,uTorrent,21803,38987 +1724305800,Google Play,30932,11583 +1724305800,Office 365,10225,41134 +1724305800,Sharepoint Online,6476,189152 +1724305800,Microsoft Windows Live Services Authentication,16159,23238 +1724305800,DNS over HTTPS,80094,178674 +1724305800,__unknown,0,1390 +1724305800,HTTPS,53855,63958 +1724305800,SSL client,53855,63958 +1724305800,Telegram,53855,63958 +1724305800,__unknown,68131,47112 +1724305800,ICMP,40500,40560 +1724305800,__unknown,9629,40542 +1724305800,HTTPS,2492083,125900325 +1724305800,SSL client,2492083,125900325 +1724305800,Mac App Store,2492083,125900325 +1724305800,ICMP,738,0 +1724305800,__unknown,1663,11439 +1724305800,Google,14693,17877 +1724305800,HTTPS,27128,37448 +1724305800,SSL client,16907,21022 +1724305800,ICMP,738,0 +1724305800,DNS over HTTPS,2214,3145 +1724305800,__unknown,949094,1012853 +1724305800,BitTorrent,153,0 +1724305800,DHCPv6,163,0 +1724305800,Google APIs,41853,75337 +1724305800,Google,28418,80614 +1724305800,BitTorrent tracker,153,0 +1724305800,DNS,18264,0 +1724305800,Gmail,16821,36370 +1724305800,HTTP,816,740 +1724305800,NTP,360,360 +1724305800,YouTube,14640,18894 +1724305800,Odnoklassniki,2609,7500 +1724305800,HTTPS,162811,301571 +1724305800,SSL client,119702,238905 +1724305800,Microsoft CryptoAPI,816,740 +1724305800,Google Play,9158,15708 +1724305800,ICMP,18458,0 +1724305800,Google Sign in,6203,4482 +1724305800,DNS over HTTPS,2324,7944 +1724305800,__unknown,368780,499975 +1724305800,DHCPv6,978,0 +1724305800,Google APIs,6690,9936 +1724305800,Google,18575,111132 +1724305800,Chrome,2970,2195 +1724305800,DNS,47935,45147 +1724305800,Firefox,807,1129 +1724305800,HTTP,72426,822665 +1724305800,Launchpad,3200,2348 +1724305800,Microsoft Update,2485,10156 +1724305800,NTP,7520,1635 +1724305800,SSL,19843,5660 +1724305800,Odnoklassniki,3790,7514 +1724305800,Advanced Packaging Tool,47622,761388 +1724305800,HTTPS,154436,563416 +1724305800,APNS,19843,5660 +1724305800,iCloud,3260,9508 +1724305800,SSL client,64863,178831 +1724305800,Ubuntu Update Manager,38067,753166 +1724305800,Microsoft,573,8036 +1724305800,Siri,853,3332 +1724305800,Yandex,4538,15418 +1724305800,GitHub,2728,6473 +1724305800,Linux Mint,928,996 +1724305800,Ubuntu,6277,5796 +1724305800,Microsoft CryptoAPI,3045,10619 +1724305800,Microsoft NCSI,520,553 +1724305800,Microsoft WNS,573,8036 +1724305800,ICMP,5452,0 +1724305800,Edge Chromium,7271,22240 +1724305800,Grammarly,2920,1524 +1724305800,DNS over TLS,4316,19080 +1724305800,DNS over HTTPS,19316,57737 +1724306100,DNS over HTTPS,237609,544288 +1724306100,HTTPS,114801,511437 +1724306100,SSL client,114801,511437 +1724306100,Mail.Ru,114801,511437 +1724306100,HTTPS,4202,6561 +1724306100,SSL client,4202,6561 +1724306100,Sharepoint Online,4202,6561 +1724306100,Dropbox,123777,20246 +1724306100,HTTPS,123777,20246 +1724306100,SSL client,123777,20246 +1724306100,Google APIs,7164,25563 +1724306100,TeamViewer,31323,47823 +1724306100,HTTPS,14725,33285 +1724306100,SSL client,7164,25563 +1724306100,__unknown,4014,2172 +1724306100,Dropbox,9208,223951 +1724306100,Windows Live,44595,20414 +1724306100,HTTPS,101770,329715 +1724306100,Mozilla,2177,5151 +1724306100,Avast,1320,8839 +1724306100,SSL client,75333,292032 +1724306100,Microsoft,9182,27073 +1724306100,Mail.Ru,8851,6604 +1724306100,__unknown,574637,623817 +1724306100,Bing,8283,53885 +1724306100,Dropbox,12649,11570 +1724306100,Google APIs,9609,62847 +1724306100,MSN,3328,9505 +1724306100,Windows Live,9592,7411 +1724306100,HTTP,1650,3816 +1724306100,Microsoft Update,74697,8496 +1724306100,Skype,5902,16245 +1724306100,SSL,6126,8455 +1724306100,Steam,19251,35611 +1724306100,HTTPS,1094426,3469821 +1724306100,Avast,4534,18579 +1724306100,SSL client,670857,2759125 +1724306100,Amazon Web Services,3259,21490 +1724306100,CloudFront,3772,1093 +1724306100,Microsoft,184802,127565 +1724306100,Mail.Ru,103208,102363 +1724306100,Yandex,216967,2255272 +1724306100,Microsoft CryptoAPI,1650,3816 +1724306100,Office 365,6806,20613 +1724306100,Hola,4198,6580 +1724306100,AnyDesk,1928,1875 +1724306100,HTTPS,56034,31518 +1724306100,__unknown,188,229 +1724306100,ICMP,3960,3960 +1724306100,HTTPS,65626,44335 +1724306100,__unknown,1063,560 +1724306100,SSL,23037,10923 +1724306100,DNS over HTTPS,7501,17757 +1724306100,__unknown,3605,2200 +1724306100,HTTPS,7111,13598 +1724306100,ICMP,9900,9900 +1724306100,__unknown,823612,1799767 +1724306100,BITS,42874,2146459 +1724306100,BitTorrent,310,496 +1724306100,DHCPv6,163,0 +1724306100,Google APIs,2006,8215 +1724306100,Google Drive,170382,56206 +1724306100,Google,32340,89887 +1724306100,DNS,17792,0 +1724306100,HTTP,45347,2148567 +1724306100,NetBIOS-dgm,250,0 +1724306100,NTP,30550,7185 +1724306100,HTTPS,294423,381498 +1724306100,WhatsApp,2839,30110 +1724306100,SSL client,210384,176216 +1724306100,Microsoft,42874,2146459 +1724306100,Yandex,1251,6211 +1724306100,Microsoft CryptoAPI,1120,926 +1724306100,ICMP,12695,3720 +1724306100,Grammarly,4405,15697 +1724306100,DNS over HTTPS,32796,95301 +1724306100,__unknown,474232,365962 +1724306100,Google APIs,11391,68692 +1724306100,Google,25327,58786 +1724306100,QQ,678,343 +1724306100,Chrome,2147,2132 +1724306100,DNS,37958,39059 +1724306100,HTTP,427941,25571203 +1724306100,Internet Explorer,678,343 +1724306100,iTunes,985,7162 +1724306100,Launchpad,3200,2216 +1724306100,Microsoft Update,2919,2405 +1724306100,NTP,1080,1080 +1724306100,YouTube,7225,29050 +1724306100,Odnoklassniki,3699,2377 +1724306100,Steam,1396,10088 +1724306100,Advanced Packaging Tool,56867,1028897 +1724306100,HTTPS,234610,614644 +1724306100,WhatsApp,2592,21327 +1724306100,Avast,2256,9318 +1724306100,SSL client,128195,239803 +1724306100,CloudFront,2512,7701 +1724306100,Ubuntu Update Manager,42891,902963 +1724306100,Microsoft,335613,24450517 +1724306100,Yandex,67653,62245 +1724306100,GitHub,1787,5581 +1724306100,Ubuntu,12901,126015 +1724306100,Microsoft CryptoAPI,5408,6797 +1724306100,Microsoft WNS,1386,16078 +1724306100,Google Play,9100,6091 +1724306100,ICMP,2298,480 +1724306100,Edge Chromium,7331,22935 +1724306100,DNS over HTTPS,19062,64065 +1724306400,__unknown,374150,404708 +1724306400,__unknown,41208,34744 +1724306400,HTTPS,149101,175372 +1724306400,HTTPS,50527,72076 +1724306400,SSL client,50527,72076 +1724306400,Telegram,50527,72076 +1724306400,HTTPS,156933,151818 +1724306400,SSL client,53755,63964 +1724306400,Telegram,53755,63964 +1724306400,Windows Live,8862,288371 +1724306400,HTTPS,8862,288371 +1724306400,SSL client,8862,288371 +1724306400,__unknown,47665,49933 +1724306400,HTTPS,10525,8914 +1724306400,ICMP,7626,0 +1724306400,HTTPS,4869,23178 +1724306400,__unknown,15060,14440 +1724306400,Gmail,10181,5778 +1724306400,Skype,3094,9804 +1724306400,HTTPS,109641,163793 +1724306400,Mozilla,10269,15620 +1724306400,Avast,2376,18291 +1724306400,SSL client,72136,131057 +1724306400,Microsoft,20736,34695 +1724306400,Mail.Ru,14417,33814 +1724306400,Yandex,11063,13055 +1724306400,DNS over HTTPS,2792,8523 +1724306400,__unknown,55525,97122 +1724306400,Apple Update,3520,10767 +1724306400,Bing,5411,15749 +1724306400,MSN,6422,17558 +1724306400,Dell,1051,4366 +1724306400,HTTP,1253,2650 +1724306400,Skype,5178,16600 +1724306400,HTTPS,638409,901124 +1724306400,Apple sites,6388,25471 +1724306400,iCloud,5094,9767 +1724306400,Avast,2824,18945 +1724306400,SSL client,457384,620847 +1724306400,CloudFront,3742,1153 +1724306400,Microsoft,153861,79294 +1724306400,Mail.Ru,158230,164060 +1724306400,Yandex,67359,143082 +1724306400,Ubuntu,2305,21157 +1724306400,Microsoft CryptoAPI,871,2259 +1724306400,Exchange Online,2476,12938 +1724306400,Office 365,5530,24335 +1724306400,Sharepoint Online,1416,9777 +1724306400,Microsoft Windows Live Services Authentication,12952,33504 +1724306400,Grammarly,12630,10023 +1724306400,DNS over HTTPS,12499,35876 +1724306400,HTTPS,1594,8799 +1724306400,Apple sites,1594,8799 +1724306400,SSL client,1594,8799 +1724306400,HTTPS,554254,18512915 +1724306400,iCloud,17103,53281 +1724306400,SSL client,551462,18505991 +1724306400,Mac App Store,534359,18452710 +1724306400,Apple Maps,2792,6924 +1724306400,ICMP,2752,0 +1724306400,__unknown,684,520 +1724306400,__unknown,3476,28401 +1724306400,HTTPS,15036,23108 +1724306400,ICMP,18996,12600 +1724306400,__unknown,3904065,532539 +1724306400,BitTorrent,463,496 +1724306400,Google APIs,13656,27348 +1724306400,Google,11686,33375 +1724306400,Android browser,453,333 +1724306400,BitTorrent tracker,153,0 +1724306400,DNS,19866,0 +1724306400,Gmail,9316,11227 +1724306400,HTTP,2472,11319 +1724306400,NetBIOS-dgm,243,0 +1724306400,NTP,24600,5100 +1724306400,Odnoklassniki,2609,7423 +1724306400,HTTPS,157065,1728923 +1724306400,Mozilla,4137,9310 +1724306400,SSL client,52891,102204 +1724306400,Microsoft,2019,10986 +1724306400,Google Play,3569,2412 +1724306400,ICMP,10072,60 +1724306400,Google Sign in,6222,4052 +1724306400,Grammarly,2149,7390 +1724306400,DNS over HTTPS,12557,40460 +1724306400,__unknown,556005,448307 +1724306400,Bing,21415,676512 +1724306400,DHCPv6,1141,0 +1724306400,Google APIs,2353,6626 +1724306400,Google Drive,7405,10269 +1724306400,Google,28636,72522 +1724306400,QQ,678,343 +1724306400,DNS,42555,40432 +1724306400,Firefox,2466,3082 +1724306400,HTTP,635146,31278105 +1724306400,Internet Explorer,678,343 +1724306400,Launchpad,3200,2282 +1724306400,Microsoft Update,3057,4950 +1724306400,NetBIOS-ns,276,0 +1724306400,NTP,1710,1710 +1724306400,SSL,797,7091 +1724306400,STUN,372,444 +1724306400,Odnoklassniki,1939,6390 +1724306400,Advanced Packaging Tool,32894,151340 +1724306400,HTTPS,319027,2989971 +1724306400,Apple sites,4926,16305 +1724306400,iCloud,73299,391138 +1724306400,Avast,764,782 +1724306400,SSL client,186612,1263236 +1724306400,CloudFront,2697,4078 +1724306400,Ubuntu Update Manager,23680,143650 +1724306400,Microsoft,604568,31097765 +1724306400,Yandex,9665,35164 +1724306400,Ubuntu,7289,6783 +1724306400,Microsoft CryptoAPI,8617,14251 +1724306400,Google Hangouts,797,7091 +1724306400,ICMP,2154,0 +1724306400,Telegram,1965,7285 +1724306400,Edge Chromium,7271,22242 +1724306400,Adobe Fonts,2184,7266 +1724306400,DNS over TLS,2356,9540 +1724306400,DNS over HTTPS,11688,39873 +1724306700,__unknown,6664961,1972958 +1724306700,Google,55338,69254 +1724306700,HTTPS,286030,210750 +1724306700,SSL client,55338,69254 +1724306700,ICMP,30780,30840 +1724306700,HTTPS,149316,54164 +1724306700,SSL client,149316,54164 +1724306700,Mail.Ru,149316,54164 +1724306700,Dropbox,129615,20704 +1724306700,HTTPS,174617,27410 +1724306700,SSL client,174617,27410 +1724306700,Dropbox Download,45002,6706 +1724306700,HTTPS,53579,55754 +1724306700,SSL client,53579,55754 +1724306700,Yandex,10724,18503 +1724306700,Google Play,42855,37251 +1724306700,__unknown,17131,14958 +1724306700,HTTP,1932,5271 +1724306700,Microsoft Update,1299,3194 +1724306700,Windows Update,1299,3194 +1724306700,HTTPS,141214,850898 +1724306700,Avast,2376,16129 +1724306700,SSL client,85439,792666 +1724306700,Microsoft,4844,14539 +1724306700,VeriSign,633,2077 +1724306700,Mail.Ru,24124,35621 +1724306700,Yandex,49327,619616 +1724306700,Microsoft CryptoAPI,633,2077 +1724306700,Office 365,1744,12470 +1724306700,Sharepoint Online,3024,94291 +1724306700,__unknown,2199745,4339201 +1724306700,Bing,3499,6514 +1724306700,Dropbox,3467,2538 +1724306700,Google,116625,134230 +1724306700,Adobe Software,1991,9838 +1724306700,HTTP,3371,3923 +1724306700,Microsoft Update,2864,7341 +1724306700,Skype,6063,16378 +1724306700,Windows Update,548,1104 +1724306700,HTTPS,785943,3244980 +1724306700,WhatsApp,3105,5673 +1724306700,Apple sites,2867,16933 +1724306700,iCloud,9710,17568 +1724306700,Avast,3198,13165 +1724306700,SSL client,441254,656040 +1724306700,Amazon Web Services,3199,21490 +1724306700,Microsoft,41435,75202 +1724306700,Mail.Ru,155293,181020 +1724306700,Yandex,63206,86987 +1724306700,GitHub,1592,6064 +1724306700,Exchange Online,2610,12914 +1724306700,Office 365,8522,25676 +1724306700,Microsoft Windows Live Services Authentication,15661,23286 +1724306700,Edge Chromium,467,1364 +1724306700,DNS over HTTPS,8074,23524 +1724306700,HTTPS,14784,20313 +1724306700,SSL client,14784,20313 +1724306700,DNS over HTTPS,14784,20313 +1724306700,HTTPS,53623,64750 +1724306700,SSL client,53623,64750 +1724306700,Telegram,53623,64750 +1724306700,__unknown,11233,464081 +1724306700,CoAP,3332,2376 +1724306700,__unknown,2745,11398 +1724306700,HTTPS,1457,7459 +1724306700,Apple sites,1457,7459 +1724306700,SSL client,1457,7459 +1724306700,__unknown,214538,65269 +1724306700,HTTPS,3843,19044 +1724306700,ICMP,16272,15720 +1724306700,DNS over HTTPS,7838,20215 +1724306700,__unknown,983666,24299542 +1724306700,BitTorrent,310,496 +1724306700,Google APIs,15163,179910 +1724306700,Google,31105,80459 +1724306700,DNS,17218,0 +1724306700,Gmail,8620,15587 +1724306700,HTTP,6632,110603 +1724306700,Microsoft Update,1041,850 +1724306700,NetBIOS-dgm,250,0 +1724306700,NTP,49200,10200 +1724306700,Odnoklassniki,2609,7484 +1724306700,HTTPS,171662,1306735 +1724306700,Apple sites,22444,46177 +1724306700,SSL client,77148,228272 +1724306700,Microsoft CryptoAPI,1608,1311 +1724306700,ICMP,5460,2820 +1724306700,Grammarly,2231,7947 +1724306700,__unknown,332258,232690 +1724306700,DHCPv6,978,0 +1724306700,Google APIs,47866,24701 +1724306700,Google,612,1087 +1724306700,QQ,1347,1285 +1724306700,DNS,43528,47392 +1724306700,HTTP,73557,588609 +1724306700,Internet Explorer,738,343 +1724306700,Launchpad,3200,2414 +1724306700,Microsoft Update,641,507 +1724306700,NTP,540,540 +1724306700,SSL,795,7033 +1724306700,Odnoklassniki,2155,6831 +1724306700,Advanced Packaging Tool,53197,553569 +1724306700,HTTPS,243884,482496 +1724306700,Spotify,1904,4674 +1724306700,Avast,764,782 +1724306700,SSL client,68376,94079 +1724306700,Ubuntu Update Manager,44618,546313 +1724306700,Yandex,11899,42180 +1724306700,GitHub,1727,5582 +1724306700,Ubuntu,6654,6217 +1724306700,Microsoft CryptoAPI,1201,970 +1724306700,Google Hangouts,795,7033 +1724306700,ICMP,3130,496 +1724306700,Edge Chromium,4636,15396 +1724306700,Grammarly,2183,7889 +1724306700,DNS over HTTPS,19541,69061 +1724307000,ICMP,36900,0 +1724307000,HTTPS,45819,70618 +1724307000,SSL client,45819,70618 +1724307000,ICMP,10496,0 +1724307000,Telegram,45819,70618 +1724307000,Dropbox,125464,20877 +1724307000,HTTPS,570211,200491 +1724307000,SSL client,565369,198868 +1724307000,Mail.Ru,388788,159473 +1724307000,Google Play,51117,18518 +1724307000,HTTPS,2329,3945 +1724307000,Bing,3505,6483 +1724307000,Dropbox,5527,222582 +1724307000,Google APIs,6985,26083 +1724307000,Google,8211,5377 +1724307000,iTunes,6831,80743 +1724307000,HTTPS,228248,1349478 +1724307000,Avast,1254,8140 +1724307000,SSL client,183602,1104564 +1724307000,Microsoft,38336,57560 +1724307000,Mail.Ru,105619,107208 +1724307000,Yandex,7334,590388 +1724307000,__unknown,12744,51342 +1724307000,Bing,3646,6482 +1724307000,Dropbox,2768,1288 +1724307000,Google,84491,55335 +1724307000,HTTP,4069,214840 +1724307000,Skype,2656,8338 +1724307000,Advanced Packaging Tool,3354,214221 +1724307000,HTTPS,669032,1321190 +1724307000,Apple sites,1965,4877 +1724307000,Opera,6326,4536 +1724307000,SSL client,595974,1197125 +1724307000,CloudFront,1519,1072 +1724307000,Microsoft,192395,125723 +1724307000,Mail.Ru,235635,230051 +1724307000,Yandex,58608,722978 +1724307000,Ubuntu,8161,230875 +1724307000,Microsoft CryptoAPI,715,619 +1724307000,Office 365,1014,8141 +1724307000,Microsoft Windows Live Services Authentication,6470,16186 +1724307000,__unknown,215,225 +1724307000,__unknown,3870,1950 +1724307000,HTTPS,3411,5357 +1724307000,ICMP,7748,6600 +1724307000,__unknown,44376,16964 +1724307000,Google,77730,95514 +1724307000,HTTPS,118406,162676 +1724307000,SSL client,96975,127228 +1724307000,ICMP,22578,0 +1724307000,DNS over HTTPS,8058,20805 +1724307000,_err_4907,19245,31714 +1724307000,__unknown,391588,375673 +1724307000,BitTorrent,463,496 +1724307000,DHCPv6,163,0 +1724307000,Google APIs,5405,16589 +1724307000,Google Drive,27356,24556 +1724307000,Google,18605,40622 +1724307000,BitTorrent tracker,153,0 +1724307000,DNS,21984,0 +1724307000,Gmail,24316,41525 +1724307000,HTTP,1911,1569 +1724307000,Microsoft Update,1037,829 +1724307000,NTP,360,360 +1724307000,Odnoklassniki,2669,7483 +1724307000,HTTPS,218290,2695042 +1724307000,WhatsApp,1908,7920 +1724307000,Mozilla,2795,1712 +1724307000,SSL client,89972,144363 +1724307000,Microsoft CryptoAPI,1911,1569 +1724307000,ICMP,25535,420 +1724307000,Google Sign in,6535,3988 +1724307000,Grammarly,2291,7888 +1724307000,DNS over HTTPS,12318,28460 +1724307000,__unknown,245421,216269 +1724307000,Google APIs,3076,7027 +1724307000,Google,4567,11730 +1724307000,Google Translate,3664,7326 +1724307000,QQ,678,343 +1724307000,DNS,39944,37492 +1724307000,Firefox,822,1129 +1724307000,Gmail,7100,3956 +1724307000,HTTP,66950,445879 +1724307000,Internet Explorer,678,343 +1724307000,Launchpad,3134,2058 +1724307000,Microsoft Update,2665,2163 +1724307000,NetBIOS-dgm,243,0 +1724307000,NTP,12840,3090 +1724307000,SSL,855,7033 +1724307000,VKontakte,4649,10007 +1724307000,Odnoklassniki,2035,6771 +1724307000,Steam,1275,4492 +1724307000,Advanced Packaging Tool,35585,377068 +1724307000,HTTPS,164512,1017529 +1724307000,WhatsApp,853,2679 +1724307000,Mozilla,2058,4655 +1724307000,Avast,382,391 +1724307000,SSL client,51658,437948 +1724307000,Ubuntu Update Manager,27659,370698 +1724307000,Microsoft,1326,16072 +1724307000,VeriSign,566,2141 +1724307000,Yandex,18123,58523 +1724307000,MDNS,88,0 +1724307000,Ubuntu,5642,5234 +1724307000,Microsoft CryptoAPI,9580,9677 +1724307000,Microsoft WNS,1326,16072 +1724307000,Google Hangouts,855,7033 +1724307000,ICMP,1786,392 +1724307000,JetBrains,8219,332371 +1724307000,Edge Chromium,6277,20144 +1724307000,DNS over HTTPS,7377,19012 +1724307300,__unknown,1484,2060 +1724307300,__unknown,23664,19952 +1724307300,HTTPS,203793,401168 +1724307300,SSL client,203793,401168 +1724307300,Yandex,203793,401168 +1724307300,__unknown,2660,1205 +1724307300,HTTP,1415,2784 +1724307300,HTTPS,12158,18225 +1724307300,SSL client,12158,18225 +1724307300,Google Play,12158,18225 +1724307300,__unknown,52090,56808 +1724307300,Google,2550,12244 +1724307300,YouTube,1753,6321 +1724307300,VKontakte,1792,4571 +1724307300,HTTPS,247271,878703 +1724307300,Avast,1254,8220 +1724307300,SSL client,186639,163201 +1724307300,Microsoft,16406,33074 +1724307300,Mail.Ru,160690,89406 +1724307300,GISMETEO,2194,9365 +1724307300,__unknown,76790,56721 +1724307300,Google APIs,193743,75378 +1724307300,Google,110479,141305 +1724307300,MSN,2069,12696 +1724307300,HTTP,1274,1226 +1724307300,VKontakte,2497,4635 +1724307300,Advanced Packaging Tool,1274,1226 +1724307300,HTTPS,1047814,1191282 +1724307300,Mozilla,4565,6055 +1724307300,Avast,3453,23439 +1724307300,SSL client,620802,736334 +1724307300,Ubuntu Update Manager,1274,1226 +1724307300,Microsoft,28877,61566 +1724307300,Mail.Ru,189292,214756 +1724307300,Yandex,18592,41625 +1724307300,Exchange Online,1417,7886 +1724307300,Office 365,7600,22316 +1724307300,Microsoft Windows Live Services Authentication,50161,110518 +1724307300,OneDrive,3093,10292 +1724307300,Google Sign in,4964,3867 +1724307300,ICMP,14268,0 +1724307300,ICMP,4902,0 +1724307300,HTTPS,32620,27780 +1724307300,__unknown,1418,12480 +1724307300,ICMP,1634,0 +1724307300,__unknown,7281,5565 +1724307300,HTTPS,42457,1556470 +1724307300,Spotify,2561,8514 +1724307300,SSL client,2561,8514 +1724307300,ICMP,8280,8280 +1724307300,DNS over HTTPS,5675,14175 +1724307300,__unknown,616922,1458197 +1724307300,Bing,12805,718865 +1724307300,BitTorrent,310,496 +1724307300,DHCPv6,978,0 +1724307300,Google APIs,49176,87148 +1724307300,Google Drive,10082,11557 +1724307300,Google,48401,79944 +1724307300,DNS,18407,0 +1724307300,HTTP,2363,2310 +1724307300,Microsoft Update,1682,1333 +1724307300,NTP,14460,4710 +1724307300,STUN,1860,3300 +1724307300,Odnoklassniki,5101,14917 +1724307300,HTTPS,348049,1476845 +1724307300,SSL client,147169,1025779 +1724307300,Microsoft CryptoAPI,2363,2310 +1724307300,Google Play,4425,2290 +1724307300,ICMP,6482,660 +1724307300,JetBrains,12226,7826 +1724307300,Western Digital,4953,103232 +1724307300,DNS over HTTPS,17541,48328 +1724307300,__unknown,733136,2275880 +1724307300,BITS,157805,6079457 +1724307300,DHCPv6,163,0 +1724307300,Google APIs,24362,56527 +1724307300,Google Drive,4435,10384 +1724307300,Google,77314,218510 +1724307300,QQ,678,343 +1724307300,DNS,39732,37859 +1724307300,HTTP,287970,9256042 +1724307300,Internet Explorer,12204,1501 +1724307300,Launchpad,3200,2414 +1724307300,Microsoft Update,6033,13289 +1724307300,NetBIOS-dgm,250,0 +1724307300,NTP,23660,6180 +1724307300,STUN,1230,1036 +1724307300,Advanced Packaging Tool,43807,601355 +1724307300,HTTPS,416607,5311892 +1724307300,Mozilla,2758,1739 +1724307300,Avast,1146,1173 +1724307300,SSL client,152627,1094517 +1724307300,Ubuntu Update Manager,36402,595159 +1724307300,Microsoft,38632,2522887 +1724307300,VeriSign,566,2141 +1724307300,Mail.Ru,4834,10802 +1724307300,Yandex,40985,767719 +1724307300,GitHub,2231,5845 +1724307300,Ubuntu,5055,4696 +1724307300,Microsoft CryptoAPI,14886,22427 +1724307300,Microsoft NCSI,931,1040 +1724307300,ICMP,2159,1080 +1724307300,Edge Chromium,5330,14286 +1724307300,DNS over TLS,2356,9541 +1724307300,DNS over HTTPS,39831,131654 +1724307600,HTTPS,53887,63009 +1724307600,Dropbox,121113,20329 +1724307600,HTTPS,220899,109231 +1724307600,SSL client,218626,99876 +1724307600,Yandex,5658,12228 +1724307600,Dropbox Download,37506,5283 +1724307600,Telegram,54349,62036 +1724307600,Google APIs,8678,14797 +1724307600,HTTPS,33948,36579 +1724307600,SSL client,30866,33846 +1724307600,Google Play,22188,19049 +1724307600,__unknown,215193,210025 +1724307600,Dropbox,1691,1475 +1724307600,Google,7576,14917 +1724307600,HTTPS,172801,240242 +1724307600,Avast,1254,10002 +1724307600,SSL client,141521,201157 +1724307600,Microsoft,2239,7254 +1724307600,Mail.Ru,73624,67921 +1724307600,Yandex,48808,40196 +1724307600,Office 365,4135,50026 +1724307600,GISMETEO,2194,9366 +1724307600,__unknown,91292,102844 +1724307600,Google APIs,3083,7082 +1724307600,Google,915625,390130 +1724307600,HTTP,4401,10370 +1724307600,iTunes,2840,14754 +1724307600,Skype,4807,15821 +1724307600,HTTPS,1186874,1037687 +1724307600,Apple sites,4052,12103 +1724307600,Avast,1011,5795 +1724307600,SSL client,1099547,854944 +1724307600,Microsoft,22049,38858 +1724307600,Mail.Ru,101579,119652 +1724307600,Yandex,44501,250749 +1724307600,Google Update,4401,10370 +1724307600,DNS over HTTPS,31610,97326 +1724307600,__unknown,26438,30266 +1724307600,ICMP,76580,33120 +1724307600,__unknown,215,107 +1724307600,ICMP,688,0 +1724307600,DNS over HTTPS,18103,41460 +1724307600,CoAP,2744,2016 +1724307600,__unknown,3450,1736 +1724307600,HTTPS,124282,82763 +1724307600,ICMP,9006,1440 +1724307600,DNS over HTTPS,72449,193966 +1724307600,__unknown,548003,2328648 +1724307600,BitTorrent,463,496 +1724307600,Google APIs,84868,37009 +1724307600,Google Drive,5981,9862 +1724307600,Google,15452,49303 +1724307600,BitTorrent tracker,153,0 +1724307600,DNS,17617,0 +1724307600,Gmail,11975,12376 +1724307600,NetBIOS-dgm,243,0 +1724307600,NTP,2160,2160 +1724307600,STUN,1860,3300 +1724307600,HTTPS,203948,909766 +1724307600,Mozilla,2615,1712 +1724307600,SSL client,129560,124827 +1724307600,Mail.Ru,2468,10326 +1724307600,ICMP,3072,360 +1724307600,ICMP for IPv6,70,0 +1724307600,Google Sign in,6201,4239 +1724307600,DNS over HTTPS,10638,31523 +1724307600,__unknown,323976,455180 +1724307600,DHCPv6,978,0 +1724307600,Google APIs,19039,44177 +1724307600,Google,21709,48232 +1724307600,QQ,738,343 +1724307600,DNS,47588,43211 +1724307600,HTTP,65860,564627 +1724307600,Internet Explorer,738,343 +1724307600,Launchpad,3496,2414 +1724307600,Microsoft Update,1958,1656 +1724307600,NTP,1080,1080 +1724307600,SSL,855,7032 +1724307600,VKontakte,1335,4357 +1724307600,Odnoklassniki,6399,14938 +1724307600,Advanced Packaging Tool,41075,521845 +1724307600,HTTPS,201594,462056 +1724307600,Apple sites,1802,4445 +1724307600,Avast,764,782 +1724307600,SSL client,79227,169356 +1724307600,Ubuntu Update Manager,32262,514589 +1724307600,Microsoft,633,8035 +1724307600,Yandex,7577,20904 +1724307600,GitHub,1727,5579 +1724307600,Ubuntu,6167,5760 +1724307600,Microsoft CryptoAPI,2545,2159 +1724307600,Microsoft WNS,633,8035 +1724307600,Google Play,15467,12573 +1724307600,ICMP,2644,0 +1724307600,ICMP for IPv6,70,0 +1724307600,Edge Chromium,5270,13643 +1724307600,DNS over TLS,2224,9541 +1724307600,DNS over HTTPS,18204,45735 +1724307900,HTTPS,22207,38044 +1724307900,SSL client,22207,38044 +1724307900,Yandex,22207,38044 +1724307900,Windows Live,46361,15309 +1724307900,HTTPS,46361,15309 +1724307900,SSL client,46361,15309 +1724307900,DNS over HTTPS,19742,43650 +1724307900,Dropbox,124420,21286 +1724307900,HTTPS,134256,32087 +1724307900,SSL client,124420,21286 +1724307900,HTTPS,11336,16814 +1724307900,__unknown,686659,227019 +1724307900,Google APIs,3924,28199 +1724307900,Google,8484,5613 +1724307900,Skype,1521,7821 +1724307900,HTTPS,97615,162203 +1724307900,Avast,1320,9831 +1724307900,SSL client,83504,147768 +1724307900,Microsoft,4047,11052 +1724307900,Mail.Ru,62014,75750 +1724307900,GISMETEO,2194,9502 +1724307900,__unknown,271720,200658 +1724307900,Bing,3204,6546 +1724307900,Dropbox,1787,5579 +1724307900,Google APIs,2724,7515 +1724307900,Google,4172,3402 +1724307900,MSN,3323,9497 +1724307900,HTTP,4929,10752 +1724307900,Microsoft Update,600,382 +1724307900,HTTPS,517634,6810625 +1724307900,Avast,1254,8396 +1724307900,SSL client,247333,416095 +1724307900,Amazon Web Services,3319,21490 +1724307900,Microsoft,26196,51831 +1724307900,Mail.Ru,142947,163000 +1724307900,Yandex,37273,69602 +1724307900,Google Update,4329,10370 +1724307900,Microsoft CryptoAPI,600,382 +1724307900,uTorrent,11064,19566 +1724307900,Apple Maps,49346,6152454 +1724307900,Office 365,2340,38102 +1724307900,Microsoft Windows Live Services Authentication,7730,11569 +1724307900,DNS over HTTPS,1930,9169 +1724307900,__unknown,206232,199956 +1724307900,HTTPS,53264,67204 +1724307900,SSL client,53264,67204 +1724307900,Telegram,53264,67204 +1724307900,__unknown,188,229 +1724307900,HTTPS,9518,13603 +1724307900,SSL client,9518,13603 +1724307900,DNS over HTTPS,9518,13603 +1724307900,__unknown,2074,11368 +1724307900,Google,12884,15375 +1724307900,HTTPS,59273,48408 +1724307900,SSL client,12884,15375 +1724307900,Apple Maps,2726,6891 +1724307900,__unknown,1691,1612 +1724307900,HTTPS,4276,7873 +1724307900,ICMP,5350,3360 +1724307900,__unknown,1687,1032 +1724307900,Google Drive,27290,16023 +1724307900,Google,14327,18073 +1724307900,HTTPS,44828,39512 +1724307900,SSL client,41617,34096 +1724307900,ICMP,10146,9900 +1724307900,DNS over HTTPS,12301,31737 +1724307900,__unknown,1378881,1429451 +1724307900,BitTorrent,310,496 +1724307900,DHCPv6,163,0 +1724307900,Google,57093,86042 +1724307900,Google Translate,4399,8180 +1724307900,DNS,21633,0 +1724307900,NTP,25140,5640 +1724307900,YouTube,26278,34211 +1724307900,HTTPS,340912,820994 +1724307900,SSL client,93031,150417 +1724307900,Mail.Ru,2991,14097 +1724307900,ICMP,7086,720 +1724307900,Grammarly,2270,7887 +1724307900,DNS over HTTPS,15156,29710 +1724307900,CoAP,1568,1152 +1724307900,__unknown,480174,733095 +1724307900,Google APIs,12833,28620 +1724307900,Google,20199,42821 +1724307900,Google Translate,5059,10626 +1724307900,QQ,678,343 +1724307900,DNS,39630,36704 +1724307900,HTTP,80271,1265632 +1724307900,Internet Explorer,1440,1003 +1724307900,Launchpad,3200,2348 +1724307900,Microsoft Update,646,500 +1724307900,NTP,25140,5640 +1724307900,SSL,855,7032 +1724307900,Advanced Packaging Tool,60860,1225456 +1724307900,HTTPS,386587,6948553 +1724307900,Avast,830,848 +1724307900,SSL client,79209,199247 +1724307900,Ubuntu Update Manager,53407,1219290 +1724307900,Microsoft,573,8037 +1724307900,VeriSign,566,2141 +1724307900,Mail.Ru,4801,12597 +1724307900,Yandex,5808,23839 +1724307900,Ubuntu,4678,4275 +1724307900,Microsoft CryptoAPI,1772,3104 +1724307900,Microsoft WNS,573,8037 +1724307900,Apple Maps,75759,3772316 +1724307900,Google Play,6309,17689 +1724307900,Office 365,752,4620 +1724307900,Google Hangouts,855,7032 +1724307900,ICMP,1293,120 +1724307900,Weborama,7188,15601 +1724307900,Firebase Crashlytics,1532,5403 +1724307900,Google Sign in,6141,4369 +1724307900,Edge Chromium,5270,13644 +1724307900,Grammarly,2242,7887 +1724307900,DNS over TLS,2356,9540 +1724307900,DNS over HTTPS,27519,81559 +1724308199,HTTPS,45819,64030 +1724308199,SSL client,45819,64030 +1724308199,Telegram,45819,64030 +1724308199,HTTPS,99712,446032 +1724308199,SSL client,99712,446032 +1724308199,Mail.Ru,99712,446032 +1724308199,__unknown,49583,51389 +1724308199,HTTPS,19874,12747 +1724308199,HTTPS,41834,37112 +1724308199,SSL client,41834,37112 +1724308199,Google Play,41834,37112 +1724308199,__unknown,44173,53270 +1724308199,Dropbox,1730,1596 +1724308199,Google,6118,20075 +1724308199,Windows Live,5346,8501 +1724308199,Gmail,15776,69005 +1724308199,TwitchTV,6571,7316 +1724308199,HTTPS,129171,341127 +1724308199,Avast,1254,10242 +1724308199,SSL client,80203,179788 +1724308199,Microsoft,20007,28669 +1724308199,Mail.Ru,19635,17910 +1724308199,Office 365,1572,7109 +1724308199,GISMETEO,2194,9365 +1724308199,__unknown,114643,99935 +1724308199,Bing,3605,6514 +1724308199,Dropbox,2844,1348 +1724308199,Google,18919,20835 +1724308199,MSN,6712,36756 +1724308199,Dell,2138,8672 +1724308199,HTTP,1884,1731 +1724308199,Skype,2654,8334 +1724308199,Advanced Packaging Tool,1358,1288 +1724308199,HTTPS,342221,730409 +1724308199,WhatsApp,3281,6587 +1724308199,Apple sites,2371,7403 +1724308199,Avast,1254,8652 +1724308199,SSL client,262450,568220 +1724308199,Ubuntu Update Manager,1358,1288 +1724308199,Microsoft,36683,75015 +1724308199,Mail.Ru,97675,117246 +1724308199,Yandex,55658,46871 +1724308199,Ubuntu,1531,4479 +1724308199,Microsoft CryptoAPI,526,443 +1724308199,Rambler,15495,8300 +1724308199,Office 365,6399,12658 +1724308199,Sharepoint Online,8512,205137 +1724308199,DNS over HTTPS,1115,5253 +1724308199,SSL,8253,27637 +1724308199,HTTPS,32175,41143 +1724308199,SSL client,32175,41143 +1724308199,ICMP,1118,0 +1724308199,Telegram,32175,41143 +1724308199,__unknown,3672,3096 +1724308199,ICMP,4060,0 +1724308199,__unknown,9946,75246 +1724308199,Google,44436,32354 +1724308199,HTTPS,451377,27733252 +1724308199,SSL client,44436,32354 +1724308199,ICMP,9376,0 +1724308199,DNS over HTTPS,5707,13991 +1724308199,__unknown,663615,1471532 +1724308199,BitTorrent,463,496 +1724308199,DHCPv6,978,0 +1724308199,Google APIs,12752,89016 +1724308199,Google,38451,97680 +1724308199,BitTorrent tracker,153,0 +1724308199,DNS,14012,0 +1724308199,Gmail,6376,8916 +1724308199,HTTP,600,1129 +1724308199,NetBIOS-dgm,250,0 +1724308199,NTP,12390,2640 +1724308199,STUN,2046,3522 +1724308199,VKontakte,7657,11594 +1724308199,HTTPS,1041499,3454226 +1724308199,SSL client,87986,236417 +1724308199,Microsoft,13825,17198 +1724308199,Mail.Ru,5388,5221 +1724308199,Yandex,3537,6792 +1724308199,Microsoft CryptoAPI,600,1129 +1724308199,ICMP,4480,0 +1724308199,DNS over HTTPS,12024,36999 +1724308199,__unknown,418737,938867 +1724308199,Apple Update,127676,4443437 +1724308199,DHCPv6,163,0 +1724308199,Google APIs,14426,25589 +1724308199,Google,61725,1017911 +1724308199,Kaspersky,608,607 +1724308199,QQ,678,343 +1724308199,DNS,49455,41665 +1724308199,Firefox,1698,4502 +1724308199,Gmail,15560,22367 +1724308199,HTTP,224623,6905245 +1724308199,Internet Explorer,678,343 +1724308199,Launchpad,2936,1984 +1724308199,LiveJournal,7824,18417 +1724308199,Microsoft Update,1283,1003 +1724308199,NetBIOS-dgm,243,0 +1724308199,NTP,3420,3420 +1724308199,SSL,2240,11584 +1724308199,YouTube,3616,4983 +1724308199,Odnoklassniki,2669,7440 +1724308199,Steam,585,527 +1724308199,Advanced Packaging Tool,38401,130304 +1724308199,HTTPS,986975,6706967 +1724308199,Apple sites,4088,17094 +1724308199,iCloud,9347,16953 +1724308199,Avast,764,782 +1724308199,SSL client,272925,5656258 +1724308199,Ubuntu Update Manager,29990,123208 +1724308199,Microsoft,109427,6693836 +1724308199,Yandex,3713,8689 +1724308199,GitHub,1727,5582 +1724308199,Ubuntu,6750,6483 +1724308199,Microsoft CryptoAPI,1283,1003 +1724308199,Rambler,4912,14366 +1724308199,Google Hangouts,855,7032 +1724308199,ICMP,4640,0 +1724308199,Clip2Net,1202,3640 +1724308199,Edge Chromium,5330,14287 +1724308199,DNS over TLS,7378,29334 +1724308199,DNS over HTTPS,24718,78182 +1724308199,_err_4655,1540,1628 +1724308500,HTTPS,30692,71386 +1724308500,SSL client,30692,71386 +1724308500,Yandex,30692,71386 +1724308500,__unknown,1244,1838 +1724308500,HTTPS,53755,64162 +1724308500,SSL client,53755,64162 +1724308500,Telegram,53755,64162 +1724308500,Dropbox,116909,19749 +1724308500,HTTPS,206696,92357 +1724308500,SSL client,206696,92357 +1724308500,Dropbox Download,35318,5292 +1724308500,Telegram,54469,67316 +1724308500,__unknown,12662,17816 +1724308500,Google APIs,6892,25738 +1724308500,Google,8906,25671 +1724308500,YouTube,10546,12755 +1724308500,HTTPS,162592,325789 +1724308500,Mozilla,2087,4639 +1724308500,Avast,1254,8264 +1724308500,SSL client,157430,317943 +1724308500,Microsoft,14231,23022 +1724308500,Mail.Ru,90031,135156 +1724308500,Yandex,12880,17443 +1724308500,Google Play,3242,2067 +1724308500,Office 365,5287,53823 +1724308500,GISMETEO,2074,9365 +1724308500,__unknown,24121,25929 +1724308500,Apple Update,168721,5144720 +1724308500,Google APIs,27560,36564 +1724308500,Google,4473,4791 +1724308500,HTTP,587,530 +1724308500,Skype,4483,15821 +1724308500,Advanced Packaging Tool,587,530 +1724308500,HTTPS,623292,6103114 +1724308500,iCloud,10076,31103 +1724308500,Mozilla,2201,4699 +1724308500,SSL client,506480,5896849 +1724308500,Microsoft,33116,319055 +1724308500,Mail.Ru,153814,184602 +1724308500,Yandex,60115,67559 +1724308500,Ubuntu,587,530 +1724308500,Office 365,6115,24404 +1724308500,Microsoft Windows Live Services Authentication,23956,34899 +1724308500,OneDrive,2501,11174 +1724308500,Google Sign in,5026,4035 +1724308500,Grammarly,4323,13423 +1724308500,DNS over HTTPS,3105,15093 +1724308500,SSL,6434,8474 +1724308500,__unknown,215,225 +1724308500,__unknown,840,19056 +1724308500,HTTPS,31788,27333 +1724308500,__unknown,1225,611 +1724308500,HTTP,869,280 +1724308500,ICMP,31860,31740 +1724308500,__unknown,2953,1664 +1724308500,HTTPS,41074,36319 +1724308500,ICMP,1312,0 +1724308500,__unknown,627065,14489011 +1724308500,BitTorrent,310,496 +1724308500,Google APIs,2708,8671 +1724308500,Google Drive,7454,10259 +1724308500,Google,30897,116861 +1724308500,Skype Auth,700,398 +1724308500,DNS,17356,0 +1724308500,Firefox,33923,107363 +1724308500,HTTP,1189461,37060916 +1724308500,LiveJournal,5595,10169 +1724308500,NTP,900,900 +1724308500,Skype,700,398 +1724308500,SSL,20114,13018 +1724308500,VKontakte,1291,4357 +1724308500,HTTPS,489742,2372974 +1724308500,WhatsApp,15864,311913 +1724308500,APNS,20114,13018 +1724308500,SSL client,106960,900349 +1724308500,Microsoft,1155011,36952188 +1724308500,Yandex,24774,702273 +1724308500,Viber,1932,9653 +1724308500,Scorecard Research,4815,9133 +1724308500,ICMP,8773,960 +1724308500,ICMP for IPv6,70,0 +1724308500,Weborama,7380,15955 +1724308500,Telegram,4284,15623 +1724308500,Edge Chromium,527,1365 +1724308500,DNS over HTTPS,10313,31418 +1724308500,__unknown,336313,450565 +1724308500,DHCPv6,978,0 +1724308500,Google APIs,17946,41819 +1724308500,Google,53695,116831 +1724308500,Google Translate,3664,7387 +1724308500,QQ,678,343 +1724308500,Chrome,1984,1731 +1724308500,DNS,50335,44396 +1724308500,Firefox,77511,36563 +1724308500,HTTP,130424,114623 +1724308500,Internet Explorer,678,343 +1724308500,Launchpad,3650,2480 +1724308500,Microsoft Update,695,978 +1724308500,NTP,13290,3540 +1724308500,YouTube,4353,13273 +1724308500,VKontakte,1389,4424 +1724308500,Odnoklassniki,2095,6771 +1724308500,Advanced Packaging Tool,25592,23106 +1724308500,HTTPS,292850,2417632 +1724308500,Avast,764,782 +1724308500,SSL client,121575,1814039 +1724308500,Ubuntu Update Manager,18372,17344 +1724308500,Microsoft,693,8035 +1724308500,Yandex,36439,1610664 +1724308500,Ubuntu,5336,5122 +1724308500,Microsoft CryptoAPI,1403,1242 +1724308500,Microsoft WNS,693,8035 +1724308500,ICMP,4140,0 +1724308500,Edge Chromium,8265,24320 +1724308500,Grammarly,2283,7948 +1724308500,DNS over TLS,1321,9424 +1724308500,DNS over HTTPS,14770,60162 +1724308800,CoAP,205382,145489 +1724308800,__unknown,352950,190806 +1724308800,__unknown,154836,130462 +1724308800,__unknown,154530,90840 +1724308800,HTTPS,31071,72050 +1724308800,SSL client,31071,72050 +1724308800,Yandex,31071,72050 +1724308800,__unknown,205073,111132 +1724308800,HTTPS,61697,74897 +1724308800,SSL client,61697,74897 +1724308800,Telegram,53855,63952 +1724308800,DNS over HTTPS,7842,10945 +1724308800,HTTPS,7836,5526 +1724308800,__unknown,3130,8054 +1724308800,Windows Live,28218,7287 +1724308800,HTTPS,39539,223698 +1724308800,SSL client,39539,223698 +1724308800,Microsoft,8485,209217 +1724308800,Microsoft Teams,2836,7194 +1724308800,HTTPS,6193,6186 +1724308800,__unknown,7273,12568 +1724308800,Gmail,10243,5792 +1724308800,TwitchTV,5555,7089 +1724308800,HTTPS,132297,683468 +1724308800,Avast,1254,8850 +1724308800,SSL client,114892,664696 +1724308800,Microsoft,22857,28053 +1724308800,Mail.Ru,41464,46809 +1724308800,Yandex,25412,543542 +1724308800,Office 365,1514,1365 +1724308800,GISMETEO,2194,9365 +1724308800,Grammarly,4399,13831 +1724308800,__unknown,154695,89241 +1724308800,Dropbox,12774,225005 +1724308800,Google APIs,17747,44445 +1724308800,Google,6831,15387 +1724308800,HTTP,1336,1816 +1724308800,Microsoft Update,20334,4473 +1724308800,Skype,4911,15819 +1724308800,SSL,3895,14270 +1724308800,YouTube,5313,54327 +1724308800,Steam,9942,21296 +1724308800,HTTPS,655508,3993280 +1724308800,Apple sites,26128,852881 +1724308800,iCloud,4763,15148 +1724308800,Avast,1194,8823 +1724308800,SSL client,507333,3806779 +1724308800,CloudFront,3772,1093 +1724308800,Microsoft,73718,113166 +1724308800,Mail.Ru,150100,187512 +1724308800,Yandex,50290,56541 +1724308800,Microsoft Azure,64269,2072714 +1724308800,Google Play,10323,13826 +1724308800,Office 365,8541,31897 +1724308800,Microsoft Windows Live Services Authentication,21067,54715 +1724308800,Telegram,4389,19873 +1724308800,Grammarly,12571,9988 +1724308800,DNS over HTTPS,9586,29304 +1724308800,HTTPS,45753,63958 +1724308800,SSL client,45753,63958 +1724308800,Telegram,45753,63958 +1724308800,HTTPS,10902,16398 +1724308800,SSL client,7782,10922 +1724308800,DNS over HTTPS,7782,10922 +1724308800,__unknown,94,660 +1724308800,HTTPS,8394,11543 +1724308800,SSL client,8394,11543 +1724308800,DNS over HTTPS,8394,11543 +1724308800,__unknown,1702,1587 +1724308800,Gmail,881059,1045568 +1724308800,HTTPS,881059,1045568 +1724308800,SSL client,881059,1045568 +1724308800,ICMP,1722,0 +1724308800,__unknown,32190,52456 +1724308800,Gmail,83159,47577 +1724308800,HTTPS,83159,47577 +1724308800,SSL client,83159,47577 +1724308800,ICMP,492,0 +1724308800,DNS over HTTPS,12122,30260 +1724308800,CoAP,2352,1728 +1724308800,__unknown,1395,1208 +1724308800,Google,46442,39233 +1724308800,Gmail,1005121,7387053 +1724308800,HTTPS,1054343,7433308 +1724308800,SSL client,1051563,7426286 +1724308800,Apple Maps,2780,7022 +1724308800,ICMP,2696,0 +1724308800,__unknown,622047,3326331 +1724308800,BitTorrent,463,1033 +1724308800,DHCPv6,163,0 +1724308800,Google APIs,2827,8864 +1724308800,Google Drive,8957,11057 +1724308800,Google,60493,90093 +1724308800,Google Translate,3484,7321 +1724308800,BitTorrent tracker,153,537 +1724308800,DNS,20629,0 +1724308800,HTTP,2767,2325 +1724308800,Microsoft Update,1006,816 +1724308800,NetBIOS-ns,92,0 +1724308800,NTP,450,450 +1724308800,SSL,1954,8529 +1724308800,HTTPS,188526,2219827 +1724308800,Mozilla,1876,4611 +1724308800,SSL client,108771,169451 +1724308800,Microsoft CryptoAPI,2767,2325 +1724308800,Google Hangouts,1954,8529 +1724308800,ICMP,4672,180 +1724308800,Trello,11792,11944 +1724308800,Google Sign in,15156,19146 +1724308800,Zoom,1500,6674 +1724308800,Grammarly,2232,7886 +1724308800,DNS over HTTPS,19288,55458 +1724308800,__unknown,797586,580777 +1724308800,Bing,4778,7761 +1724308800,DHCPv6,978,0 +1724308800,Google APIs,16183,36306 +1724308800,Google Drive,5044,8575 +1724308800,Google,20057,37611 +1724308800,QQ,672,126 +1724308800,Adobe Software,2652,4833 +1724308800,DNS,43787,39695 +1724308800,Gmail,14274,23982 +1724308800,HTTP,1282168,175903158 +1724308800,Internet Explorer,1494,786 +1724308800,Launchpad,2420,1628 +1724308800,Microsoft Update,646,500 +1724308800,NetBIOS-dgm,250,0 +1724308800,NTP,12840,3090 +1724308800,Odnoklassniki,2549,7423 +1724308800,Advanced Packaging Tool,1255956,175857254 +1724308800,HTTPS,1082930,118554758 +1724308800,Avast,382,391 +1724308800,SSL client,95753,360405 +1724308800,Ubuntu Update Manager,1249453,175852192 +1724308800,Mail.Ru,5428,5479 +1724308800,Yandex,22022,228710 +1724308800,Ubuntu,4083,3434 +1724308800,Microsoft CryptoAPI,2576,2163 +1724308800,ICMP,1972,0 +1724308800,Google Sign in,4464,8084 +1724308800,Edge Chromium,8391,26151 +1724308800,DNS over HTTPS,9350,28569 +1724309100,__unknown,34430,33570 +1724309100,HTTPS,178715,106575 +1724309100,HTTPS,42999,53332 +1724309100,Dropbox,116382,20003 +1724309100,HTTPS,120470,26213 +1724309100,SSL client,116382,20003 +1724309100,HTTPS,9103,13411 +1724309100,SSL client,4418,8681 +1724309100,Yandex,4418,8681 +1724309100,__unknown,116051,69632 +1724309100,Google APIs,3231,2257 +1724309100,Windows Live,36144,25561 +1724309100,HTTPS,213830,223807 +1724309100,Avast,1254,9378 +1724309100,SSL client,97746,131190 +1724309100,Microsoft,8171,15753 +1724309100,Mail.Ru,39534,54583 +1724309100,Yandex,5672,12961 +1724309100,Office 365,1801,7788 +1724309100,GISMETEO,1939,2909 +1724309100,__unknown,94596,82231 +1724309100,Dropbox,3041,1348 +1724309100,Google APIs,3028,2213 +1724309100,Google,1491,1597 +1724309100,Gmail,4445,76370 +1724309100,HTTP,8912,9840 +1724309100,IMAPS,4445,76370 +1724309100,HTTPS,890988,1285617 +1724309100,Avast,9074,32347 +1724309100,SSL client,652031,999953 +1724309100,Amazon Web Services,3259,21430 +1724309100,CloudFront,1509,1062 +1724309100,Microsoft,266917,410183 +1724309100,Mail.Ru,168658,203637 +1724309100,Yandex,135146,122551 +1724309100,Google Update,3028,2213 +1724309100,Google Play,45491,35735 +1724309100,Office 365,18884,101320 +1724309100,DNS over HTTPS,3367,15369 +1724309100,__unknown,5109,75690 +1724309100,HTTPS,22484,21175 +1724309100,__unknown,3408,74157 +1724309100,HTTPS,8361,12210 +1724309100,ICMP,10400,9600 +1724309100,__unknown,3472,17402 +1724309100,HTTPS,29191,74682 +1724309100,ICMP,6060,6120 +1724309100,__unknown,623693,863191 +1724309100,BitTorrent,310,434 +1724309100,DHCPv6,163,0 +1724309100,Google APIs,3546,7951 +1724309100,Google Drive,10069,11121 +1724309100,Google,70646,78802 +1724309100,Google Translate,3604,7447 +1724309100,DNS,18439,0 +1724309100,HTTP,5588,51826 +1724309100,Microsoft Update,1347,1150 +1724309100,NetBIOS-dgm,243,0 +1724309100,NTP,630,630 +1724309100,STUN,2666,4188 +1724309100,Steam,2892,48949 +1724309100,HTTPS,152770,328201 +1724309100,WhatsApp,1870,7865 +1724309100,SSL client,93730,115616 +1724309100,MDNS,364,0 +1724309100,Microsoft CryptoAPI,2696,2877 +1724309100,Google Play,3513,2408 +1724309100,Office 365,619,1199 +1724309100,ICMP,3971,120 +1724309100,Grammarly,2352,7887 +1724309100,DNS over HTTPS,18832,48864 +1724309100,__unknown,325184,3121072 +1724309100,Google APIs,8287,21139 +1724309100,Google,14417,27659 +1724309100,QQ,738,343 +1724309100,Windows Live,3663,19767 +1724309100,Adobe Software,17233,18966 +1724309100,DNS,46946,42845 +1724309100,Gmail,1763,1804 +1724309100,HTTP,75865,963534 +1724309100,Internet Explorer,738,343 +1724309100,Launchpad,3200,2480 +1724309100,NTP,25230,5730 +1724309100,SSL,855,7033 +1724309100,Odnoklassniki,2669,7368 +1724309100,Advanced Packaging Tool,49556,919180 +1724309100,HTTPS,283530,1008465 +1724309100,Apple sites,853,4058 +1724309100,iCloud,12454,26478 +1724309100,Avast,1146,1173 +1724309100,Opera,1958,4638 +1724309100,SSL client,101271,294477 +1724309100,Ubuntu Update Manager,40342,911292 +1724309100,Yandex,21174,103605 +1724309100,Ubuntu,10519,27899 +1724309100,Microsoft CryptoAPI,1717,1519 +1724309100,Google Hangouts,855,7033 +1724309100,ICMP,2564,0 +1724309100,Telegram,6129,20929 +1724309100,Google Sign in,4915,8045 +1724309100,Edge Chromium,6684,20235 +1724309100,Grammarly,2240,7950 +1724309100,DNS over TLS,4844,19080 +1724309100,DNS over HTTPS,33126,123799 +1724309100,_err_4655,2744,3601 +1724309400,Apple Mail,6995,17514 +1724309400,Gmail,22105,32392 +1724309400,IMAPS,29100,49906 +1724309400,SSL client,29100,49906 +1724309400,HTTPS,45753,63952 +1724309400,SSL client,45753,63952 +1724309400,Telegram,45753,63952 +1724309400,HTTPS,8809,10836 +1724309400,Dropbox,119060,19425 +1724309400,HTTPS,119060,19425 +1724309400,SSL client,119060,19425 +1724309400,__unknown,17859,59860 +1724309400,HTTPS,63661,28495 +1724309400,SSL client,44026,8914 +1724309400,Google Play,44026,8914 +1724309400,__unknown,46152,8068 +1724309400,Dropbox,5131,4133 +1724309400,Gmail,10288,5533 +1724309400,HTTP,1428,1011 +1724309400,Microsoft Update,1428,1011 +1724309400,HTTPS,157040,196521 +1724309400,Mozilla,2201,4639 +1724309400,Avast,1314,10536 +1724309400,SSL client,113736,157355 +1724309400,Microsoft,10841,18446 +1724309400,Mail.Ru,11749,11377 +1724309400,Yandex,2433,2130 +1724309400,Microsoft CryptoAPI,1428,1011 +1724309400,Google Play,66456,88562 +1724309400,Office 365,3323,11999 +1724309400,__unknown,51843,46493 +1724309400,Apple Update,180847,5455652 +1724309400,Dropbox,2409,2881 +1724309400,Google APIs,12687,29535 +1724309400,Google,290976,215493 +1724309400,MSN,9667,26882 +1724309400,HTTP,3288,3995 +1724309400,Microsoft Update,1280,3486 +1724309400,Advanced Packaging Tool,1274,1193 +1724309400,HTTPS,1297772,7587579 +1724309400,WhatsApp,3221,5720 +1724309400,Apple sites,2132,15451 +1724309400,iCloud,13065,35212 +1724309400,Mozilla,3530,9157 +1724309400,SSL client,1167260,7031209 +1724309400,Ubuntu Update Manager,1274,1193 +1724309400,Microsoft,157088,88028 +1724309400,VeriSign,2014,2802 +1724309400,Mail.Ru,162870,194016 +1724309400,Yandex,268622,151781 +1724309400,Mac App Store,18781,725619 +1724309400,Microsoft CryptoAPI,2014,2802 +1724309400,uTorrent,21892,39240 +1724309400,Google Play,18143,26777 +1724309400,Office 365,3271,11999 +1724309400,DNS over HTTPS,84596,197855 +1724309400,DNS over HTTPS,231497,523985 +1724309400,ICMP,8429,0 +1724309400,__unknown,3338,1819 +1724309400,Google,10625,16973 +1724309400,HTTPS,10625,16973 +1724309400,SSL client,10625,16973 +1724309400,__unknown,215,107 +1724309400,HTTPS,23600,9880 +1724309400,ICMP,4418,0 +1724309400,__unknown,5827,3300 +1724309400,HTTPS,14047,58608 +1724309400,Spotify,1987,8112 +1724309400,SSL client,4261,11257 +1724309400,ICMP,2544,1500 +1724309400,DNS over HTTPS,9609,21242 +1724309400,CoAP,2058,1584 +1724309400,__unknown,490330,443873 +1724309400,BitTorrent,463,496 +1724309400,Google Drive,6029,9798 +1724309400,Google,11865,34207 +1724309400,BitTorrent tracker,153,0 +1724309400,DNS,24965,0 +1724309400,Gmail,130949,248971 +1724309400,HTTP,602,1130 +1724309400,NTP,12480,2730 +1724309400,SSL,24218,6591 +1724309400,VKontakte,103100,133359 +1724309400,HTTPS,383211,2163680 +1724309400,WhatsApp,11895,196442 +1724309400,SSL client,270206,468858 +1724309400,Microsoft CryptoAPI,602,1130 +1724309400,ICMP,21056,10800 +1724309400,Google Inbox,13780,30214 +1724309400,DNS over HTTPS,9820,29110 +1724309400,Google Meet,4483,12309 +1724309400,__unknown,285883,245096 +1724309400,DHCPv6,1141,0 +1724309400,Google APIs,42509,63614 +1724309400,Google,39441,112594 +1724309400,QQ,678,343 +1724309400,Adobe Software,18753,23692 +1724309400,Chrome,4041,3279 +1724309400,DNS,50877,43828 +1724309400,Gmail,23407,23728 +1724309400,HTTP,136706,1666789 +1724309400,Internet Explorer,11894,2323 +1724309400,Launchpad,3200,2414 +1724309400,Microsoft Update,44494,1207690 +1724309400,NTP,2790,2790 +1724309400,SSL,797,7093 +1724309400,TeamViewer,391,268 +1724309400,Odnoklassniki,2675,7484 +1724309400,Advanced Packaging Tool,41042,406606 +1724309400,HTTPS,338559,1664575 +1724309400,Apple sites,853,2484 +1724309400,Avast,5494,2223 +1724309400,SSL client,155217,300733 +1724309400,Ubuntu Update Manager,34859,401506 +1724309400,Microsoft,573,8035 +1724309400,VeriSign,566,2141 +1724309400,Yandex,27102,36445 +1724309400,Ubuntu,4258,4065 +1724309400,Microsoft CryptoAPI,7044,7884 +1724309400,Microsoft WNS,573,8035 +1724309400,uTorrent,5418,3844 +1724309400,Google Hangouts,797,7093 +1724309400,ICMP,4445,0 +1724309400,Google Sign in,5531,8319 +1724309400,Edge Chromium,1581,4093 +1724309400,Grammarly,2338,7895 +1724309400,DNS over TLS,1079,4770 +1724309400,DNS over HTTPS,29198,98250 +1724309700,HTTPS,28279,402366 +1724309700,SSL client,28279,402366 +1724309700,Yandex,28279,402366 +1724309700,HTTPS,12244,31447 +1724309700,SSL client,12244,31447 +1724309700,Yandex,12244,31447 +1724309700,DNS over HTTPS,234907,539008 +1724309700,__unknown,1244,1838 +1724309700,ICMP,21566,0 +1724309700,HTTPS,94569,67912 +1724309700,SSL client,94569,67912 +1724309700,Dropbox Download,40160,5876 +1724309700,Telegram,54409,62036 +1724309700,HTTPS,9511,10667 +1724309700,TeamViewer,31179,47867 +1724309700,__unknown,43640,57729 +1724309700,Bing,3876,10124 +1724309700,Google,1613,1630 +1724309700,TeamViewer,3035,17694 +1724309700,VKontakte,3572,5625 +1724309700,HTTPS,173614,509922 +1724309700,Mozilla,2141,4759 +1724309700,Avast,1254,8252 +1724309700,SSL client,78972,245443 +1724309700,Microsoft,10872,24085 +1724309700,Mail.Ru,19807,36809 +1724309700,Yandex,5580,14799 +1724309700,uTorrent,11104,19494 +1724309700,Office 365,8441,20246 +1724309700,Grammarly,2563,6964 +1724309700,Adobe Update,5114,74962 +1724309700,__unknown,387245,469311 +1724309700,Apple Update,1969,4971 +1724309700,Bing,12867,75463 +1724309700,Dropbox,1244,4606 +1724309700,Google APIs,11821,31266 +1724309700,Google,1491,1597 +1724309700,MSN,3892,7601 +1724309700,HTTP,3511,284818 +1724309700,iTunes,2199,24494 +1724309700,YouTube,1582,1588 +1724309700,VKontakte,2406,4826 +1724309700,Steam,11794,24832 +1724309700,HTTPS,907108,1539497 +1724309700,Avast,5670,30107 +1724309700,SSL client,565459,970255 +1724309700,Amazon Web Services,3319,21490 +1724309700,Microsoft,169968,355199 +1724309700,Mail.Ru,119769,136920 +1724309700,Yandex,172997,118096 +1724309700,Google Play,12975,21005 +1724309700,Exchange Online,1249,6467 +1724309700,Office 365,7635,54594 +1724309700,Microsoft Windows Live Services Authentication,20612,45133 +1724309700,Telegram,4805,32435 +1724309700,DNS over HTTPS,1990,9839 +1724309700,HTTPS,6030,7008 +1724309700,SSL client,6030,7008 +1724309700,Siri,6030,7008 +1724309700,ICMP,4300,0 +1724309700,HTTPS,700853,6791488 +1724309700,__unknown,1430,10874 +1724309700,HTTPS,5979,8573 +1724309700,ICMP,820,0 +1724309700,__unknown,2903,2016 +1724309700,Gmail,23713,19128 +1724309700,HTTPS,41550,41047 +1724309700,Avast,7555,2947 +1724309700,SSL client,31268,22075 +1724309700,ICMP,820,0 +1724309700,DNS over HTTPS,3394,9902 +1724309700,__unknown,1523529,4850335 +1724309700,BitTorrent,310,496 +1724309700,Google APIs,6551,24272 +1724309700,Google,39987,72902 +1724309700,Google Translate,3664,7386 +1724309700,Chrome,1106,906 +1724309700,DNS,19628,0 +1724309700,HTTP,2308,3165 +1724309700,NetBIOS-dgm,493,0 +1724309700,NTP,14190,4440 +1724309700,SSL,1765,1484 +1724309700,VKontakte,2583,5571 +1724309700,HTTPS,226394,461825 +1724309700,SSL client,65905,134855 +1724309700,Yandex,3618,7306 +1724309700,Microsoft CryptoAPI,1202,2259 +1724309700,Google Hangouts,1765,1484 +1724309700,ICMP,11331,0 +1724309700,Weborama,7737,15934 +1724309700,Thin Manager TFTP,276,106 +1724309700,DNS over HTTPS,10942,33252 +1724309700,__unknown,443081,352549 +1724309700,BITS,1710,14365 +1724309700,DHCPv6,978,0 +1724309700,Google APIs,5111,15043 +1724309700,Google,45153,110734 +1724309700,QQ,678,343 +1724309700,Chrome,565,484 +1724309700,DNS,45882,41552 +1724309700,HTTP,73571,575229 +1724309700,Internet Explorer,1440,1003 +1724309700,Launchpad,3200,2282 +1724309700,Microsoft Update,2274,2114 +1724309700,NTP,14010,4260 +1724309700,SSL,855,7032 +1724309700,YouTube,2063,10232 +1724309700,Odnoklassniki,2609,7439 +1724309700,Advanced Packaging Tool,43747,515355 +1724309700,HTTPS,299977,1481334 +1724309700,Apple sites,4050,60873 +1724309700,Avast,764,782 +1724309700,SSL client,83700,287913 +1724309700,GoDaddy,640,2914 +1724309700,Ubuntu Update Manager,35707,508725 +1724309700,Microsoft,573,8037 +1724309700,Yandex,9580,23595 +1724309700,GitHub,1727,5582 +1724309700,Ubuntu,6181,5727 +1724309700,Microsoft CryptoAPI,6085,9887 +1724309700,Microsoft WNS,573,8037 +1724309700,Office 365,2544,15731 +1724309700,Google Hangouts,855,7032 +1724309700,ICMP,2029,0 +1724309700,Telegram,12344,83004 +1724309700,Edge Chromium,1581,4095 +1724309700,Grammarly,2159,7601 +1724309700,DNS over TLS,2224,9540 +1724309700,DNS over HTTPS,28338,98751 +1724310000,HTTPS,31135,35709 +1724310000,SSL client,31135,35709 +1724310000,Yandex,31135,35709 +1724310000,HTTPS,6930,12079 +1724310000,SSL client,6930,12079 +1724310000,Yandex,6930,12079 +1724310000,Google APIs,62915,71916 +1724310000,HTTPS,62915,71916 +1724310000,SSL client,62915,71916 +1724310000,HTTPS,45753,63952 +1724310000,SSL client,45753,63952 +1724310000,Telegram,45753,63952 +1724310000,__unknown,388,0 +1724310000,HTTPS,11457,15345 +1724310000,iCloud,11457,15345 +1724310000,SSL client,11457,15345 +1724310000,HTTPS,11105,23139 +1724310000,Apple sites,3700,5948 +1724310000,iCloud,7405,17191 +1724310000,SSL client,11105,23139 +1724310000,Dropbox,124428,21603 +1724310000,HTTPS,124428,21603 +1724310000,SSL client,124428,21603 +1724310000,HTTP,691,2904 +1724310000,HTTPS,25835,27200 +1724310000,SSL client,22578,24273 +1724310000,Google Play,22578,24273 +1724310000,__unknown,47963,23468 +1724310000,Dropbox,1647,1519 +1724310000,Google,2310,12221 +1724310000,Windows Live,5345,8468 +1724310000,Gmail,10233,6233 +1724310000,HTTP,1424,1010 +1724310000,Microsoft Update,1424,1010 +1724310000,Skype,3034,9877 +1724310000,HTTPS,462895,5319436 +1724310000,Mozilla,2296,4739 +1724310000,SSL client,92358,122329 +1724310000,Microsoft,20437,22773 +1724310000,Mail.Ru,23376,26491 +1724310000,Yandex,20041,13087 +1724310000,Microsoft CryptoAPI,1424,1010 +1724310000,Office 365,1385,7489 +1724310000,GISMETEO,2254,9432 +1724310000,__unknown,255070,100796 +1724310000,Dropbox,10841,2826 +1724310000,Google APIs,12342,27996 +1724310000,Google,159398,137971 +1724310000,MSN,29077,112777 +1724310000,Dell,1111,4305 +1724310000,HTTP,1669,7724 +1724310000,iTunes,2254,6883 +1724310000,Microsoft Update,1928,30133 +1724310000,Skype,8161,15510 +1724310000,Steam,2221,5051 +1724310000,HTTPS,2069881,33109790 +1724310000,Apple sites,53955,353186 +1724310000,iCloud,89150,187843 +1724310000,Mozilla,3002,9545 +1724310000,Avast,1254,9222 +1724310000,SSL client,1289410,11396199 +1724310000,CloudFront,155785,6271018 +1724310000,Microsoft,167157,244943 +1724310000,Mail.Ru,186925,222042 +1724310000,Yandex,235239,172719 +1724310000,Microsoft Azure,2418,8752 +1724310000,Nvidia,4267,13606 +1724310000,Office 365,124906,3509656 +1724310000,Microsoft Windows Live Services Authentication,22494,38580 +1724310000,Office Mobile,3517,7930 +1724310000,Edge Chromium,341,1244 +1724310000,Grammarly,12682,9999 +1724310000,DNS over HTTPS,3609,15593 +1724310000,HTTPS,60561,70059 +1724310000,SSL client,60561,70059 +1724310000,Telegram,53214,63826 +1724310000,DNS over HTTPS,7347,6233 +1724310000,__unknown,2138,28446 +1724310000,HTTPS,9996,44560 +1724310000,iCloud,7204,37554 +1724310000,SSL client,7204,37554 +1724310000,Apple Maps,2792,7006 +1724310000,__unknown,3770,2152 +1724310000,Google,22659,34503 +1724310000,HTTPS,37269,194145 +1724310000,SSL client,22659,34503 +1724310000,ICMP,9214,8640 +1724310000,__unknown,668381,1717804 +1724310000,BitTorrent,463,1033 +1724310000,DHCPv6,163,0 +1724310000,Google APIs,14894,41063 +1724310000,Google,60704,121758 +1724310000,Google Translate,4246,8146 +1724310000,BitTorrent tracker,153,537 +1724310000,DNS,17486,0 +1724310000,Firefox,1966,2860 +1724310000,HTTP,3493,5719 +1724310000,NTP,19550,3915 +1724310000,VKontakte,2637,5572 +1724310000,HTTPS,276203,615573 +1724310000,Apple sites,8817,193024 +1724310000,iCloud,1583,5313 +1724310000,Mozilla,1996,4611 +1724310000,SSL client,229637,402381 +1724310000,Yandex,1133,670 +1724310000,Microsoft CryptoAPI,1527,2859 +1724310000,Google Play,133627,22224 +1724310000,Office 365,940,2356 +1724310000,ICMP,15299,0 +1724310000,Thin Manager TFTP,276,106 +1724310000,DNS over HTTPS,6020,17746 +1724310000,__unknown,377366,569957 +1724310000,Bing,5499,7651 +1724310000,Google APIs,20662,103784 +1724310000,Google,30746,89070 +1724310000,Kaspersky,1095,2052 +1724310000,QQ,678,343 +1724310000,DNS,44471,41898 +1724310000,Firefox,3786,4535 +1724310000,Gmail,6984,3805 +1724310000,HTTP,210079,9929007 +1724310000,Internet Explorer,678,343 +1724310000,Launchpad,3200,2414 +1724310000,Microsoft Update,1047,827 +1724310000,NTP,5410,1545 +1724310000,SSL,855,7033 +1724310000,VKontakte,4307,12023 +1724310000,Odnoklassniki,4488,13747 +1724310000,Advanced Packaging Tool,48245,673503 +1724310000,HTTPS,394927,3144465 +1724310000,iCloud,22414,9591 +1724310000,Mozilla,1653,4174 +1724310000,Avast,1212,1239 +1724310000,SSL client,151559,1543097 +1724310000,Ubuntu Update Manager,40744,667309 +1724310000,Microsoft,1323,7329 +1724310000,Yandex,42093,1268030 +1724310000,Ubuntu,5576,5155 +1724310000,Microsoft CryptoAPI,125528,9205071 +1724310000,uTorrent,10030,6212 +1724310000,Google Hangouts,855,7033 +1724310000,ICMP,13818,0 +1724310000,Telegram,1965,7361 +1724310000,Google Sign in,5651,8557 +1724310000,Thin Manager TFTP,196,252 +1724310000,Edge Chromium,3749,10197 +1724310000,DNS over TLS,2158,9541 +1724310000,DNS over HTTPS,9013,32397 +1724310000,_err_4655,2847,2641 +1724310300,Thin Manager TFTP,672,280 +1724310300,HTTPS,102881,44515 +1724310300,Google,45086,54448 +1724310300,HTTPS,88528,839610 +1724310300,SSL client,59609,789242 +1724310300,Yandex,14523,734794 +1724310300,__unknown,1608,0 +1724310300,Dropbox,123786,19608 +1724310300,HTTPS,123786,19608 +1724310300,SSL client,123786,19608 +1724310300,SSL,1972,6368 +1724310300,HTTPS,40648,43009 +1724310300,SSL client,34549,36236 +1724310300,Google Play,34549,36236 +1724310300,__unknown,49227,51140 +1724310300,Google,20611,22185 +1724310300,MSN,35528,112602 +1724310300,HTTPS,293190,2750083 +1724310300,Apple sites,49755,276043 +1724310300,iCloud,3696,13263 +1724310300,Avast,1254,8124 +1724310300,SSL client,150242,481097 +1724310300,Microsoft,6958,7708 +1724310300,Mail.Ru,14428,19988 +1724310300,Yandex,18012,21184 +1724310300,__unknown,4705705,4898133 +1724310300,Dropbox,9042,225120 +1724310300,Google APIs,2935,7100 +1724310300,HTTP,978,5358 +1724310300,TeamViewer,1590,8893 +1724310300,HTTPS,1341459,5817682 +1724310300,Apple sites,2153,8987 +1724310300,iCloud,32428,78627 +1724310300,Avast,1944,4342 +1724310300,SSL client,1154188,1993321 +1724310300,Microsoft,68185,83363 +1724310300,Mail.Ru,930747,1414447 +1724310300,Yandex,75850,74551 +1724310300,Asus,1421,10205 +1724310300,Nvidia,4077,4609 +1724310300,Microsoft CryptoAPI,978,5358 +1724310300,Google Play,2773,6948 +1724310300,Office 365,7805,34377 +1724310300,Microsoft Windows Live Services Authentication,8394,21955 +1724310300,Microsoft Teams,5822,15155 +1724310300,DNS over HTTPS,2449,9469 +1724310300,__unknown,0,1736 +1724310300,HTTPS,58855,24262 +1724310300,__unknown,215,225 +1724310300,HTTPS,8640,11683 +1724310300,SSL client,8640,11683 +1724310300,DNS over HTTPS,8640,11683 +1724310300,__unknown,7598,30921 +1724310300,__unknown,197844,207521 +1724310300,HTTPS,22664,20967 +1724310300,DNS over HTTPS,66,396 +1724310300,__unknown,2108,1504 +1724310300,HTTPS,28138,15234 +1724310300,__unknown,8122,14538 +1724310300,HTTPS,348966,130029 +1724310300,Apple sites,3907,17697 +1724310300,SSL client,337678,107558 +1724310300,Google Play,333771,89861 +1724310300,ICMP,4510,0 +1724310300,__unknown,1048559,68993091 +1724310300,BitTorrent,310,496 +1724310300,DHCPv6,978,0 +1724310300,Google APIs,5759,18413 +1724310300,Google,92608,251884 +1724310300,DNS,20205,0 +1724310300,Firefox,1998,2494 +1724310300,Gmail,8740,15500 +1724310300,HTTP,5429,5748 +1724310300,Microsoft Update,1041,827 +1724310300,NetBIOS-dgm,250,0 +1724310300,NTP,630,630 +1724310300,VKontakte,5196,11501 +1724310300,HTTPS,339634,1536159 +1724310300,Mozilla,2489,4904 +1724310300,SSL client,128098,342251 +1724310300,Yandex,3328,18894 +1724310300,Microsoft CryptoAPI,3431,3254 +1724310300,Pocket,2818,6233 +1724310300,ICMP,43557,0 +1724310300,Weborama,7537,15961 +1724310300,DNS over HTTPS,13368,38840 +1724310300,Discord,2441,5194 +1724310300,__unknown,326328,525570 +1724310300,DHCPv6,163,0 +1724310300,Google APIs,4765,13250 +1724310300,Google Drive,8903,10660 +1724310300,Google,35825,97623 +1724310300,Google Translate,3664,7447 +1724310300,QQ,1092,1924 +1724310300,DNS,43774,44041 +1724310300,Firefox,822,977 +1724310300,HTTP,210339,806509 +1724310300,Internet Explorer,678,343 +1724310300,Launchpad,3422,2414 +1724310300,Microsoft Update,1962,1630 +1724310300,NetBIOS-dgm,243,0 +1724310300,NTP,37530,8280 +1724310300,SSL,797,7093 +1724310300,Odnoklassniki,8403,16829 +1724310300,Advanced Packaging Tool,49273,612294 +1724310300,HTTPS,210676,759099 +1724310300,Spotify,1838,4674 +1724310300,Avast,1146,1173 +1724310300,SSL client,86432,356979 +1724310300,Ubuntu Update Manager,38615,603376 +1724310300,Mail.Ru,1007,516 +1724310300,Yandex,18809,198104 +1724310300,Ubuntu,9002,8344 +1724310300,AMD,1137,993 +1724310300,Microsoft CryptoAPI,2522,2093 +1724310300,Google Hangouts,797,7093 +1724310300,ICMP,2050,360 +1724310300,Telegram,1305,748 +1724310300,Thin Manager TFTP,276,106 +1724310300,Edge Chromium,1054,2728 +1724310300,DNS over HTTPS,37116,137273 +1724310600,DNS over HTTPS,266793,598932 +1724310600,Windows Live,46421,15143 +1724310600,HTTPS,77497,40916 +1724310600,SSL client,46421,15143 +1724310600,HTTPS,94569,67733 +1724310600,SSL client,94569,67733 +1724310600,Dropbox Download,40160,5697 +1724310600,Telegram,54409,62036 +1724310600,__unknown,8749,4788 +1724310600,Google,121147,2355772 +1724310600,Gmail,10188,9979 +1724310600,Skype,2535,8336 +1724310600,HTTPS,200014,2489467 +1724310600,Avast,1254,9154 +1724310600,SSL client,177173,2463254 +1724310600,Microsoft,14570,40899 +1724310600,Mail.Ru,26034,31625 +1724310600,Office 365,1445,7489 +1724310600,DNS over HTTPS,5098,16346 +1724310600,__unknown,8666945,2834502 +1724310600,Dropbox,2817,4451 +1724310600,MSN,7946,29230 +1724310600,HTTP,2293,3598 +1724310600,Microsoft Update,2764,7069 +1724310600,Skype,3313,7982 +1724310600,YouTube,2254,5653 +1724310600,Steam,2113,4918 +1724310600,HTTPS,1127903,5811240 +1724310600,Apple sites,1796,4534 +1724310600,Avast,8274,35250 +1724310600,Opera,9691,6072 +1724310600,SSL client,894293,1613525 +1724310600,Microsoft,257597,111713 +1724310600,Mail.Ru,567372,898172 +1724310600,Yandex,17235,35300 +1724310600,Microsoft Azure,2502,8645 +1724310600,Microsoft CryptoAPI,1569,1440 +1724310600,Xbox Live sites,12499,437850 +1724310600,Office 365,5811,22758 +1724310600,SSL,3518,6638 +1724310600,HTTPS,10502,14171 +1724310600,HTTP,2308,16510 +1724310600,HTTPS,49428,92784 +1724310600,SSL client,2362,8655 +1724310600,Microsoft,2362,8655 +1724310600,ICMP,20606,1140 +1724310600,DNS over HTTPS,3252,9806 +1724310600,__unknown,1613315,2557393 +1724310600,BITS,86566,6465372 +1724310600,BitTorrent,463,694 +1724310600,Google APIs,46476,23580 +1724310600,Google Drive,40570,22981 +1724310600,Google,131678,238212 +1724310600,Google Translate,3604,7447 +1724310600,BitTorrent tracker,153,198 +1724310600,DNS,22932,0 +1724310600,Firefox,1532,2798 +1724310600,Gmail,10600,20825 +1724310600,HTTP,88098,6468170 +1724310600,NTP,540,540 +1724310600,SSL,10965,11616 +1724310600,VKontakte,196925,49481 +1724310600,HTTPS,587214,881946 +1724310600,APNS,10965,11616 +1724310600,Mozilla,7048,8772 +1724310600,SSL client,458378,400988 +1724310600,Microsoft,87488,6472906 +1724310600,ICMP,28384,600 +1724310600,Google Sign in,9590,10540 +1724310600,DNS over HTTPS,20048,62216 +1724310600,__unknown,932908,33885250 +1724310600,DHCPv6,978,0 +1724310600,Google APIs,4736,13312 +1724310600,Google,22387,54766 +1724310600,QQ,678,343 +1724310600,DNS,45674,41438 +1724310600,Gmail,14753,54088 +1724310600,HTTP,213895,4718360 +1724310600,Internet Explorer,6965,2521 +1724310600,Launchpad,3200,2414 +1724310600,Microsoft Update,1923,1510 +1724310600,NTP,1620,1620 +1724310600,Odnoklassniki,4431,13891 +1724310600,Advanced Packaging Tool,40834,533261 +1724310600,HTTPS,218286,1256105 +1724310600,iCloud,46225,55596 +1724310600,Mozilla,2058,4535 +1724310600,Avast,1528,1564 +1724310600,SSL client,122608,931654 +1724310600,Ubuntu Update Manager,31620,525439 +1724310600,Microsoft,124142,4137910 +1724310600,Mail.Ru,1710,4983 +1724310600,Yandex,23549,704846 +1724310600,Ubuntu,7289,6787 +1724310600,Microsoft CryptoAPI,5391,4506 +1724310600,uTorrent,7136,4802 +1724310600,Apple Maps,991,3940 +1724310600,ICMP,4612,0 +1724310600,Weborama,3246,7780 +1724310600,Telegram,768,415 +1724310600,Thin Manager TFTP,472,358 +1724310600,Edge Chromium,3749,10192 +1724310600,Grammarly,2221,7887 +1724310600,DNS over TLS,2158,9541 +1724310600,DNS over HTTPS,13974,51878 +1724310900,Thin Manager TFTP,108,108 +1724310900,__unknown,1484,2060 +1724310900,HTTPS,53855,63418 +1724310900,SSL client,53855,63418 +1724310900,Telegram,53855,63418 +1724310900,Dropbox,140887,20986 +1724310900,Google APIs,13444,11128 +1724310900,HTTPS,158157,40280 +1724310900,SSL client,154331,32114 +1724310900,HTTPS,47455,1612785 +1724310900,ICMP,8200,0 +1724310900,__unknown,36090,167648 +1724310900,Bing,11253,212234 +1724310900,Google APIs,2798,8502 +1724310900,Google,5297,5104 +1724310900,HTTP,473,618 +1724310900,Microsoft Update,473,618 +1724310900,Skype,2522,8278 +1724310900,Windows Update,473,618 +1724310900,HTTPS,338090,13178831 +1724310900,Avast,1270,9910 +1724310900,SSL client,91888,554784 +1724310900,Microsoft,12180,31923 +1724310900,Mail.Ru,40347,54354 +1724310900,Yandex,6682,190087 +1724310900,Microsoft Azure,2418,8931 +1724310900,Office 365,5047,16151 +1724310900,GISMETEO,2074,9310 +1724310900,DNS over HTTPS,12361,32030 +1724310900,__unknown,12024,183909 +1724310900,Dropbox,10011,15955 +1724310900,Google APIs,2828,6902 +1724310900,Google,2833649,4343410 +1724310900,MSN,8375,23716 +1724310900,Adobe Software,608,476 +1724310900,HTTP,3964,3694 +1724310900,Internet Explorer,608,476 +1724310900,Microsoft Update,5473,11709 +1724310900,Advanced Packaging Tool,1810,1688 +1724310900,HTTPS,4753518,53248081 +1724310900,Bing Maps,1417,8805 +1724310900,Mozilla,4828,10138 +1724310900,Avast,4584,18635 +1724310900,SSL client,3544831,5843225 +1724310900,Box,1072,5592 +1724310900,Amazon Web Services,3325,21602 +1724310900,Ubuntu Update Manager,1283,1220 +1724310900,Microsoft,69984,161610 +1724310900,Mail.Ru,387055,534331 +1724310900,King.com,1872,9226 +1724310900,Yandex,181218,595360 +1724310900,Ubuntu,527,468 +1724310900,Microsoft Azure,2806,26899 +1724310900,Microsoft CryptoAPI,1223,1148 +1724310900,Exchange Online,2528,14532 +1724310900,Office 365,5718,15558 +1724310900,Dropbox Download,960,4661 +1724310900,Weborama,2340,5356 +1724310900,Office Mobile,11056,6770 +1724310900,Google Sign in,4955,3606 +1724310900,DNS over HTTPS,5728,28266 +1724310900,__unknown,189653,119614 +1724310900,DNS over HTTPS,1133,5393 +1724310900,HTTPS,26895,26381 +1724310900,__unknown,1392,35305 +1724310900,CoAP,4900,3600 +1724310900,ICMP,1312,0 +1724310900,__unknown,698,416 +1724310900,Google,20190,21525 +1724310900,HTTPS,20190,21525 +1724310900,SSL client,20190,21525 +1724310900,Google,17264,49037 +1724310900,HTTPS,48915,81091 +1724310900,SSL client,17264,49037 +1724310900,ICMP,820,0 +1724310900,__unknown,483467,934686 +1724310900,BitTorrent,310,496 +1724310900,DHCPv6,163,0 +1724310900,Google APIs,43928,37053 +1724310900,Google Drive,15063,15063 +1724310900,Google,29401,73012 +1724310900,Google Translate,8842,17951 +1724310900,DNS,19342,0 +1724310900,HTTP,1739,1674 +1724310900,Microsoft Update,641,507 +1724310900,NTP,25320,5820 +1724310900,HTTPS,549288,944270 +1724310900,Mozilla,2691,1657 +1724310900,SSL client,99925,144736 +1724310900,Microsoft CryptoAPI,1228,1010 +1724310900,ICMP,6320,0 +1724310900,DNS over HTTPS,17512,49218 +1724310900,__unknown,445611,729425 +1724310900,Apple Update,1708959,85867742 +1724310900,Google APIs,15730,12454 +1724310900,Google,29590,45462 +1724310900,Google Translate,3664,7267 +1724310900,QQ,678,343 +1724310900,DNS,51028,42027 +1724310900,HTTP,77254,616039 +1724310900,Internet Explorer,678,343 +1724310900,Launchpad,3126,2414 +1724310900,Microsoft Update,637,498 +1724310900,NetBIOS-dgm,250,0 +1724310900,NTP,630,630 +1724310900,STUN,1860,3300 +1724310900,Odnoklassniki,4548,13883 +1724310900,Steam,637,2916 +1724310900,Advanced Packaging Tool,45023,557092 +1724310900,HTTPS,1968975,87172813 +1724310900,Mozilla,2758,1673 +1724310900,Avast,896,782 +1724310900,Opera,1806,4385 +1724310900,SSL client,1791471,86171090 +1724310900,Ubuntu Update Manager,37009,550294 +1724310900,VeriSign,1132,4280 +1724310900,Yandex,19083,206512 +1724310900,Ubuntu,5738,5302 +1724310900,Microsoft CryptoAPI,6406,10311 +1724310900,Microsoft NCSI,968,974 +1724310900,ICMP,3829,0 +1724310900,Edge Chromium,8205,23685 +1724310900,DNS over TLS,3369,14312 +1724310900,DNS over HTTPS,19403,66401 +1724310900,_err_4655,2809,2607 +1724311200,HTTPS,45885,63952 +1724311200,SSL client,45885,63952 +1724311200,Telegram,45885,63952 +1724311200,HTTPS,112727,495790 +1724311200,SSL client,112727,495790 +1724311200,Mail.Ru,112727,495790 +1724311200,HTTPS,70179,84124 +1724311200,__unknown,48152,53238 +1724311200,HTTPS,64558,61146 +1724311200,SSL client,64558,61146 +1724311200,Google Play,64558,61146 +1724311200,__unknown,14759,10919 +1724311200,MSN,4373,19359 +1724311200,YouTube,2352,13718 +1724311200,TeamViewer,1518,8847 +1724311200,HTTPS,287985,6697651 +1724311200,Avast,1599,11628 +1724311200,SSL client,126562,201122 +1724311200,CloudFront,2799,52125 +1724311200,Microsoft,84473,47178 +1724311200,Mail.Ru,23132,26665 +1724311200,Yandex,2433,1659 +1724311200,Office 365,1689,10574 +1724311200,GISMETEO,2194,9369 +1724311200,__unknown,99322,1647858 +1724311200,Dropbox,4905,6455 +1724311200,Google APIs,6191,10700 +1724311200,MSN,2204,8052 +1724311200,HTTP,4854,11336 +1724311200,HTTPS,1057700,19267635 +1724311200,Apple sites,2045,7188 +1724311200,Avast,1320,10299 +1724311200,Opera,2488,5052 +1724311200,SSL client,650448,1235642 +1724311200,Amazon Web Services,3199,21490 +1724311200,Microsoft,222708,479120 +1724311200,Mail.Ru,188402,226883 +1724311200,Yandex,33825,104159 +1724311200,Google Update,4339,10370 +1724311200,Apple Maps,2768,7152 +1724311200,Office 365,26357,67099 +1724311200,Sharepoint Online,986,5947 +1724311200,Microsoft Windows Live Services Authentication,98693,246100 +1724311200,Office Mobile,57524,36152 +1724311200,Grammarly,2604,6964 +1724311200,DNS over HTTPS,3962,15552 +1724311200,__unknown,188,229 +1724311200,DNS over HTTPS,20458,45408 +1724311200,HTTPS,15617,25577 +1724311200,ICMP,65714,0 +1724311200,__unknown,215,107 +1724311200,Google,30063,37227 +1724311200,HTTPS,53975,47137 +1724311200,SSL client,30063,37227 +1724311200,__unknown,6467,42803 +1724311200,Google,100850,65843 +1724311200,HTTP,9785,56038 +1724311200,Advanced Packaging Tool,9785,56038 +1724311200,HTTPS,113963,87769 +1724311200,Mozilla,2093,1265 +1724311200,SSL client,102943,67108 +1724311200,Apple Maps,1331,4959 +1724311200,ICMP,4170,960 +1724311200,DNS over HTTPS,4528,12094 +1724311200,__unknown,654088,1879362 +1724311200,BITS,2440,6003 +1724311200,BitTorrent,568,1033 +1724311200,DHCPv6,978,0 +1724311200,Google APIs,38168,34337 +1724311200,Google,97780,183684 +1724311200,MSN,6090,9649 +1724311200,BitTorrent tracker,153,537 +1724311200,DNS,15205,0 +1724311200,HTTP,2440,6003 +1724311200,NetBIOS-dgm,243,0 +1724311200,NetBIOS-ns,276,0 +1724311200,NTP,36810,7560 +1724311200,STUN,1984,3300 +1724311200,HTTPS,276300,1369934 +1724311200,Mozilla,2615,1712 +1724311200,SSL client,154457,250177 +1724311200,Yandex,9804,20795 +1724311200,ICMP,13164,4500 +1724311200,Thin Manager TFTP,276,106 +1724311200,DNS over HTTPS,10371,29522 +1724311200,__unknown,670254,3645212 +1724311200,DHCPv6,163,0 +1724311200,Google APIs,9810,13532 +1724311200,Google,39359,150334 +1724311200,QQ,678,343 +1724311200,DNS,48305,41111 +1724311200,Gmail,17414,16450 +1724311200,HTTP,70003,461503 +1724311200,Internet Explorer,678,343 +1724311200,iTunes,853,5875 +1724311200,Launchpad,3422,2480 +1724311200,Microsoft Update,3947,3556 +1724311200,NTP,1800,1800 +1724311200,Odnoklassniki,6308,9740 +1724311200,Advanced Packaging Tool,39214,418338 +1724311200,HTTPS,1049512,2281515 +1724311200,iCloud,624397,223078 +1724311200,Avast,764,782 +1724311200,Opera,1832,4390 +1724311200,SSL client,738363,551263 +1724311200,Ubuntu Update Manager,31635,412112 +1724311200,Yandex,26686,94624 +1724311200,Ubuntu,6360,6035 +1724311200,Microsoft CryptoAPI,6991,6531 +1724311200,ICMP,5305,0 +1724311200,ICMP for IPv6,70,0 +1724311200,Google Sign in,5532,8055 +1724311200,Thin Manager TFTP,196,252 +1724311200,Edge Chromium,5330,14286 +1724311200,Grammarly,2261,7887 +1724311200,DNS over TLS,4382,19082 +1724311200,DNS over HTTPS,14555,62312 +1724311500,Thin Manager TFTP,672,280 +1724311500,Discard,43840,33803 +1724311500,HTTPS,29731,7899 +1724311500,Mozilla,29731,7899 +1724311500,SSL client,29731,7899 +1724311500,Dropbox,125375,21585 +1724311500,HTTPS,221930,89553 +1724311500,SSL client,221930,89553 +1724311500,Dropbox Download,42086,5932 +1724311500,Telegram,54469,62036 +1724311500,HTTPS,8778,9619 +1724311500,__unknown,707824,239338 +1724311500,MSN,2108,8041 +1724311500,Skype,2535,8338 +1724311500,HTTPS,272972,1214158 +1724311500,Bing Maps,6650,39328 +1724311500,Avast,1254,8336 +1724311500,SSL client,208410,267745 +1724311500,CloudFront,4133,96088 +1724311500,Microsoft,156981,37255 +1724311500,Mail.Ru,25215,41824 +1724311500,Yandex,7340,19173 +1724311500,GISMETEO,2194,9362 +1724311500,DNS over HTTPS,0,1736 +1724311500,__unknown,203030,1085289 +1724311500,Bing,3649,18947 +1724311500,Dropbox,10255,228021 +1724311500,Google APIs,8551,22449 +1724311500,Google,234866,141968 +1724311500,MSN,6980,22434 +1724311500,Google Analytics,3197,8319 +1724311500,HTTP,4917,10813 +1724311500,VKontakte,16580,28108 +1724311500,HTTPS,1379626,17191307 +1724311500,iCloud,9678,24672 +1724311500,SSL client,794206,1162136 +1724311500,Amazon Web Services,3259,21490 +1724311500,Microsoft,136594,66043 +1724311500,Mail.Ru,280522,358023 +1724311500,Yandex,16716,51741 +1724311500,Google Update,4391,10370 +1724311500,Microsoft CryptoAPI,526,443 +1724311500,uTorrent,7400,12948 +1724311500,Apple Maps,96352,4789470 +1724311500,Exchange Online,1321,6471 +1724311500,Office 365,1429,5956 +1724311500,Microsoft Windows Live Services Authentication,53209,144546 +1724311500,DNS over HTTPS,2278,10785 +1724311500,HTTPS,2722164,5350517 +1724311500,SSL client,2722164,5350517 +1724311500,DNS over HTTPS,2722164,5350517 +1724311500,HTTPS,50191,25643 +1724311500,HTTPS,9578,13402 +1724311500,SSL client,9578,13402 +1724311500,DNS over HTTPS,9578,13402 +1724311500,HTTPS,448991,6013469 +1724311500,__unknown,672,480 +1724311500,HTTP,1750,32867 +1724311500,HTTPS,15865,210545 +1724311500,DNS over HTTPS,0,1390 +1724311500,__unknown,1970,1016 +1724311500,Google,23319,23333 +1724311500,Google Translate,12373,13387 +1724311500,HTTP,689,474 +1724311500,HTTPS,53380,129723 +1724311500,SSL client,35692,36720 +1724311500,ICMP,574,0 +1724311500,CoAP,1764,1296 +1724311500,__unknown,698532,706369 +1724311500,BITS,1530,14365 +1724311500,BitTorrent,310,496 +1724311500,Google APIs,22952,71113 +1724311500,Google,84057,177703 +1724311500,DNS,14595,0 +1724311500,HTTP,2304,15731 +1724311500,NTP,12570,2820 +1724311500,STUN,1984,3448 +1724311500,VKontakte,31578,62499 +1724311500,HTTPS,281456,1330860 +1724311500,WhatsApp,11814,223875 +1724311500,SSL client,141760,320120 +1724311500,Google Play,3173,8805 +1724311500,Office 365,2304,15731 +1724311500,ICMP,26738,0 +1724311500,ICMP for IPv6,70,0 +1724311500,Thin Manager TFTP,276,106 +1724311500,DNS over HTTPS,20219,60964 +1724311500,__unknown,478409,1871816 +1724311500,BITS,1255,792 +1724311500,DHCPv6,978,0 +1724311500,Google,29285,65191 +1724311500,QQ,678,343 +1724311500,DNS,62921,49726 +1724311500,HTTP,84706,733857 +1724311500,Internet Explorer,1440,1003 +1724311500,Launchpad,3200,2282 +1724311500,Microsoft Update,5943,21311 +1724311500,NTP,14100,4350 +1724311500,VKontakte,2488,6280 +1724311500,Odnoklassniki,6399,14810 +1724311500,Advanced Packaging Tool,45399,551457 +1724311500,HTTPS,271736,672616 +1724311500,iCloud,4445,15222 +1724311500,Avast,2718,6897 +1724311500,SSL client,58019,137783 +1724311500,Ubuntu Update Manager,38042,545429 +1724311500,VeriSign,566,2141 +1724311500,Yandex,7736,15154 +1724311500,Ubuntu,5007,4664 +1724311500,Microsoft CryptoAPI,10167,130819 +1724311500,Microsoft NCSI,411,487 +1724311500,Apple Maps,3212,10098 +1724311500,ICMP,2914,180 +1724311500,Telegram,1548,1555 +1724311500,Edge Chromium,6444,17664 +1724311500,DNS over TLS,2302,9719 +1724311500,DNS over HTTPS,27552,89266 +1724311500,_err_4655,2679,2607 +1724311800,__unknown,19699,24712 +1724311800,HTTPS,72775,12485 +1724311800,SSL client,72775,12485 +1724311800,Yandex,72775,12485 +1724311800,HTTPS,13440,19654 +1724311800,SSL client,13440,19654 +1724311800,Yandex,9738,11591 +1724311800,Exchange Online,3702,8063 +1724311800,Windows Live,28158,7288 +1724311800,HTTPS,66061,243703 +1724311800,SSL client,41877,234022 +1724311800,Microsoft,13719,226734 +1724311800,Dropbox,117227,21404 +1724311800,HTTPS,126770,23339 +1724311800,SSL client,117227,21404 +1724311800,DNS over HTTPS,23604,49532 +1724311800,__unknown,966,6260 +1724311800,HTTPS,17185,24716 +1724311800,SSL client,1566,6024 +1724311800,Google Play,1566,6024 +1724311800,__unknown,76108,3837531 +1724311800,Bing,8095,119432 +1724311800,Dropbox,2957,1343 +1724311800,Google Analytics,8505,9504 +1724311800,HTTPS,732831,54610302 +1724311800,iCloud,3254,19206 +1724311800,Avast,2376,18019 +1724311800,SSL client,124866,266184 +1724311800,Microsoft,53297,36320 +1724311800,Mail.Ru,34793,37838 +1724311800,Yandex,8664,15713 +1724311800,Sharepoint Online,986,5948 +1724311800,GISMETEO,1939,2861 +1724311800,__unknown,348717,169470 +1724311800,Apple Update,9335,489613 +1724311800,Bing,10740,34264 +1724311800,Google APIs,20348,22534 +1724311800,Google,2973,7083 +1724311800,MSN,6483,12609 +1724311800,Dell,1111,4306 +1724311800,HTTP,728,535 +1724311800,iTunes,6869,74905 +1724311800,LiveJournal,2203,7197 +1724311800,Skype,2596,8338 +1724311800,YouTube,9144,5862 +1724311800,VKontakte,2405,4933 +1724311800,TwitchTV,6637,7316 +1724311800,HTTPS,1209733,7571532 +1724311800,Apple sites,16446,109167 +1724311800,iCloud,6004,8763 +1724311800,Opera,2488,5052 +1724311800,SSL client,491045,1359260 +1724311800,CloudFront,1509,1062 +1724311800,Microsoft,74855,107205 +1724311800,Mail.Ru,171979,191628 +1724311800,Yandex,19628,55209 +1724311800,Google Play,20416,26623 +1724311800,Rambler,24485,39293 +1724311800,Office 365,9989,19878 +1724311800,Microsoft Windows Live Services Authentication,29744,77118 +1724311800,Office Mobile,25944,16874 +1724311800,Zoom,19742,32155 +1724311800,Grammarly,9202,27480 +1724311800,DNS over HTTPS,8945,38361 +1724311800,HTTPS,45885,63958 +1724311800,SSL client,45885,63958 +1724311800,ICMP,21730,0 +1724311800,Telegram,45885,63958 +1724311800,__unknown,214,225 +1724311800,__unknown,10048,14738 +1724311800,HTTPS,3211,5339 +1724311800,__unknown,1892,1512 +1724311800,Google,5015,10185 +1724311800,HTTPS,33493,38966 +1724311800,SSL client,5015,10185 +1724311800,ICMP,172,0 +1724311800,__unknown,690637,1085394 +1724311800,BitTorrent,463,694 +1724311800,DHCPv6,163,0 +1724311800,Google APIs,10940,16399 +1724311800,Google,104333,784896 +1724311800,Google Translate,10437,20697 +1724311800,BitTorrent tracker,153,198 +1724311800,DNS,19385,0 +1724311800,Gmail,18124,22906 +1724311800,HTTP,1919,2038 +1724311800,NetBIOS-dgm,250,0 +1724311800,NTP,13200,3450 +1724311800,STUN,27127,6600 +1724311800,YouTube,6479,8095 +1724311800,VKontakte,2863,6161 +1724311800,HTTPS,320019,3713464 +1724311800,SSL client,171236,948218 +1724311800,Yandex,3806,74911 +1724311800,Microsoft CryptoAPI,1427,1432 +1724311800,Google Play,2324,6195 +1724311800,ICMP,12013,2492 +1724311800,Google Sign in,12422,8564 +1724311800,Thin Manager TFTP,276,106 +1724311800,DNS over HTTPS,18316,53588 +1724311800,CoAP,1176,864 +1724311800,__unknown,448129,4611332 +1724311800,DHCPv6,978,0 +1724311800,Google APIs,19443,30641 +1724311800,Google,21101,36083 +1724311800,Kaspersky,608,607 +1724311800,QQ,678,343 +1724311800,DNS,46022,40806 +1724311800,Gmail,7102,3656 +1724311800,HTTP,100054,1962608 +1724311800,Internet Explorer,678,343 +1724311800,Launchpad,3200,2348 +1724311800,Microsoft Update,1587,1317 +1724311800,NetBIOS-dgm,243,0 +1724311800,NTP,13560,3810 +1724311800,SSL,1771,1452 +1724311800,VKontakte,2293,4933 +1724311800,Odnoklassniki,1851,1190 +1724311800,Advanced Packaging Tool,49467,698399 +1724311800,HTTPS,431232,1254780 +1724311800,Apple sites,7636,23386 +1724311800,iCloud,23939,174123 +1724311800,Avast,382,391 +1724311800,SSL client,96680,313116 +1724311800,Ubuntu Update Manager,40905,690932 +1724311800,Microsoft,17994,1220090 +1724311800,Yandex,7594,26022 +1724311800,Ubuntu,6917,6605 +1724311800,Microsoft CryptoAPI,2730,2279 +1724311800,Microsoft WNS,573,8037 +1724311800,uTorrent,7058,4797 +1724311800,Apple Maps,8014,24930 +1724311800,ICMP,2720,0 +1724311800,Google Sign in,5532,8212 +1724311800,Thin Manager TFTP,196,252 +1724311800,Edge Chromium,5163,16775 +1724311800,DNS over TLS,4670,19280 +1724311800,DNS over HTTPS,12202,46192 +1724312099,Thin Manager TFTP,108,108 +1724312099,CoAP,205702,153446 +1724312099,HTTPS,7882,9710 +1724312099,SSL client,7882,9710 +1724312099,Sharepoint Online,7882,9710 +1724312099,HTTPS,92340,42389 +1724312099,__unknown,1702,3512 +1724312099,HTTPS,253475,130947 +1724312099,Google APIs,2027,7392 +1724312099,HTTPS,39162,46669 +1724312099,SSL client,23547,25720 +1724312099,Google Play,21520,18328 +1724312099,__unknown,1338086,6585775 +1724312099,Google APIs,2803,8334 +1724312099,HTTP,43846,1408818 +1724312099,Microsoft Update,1101,1722 +1724312099,SSL,29110,6432 +1724312099,VKontakte,4899,22867 +1724312099,Windows Update,1101,1722 +1724312099,HTTPS,1276137,2951483 +1724312099,Apple sites,1410,1587 +1724312099,Avast,1533,11991 +1724312099,SSL client,366066,686190 +1724312099,Microsoft,61404,1425256 +1724312099,Mail.Ru,39262,54496 +1724312099,Yandex,241649,512059 +1724312099,Rambler,55851,56696 +1724312099,Telegram,2214,7880 +1724312099,__unknown,364120,151779 +1724312099,Bing,1877,9330 +1724312099,Google APIs,96670137,2262846 +1724312099,Firefox,942,252 +1724312099,Gmail,3142,6587 +1724312099,HTTP,942,252 +1724312099,Skype,2582,8337 +1724312099,VKontakte,4816,9108 +1724312099,HTTPS,97231054,4182982 +1724312099,APNS,13302,5837 +1724312099,Apple sites,8186,188699 +1724312099,Mozilla,2081,4639 +1724312099,Avast,1457,9163 +1724312099,SSL client,97037909,3853493 +1724312099,Microsoft,35324,48873 +1724312099,Mail.Ru,183977,208296 +1724312099,Siri,1858,6178 +1724312099,Yandex,37359,950962 +1724312099,Apple Maps,2089,7494 +1724312099,Office 365,1881,37271 +1724312099,Microsoft Windows Live Services Authentication,30157,50497 +1724312099,Office Mobile,25979,16877 +1724312099,Google Sign in,4955,3558 +1724312099,Stripe,4537,5460 +1724312099,DNS over TLS,1393,9500 +1724312099,DNS over HTTPS,9666,45728 +1724312099,Adobe Update,1734,4937 +1724312099,Discord,1175,6538 +1724312099,HTTPS,107716,139346 +1724312099,SSL client,107716,139346 +1724312099,Telegram,107716,139346 +1724312099,ICMP,16296,0 +1724312099,__unknown,1020,28540 +1724312099,HTTPS,31992,28038 +1724312099,ICMP,5038,3000 +1724312099,__unknown,2430,3653 +1724312099,HTTPS,40254,20954 +1724312099,ICMP,1032,0 +1724312099,DNS over HTTPS,11018,25789 +1724312099,__unknown,5015,2750 +1724312099,Discard,2160,1617 +1724312099,HTTP,595,408 +1724312099,HTTPS,30379,197726 +1724312099,ICMP,14992,4320 +1724312099,DNS over HTTPS,5241,11465 +1724312099,__unknown,499397,867081 +1724312099,BitTorrent,310,496 +1724312099,DHCPv6,163,0 +1724312099,Google APIs,6934,12036 +1724312099,Google Drive,8964,11089 +1724312099,Google,24134,57195 +1724312099,DNS,18109,0 +1724312099,Gmail,8620,15158 +1724312099,HTTP,3482,33135 +1724312099,STUN,186,222 +1724312099,VKontakte,2803,6103 +1724312099,Odnoklassniki,3350,9175 +1724312099,HTTPS,153325,264038 +1724312099,Apple sites,4697,18284 +1724312099,SSL client,75314,141468 +1724312099,Microsoft,3482,33135 +1724312099,Pocket,2703,3166 +1724312099,Google Play,15812,12428 +1724312099,ICMP,36037,1560 +1724312099,DNS over HTTPS,10982,39230 +1724312099,CoAP,980,720 +1724312099,__unknown,619770,883128 +1724312099,Google APIs,19644,72179 +1724312099,Google,216156,1878778 +1724312099,QQ,738,343 +1724312099,Chrome,565,484 +1724312099,DNS,48120,43274 +1724312099,Gmail,68664,190738 +1724312099,HTTP,88007,928926 +1724312099,Internet Explorer,738,343 +1724312099,Launchpad,3200,2282 +1724312099,Microsoft Update,982,814 +1724312099,NTP,1620,1530 +1724312099,VKontakte,4590,9878 +1724312099,Advanced Packaging Tool,52047,839408 +1724312099,IMAPS,68664,190738 +1724312099,HTTPS,663971,3187610 +1724312099,Apple sites,8096,20912 +1724312099,iCloud,12298,40789 +1724312099,Avast,1146,1173 +1724312099,SSL client,352122,2741406 +1724312099,Ubuntu Update Manager,45816,834404 +1724312099,Microsoft,7644,29249 +1724312099,Mail.Ru,1084,5650 +1724312099,Yandex,23790,531943 +1724312099,Ubuntu,4306,4101 +1724312099,Microsoft CryptoAPI,1586,1944 +1724312099,Microsoft NCSI,514,487 +1724312099,Microsoft WNS,693,8038 +1724312099,WeChat,1084,745 +1724312099,ICMP,4332,60 +1724312099,ICMP for IPv6,70,0 +1724312099,Telegram,8908,21855 +1724312099,Thin Manager TFTP,276,106 +1724312099,Edge Chromium,4636,15407 +1724312099,DNS over TLS,1278,4524 +1724312099,DNS over HTTPS,56868,158782 +1724312400,HTTPS,71987,139613 +1724312400,SSL client,71987,139613 +1724312400,Yandex,71987,139613 +1724312400,__unknown,350354,574299 +1724312400,HTTPS,1846,7128 +1724312400,Mozilla,1846,7128 +1724312400,SSL client,1846,7128 +1724312400,HTTPS,36335,44537 +1724312400,SSL client,7555,13097 +1724312400,Yandex,7555,13097 +1724312400,Dropbox,134855,19879 +1724312400,HTTPS,198861,73770 +1724312400,SSL client,198861,73770 +1724312400,Yandex,26452,48592 +1724312400,Dropbox Download,37554,5299 +1724312400,HTTPS,11404,30612 +1724312400,SSL client,5697,13857 +1724312400,Yandex,5697,13857 +1724312400,__unknown,30082,5591 +1724312400,HTTP,1067,957 +1724312400,TeamViewer,1510,8838 +1724312400,HTTPS,164056,786929 +1724312400,Apple sites,1934,7950 +1724312400,Avast,1254,9250 +1724312400,Opera,5250,4331 +1724312400,SSL client,116806,334096 +1724312400,Microsoft,16347,28362 +1724312400,Mail.Ru,30571,48051 +1724312400,Yandex,58335,224939 +1724312400,Microsoft CryptoAPI,1067,957 +1724312400,Stripe,6855,6706 +1724312400,DNS over HTTPS,17528,48546 +1724312400,__unknown,100042,20043 +1724312400,Bing,9826,12080 +1724312400,Google APIs,2498,6553 +1724312400,HTTP,3046,4598 +1724312400,TwitchTV,5433,7089 +1724312400,Advanced Packaging Tool,580,539 +1724312400,SMTPS,499339,29839 +1724312400,HTTPS,442729,766409 +1724312400,Apple sites,1862,4534 +1724312400,iCloud,5374,9489 +1724312400,Avast,1320,10427 +1724312400,SSL client,777326,521419 +1724312400,CloudFront,4478,55388 +1724312400,Ubuntu Update Manager,580,539 +1724312400,Microsoft,53360,77791 +1724312400,Mail.Ru,153212,192899 +1724312400,Yandex,523885,84826 +1724312400,Ubuntu,351,395 +1724312400,Microsoft CryptoAPI,1181,1062 +1724312400,Exchange Online,2766,14532 +1724312400,Office 365,5413,13600 +1724312400,Xiaomi,7899,32211 +1724312400,Edge Chromium,934,2602 +1724312400,DNS over HTTPS,27498,63529 +1724312400,HTTPS,3843,48546 +1724312400,Spotify,2439,47889 +1724312400,SSL client,2439,47889 +1724312400,__unknown,0,1390 +1724312400,HTTPS,8514,11446 +1724312400,SSL client,8514,11446 +1724312400,DNS over HTTPS,8514,11446 +1724312400,HTTP,579,408 +1724312400,HTTPS,40793,20495 +1724312400,__unknown,1790,1024 +1724312400,HTTPS,27238,256869 +1724312400,iCloud,3362,9447 +1724312400,SSL client,3362,9447 +1724312400,ICMP,8118,0 +1724312400,DNS over HTTPS,14526,41607 +1724312400,__unknown,874338,2517066 +1724312400,BitTorrent,463,1033 +1724312400,Google APIs,16656,41483 +1724312400,Google Drive,40500,23601 +1724312400,Google,80322,178645 +1724312400,Google Translate,9645,19497 +1724312400,BitTorrent tracker,153,537 +1724312400,DNS,17444,0 +1724312400,Gmail,8560,15279 +1724312400,HTTP,562,462 +1724312400,NetBIOS-dgm,250,0 +1724312400,NTP,13650,3900 +1724312400,STUN,1860,3300 +1724312400,VKontakte,16247,240528 +1724312400,HTTPS,292466,1412240 +1724312400,Apple sites,1411,32516 +1724312400,Mozilla,4402,9983 +1724312400,SSL client,202827,712340 +1724312400,Yandex,5125,132412 +1724312400,Microsoft CryptoAPI,562,462 +1724312400,Google Play,7536,9619 +1724312400,ICMP,33834,2340 +1724312400,Google Sign in,12423,8777 +1724312400,DNS over HTTPS,25235,76524 +1724312400,CoAP,980,720 +1724312400,__unknown,1057168,14526624 +1724312400,Bing,2086,6090 +1724312400,DHCPv6,1141,0 +1724312400,Google APIs,4882,13432 +1724312400,Google Drive,13532,31895 +1724312400,Google,37636,82515 +1724312400,QQ,678,343 +1724312400,Chrome,2021,7072 +1724312400,DNS,53687,45614 +1724312400,Firefox,822,1129 +1724312400,HTTP,67457,415029 +1724312400,Internet Explorer,678,343 +1724312400,Launchpad,3200,2216 +1724312400,Microsoft Update,642,497 +1724312400,NTP,540,540 +1724312400,SSL,797,7092 +1724312400,VKontakte,15428,32682 +1724312400,Steam,2213,22106 +1724312400,Advanced Packaging Tool,36409,343851 +1724312400,HTTPS,357106,1165004 +1724312400,WhatsApp,3853,70340 +1724312400,iCloud,9012,34439 +1724312400,Avast,448,457 +1724312400,SSL client,123864,411043 +1724312400,Ubuntu Update Manager,28417,337323 +1724312400,Microsoft,2959,14643 +1724312400,Yandex,24471,168112 +1724312400,Ubuntu,6496,6144 +1724312400,Microsoft CryptoAPI,2582,3128 +1724312400,Microsoft NCSI,908,974 +1724312400,Microsoft WNS,633,8038 +1724312400,Google Hangouts,797,7092 +1724312400,ICMP,2762,0 +1724312400,Google Sign in,5535,8070 +1724312400,Thin Manager TFTP,472,358 +1724312400,Edge Chromium,5857,15652 +1724312400,DNS over TLS,2356,9540 +1724312400,DNS over HTTPS,45498,138170 +1724312400,Google Meet,4619,12009 +1724312400,_err_4655,2752,3665 +1724312700,Thin Manager TFTP,672,280 +1724312700,__unknown,223086,323960 +1724312700,SSL,5728,13840 +1724312700,SSL client,5728,13840 +1724312700,Google Hangouts,5728,13840 +1724312700,__unknown,3776,17644 +1724312700,HTTPS,62016,78317 +1724312700,SSL client,62016,78317 +1724312700,Mail.Ru,7607,13755 +1724312700,Telegram,54409,64562 +1724312700,__unknown,360,7635 +1724312700,Dropbox,124057,21347 +1724312700,Skype,3977,8741 +1724312700,HTTPS,179136,166645 +1724312700,SSL client,141718,151823 +1724312700,Microsoft,10789,114542 +1724312700,Microsoft Teams,2895,7193 +1724312700,HTTPS,3896,8326 +1724312700,SSL client,3896,8326 +1724312700,Yandex,3896,8326 +1724312700,__unknown,884180,822989 +1724312700,Bing,2523,10204 +1724312700,Google,2607,12244 +1724312700,Skype,4291,15820 +1724312700,TeamViewer,1517,8838 +1724312700,HTTPS,213821,830457 +1724312700,Avast,1254,8464 +1724312700,SSL client,53379,126323 +1724312700,Microsoft,10467,22790 +1724312700,Mail.Ru,30720,47963 +1724312700,DNS over HTTPS,2163,8567 +1724312700,__unknown,97216,76055 +1724312700,Bing,1772,8828 +1724312700,Google APIs,2740,6659 +1724312700,Google,317407,168451 +1724312700,Windows Live,36453,19457 +1724312700,HTTP,587,2006 +1724312700,VKontakte,5004,13313 +1724312700,Steam,15617,22437 +1724312700,SMTPS,24373,13952 +1724312700,HTTPS,1005216,1850288 +1724312700,Apple sites,4894,6257 +1724312700,iCloud,45638,119643 +1724312700,SSL client,882294,1110975 +1724312700,CloudFront,3742,1093 +1724312700,Microsoft,219897,320676 +1724312700,Mail.Ru,135028,191185 +1724312700,Yandex,84518,198096 +1724312700,Apple Maps,5675,473655 +1724312700,Exchange Online,1257,8125 +1724312700,Office 365,2557,8768 +1724312700,Sharepoint Online,986,5946 +1724312700,Weborama,3099,6494 +1724312700,Telegram,396,924 +1724312700,Edge Chromium,587,2006 +1724312700,Adobe Fonts,2272,7553 +1724312700,DNS over HTTPS,9192,36262 +1724312700,Google,34535,45778 +1724312700,HTTPS,34535,45778 +1724312700,SSL client,34535,45778 +1724312700,__unknown,188,229 +1724312700,__unknown,15488,366550 +1724312700,HTTPS,26164,10452 +1724312700,__unknown,16677,17069 +1724312700,Google,48610,56759 +1724312700,HTTPS,71936,71847 +1724312700,SSL client,48610,56759 +1724312700,__unknown,1432,1008 +1724312700,Google APIs,9541,18476 +1724312700,Google,5125,10975 +1724312700,HTTP,803,425 +1724312700,HTTPS,223618,403375 +1724312700,SSL client,197417,90884 +1724312700,Google Play,182751,61433 +1724312700,ICMP,1524,0 +1724312700,DNS over HTTPS,18939,45861 +1724312700,__unknown,939910,984632 +1724312700,BITS,87624,5414428 +1724312700,BitTorrent,310,496 +1724312700,Google APIs,47318,33387 +1724312700,Google,40107,53127 +1724312700,Google Translate,9664,14562 +1724312700,DNS,19967,0 +1724312700,Gmail,36321,105243 +1724312700,HTTP,90859,5466672 +1724312700,NetBIOS-dgm,243,0 +1724312700,NTP,13470,3720 +1724312700,SSL,35883,17893 +1724312700,VKontakte,8201,15982 +1724312700,Odnoklassniki,5222,14872 +1724312700,HTTPS,347504,899602 +1724312700,APNS,35883,17893 +1724312700,SSL client,194799,324911 +1724312700,Weather.com,12083,69845 +1724312700,Microsoft,89093,5464507 +1724312700,Microsoft CryptoAPI,1766,2165 +1724312700,Office 365,619,1199 +1724312700,ICMP,4574,0 +1724312700,Telegram,22832,174196 +1724312700,DNS over HTTPS,14905,36902 +1724312700,CoAP,1372,1008 +1724312700,__unknown,853629,3166696 +1724312700,DHCPv6,978,0 +1724312700,Google APIs,20234,31880 +1724312700,Google,21362,60282 +1724312700,QQ,678,343 +1724312700,DNS,39054,39178 +1724312700,Gmail,15706,93167 +1724312700,Google Analytics,11741,10588 +1724312700,HTTP,61997,546948 +1724312700,Internet Explorer,1105,1087 +1724312700,Launchpad,3200,2282 +1724312700,Microsoft Update,641,507 +1724312700,NTP,12570,2820 +1724312700,SSL,16658,22971 +1724312700,STUN,1230,1110 +1724312700,VKontakte,49928,251243 +1724312700,Advanced Packaging Tool,41934,525515 +1724312700,IMAPS,15706,93167 +1724312700,HTTPS,508433,3345774 +1724312700,APNS,13037,6824 +1724312700,Apple sites,23386,121914 +1724312700,iCloud,8039,18089 +1724312700,Avast,764,782 +1724312700,SSL client,201161,853372 +1724312700,Ubuntu Update Manager,33930,518957 +1724312700,Yandex,18230,196596 +1724312700,Ubuntu,6504,6112 +1724312700,Microsoft CryptoAPI,641,507 +1724312700,Apple Maps,1670,10115 +1724312700,ICMP,4380,0 +1724312700,Weborama,2785,6535 +1724312700,Edge Chromium,2108,5458 +1724312700,DNS over TLS,5527,23849 +1724312700,DNS over HTTPS,61281,209076 +1724313000,Apple Mail,3990,9276 +1724313000,IMAPS,3990,9276 +1724313000,SSL client,3990,9276 +1724313000,HTTPS,45687,63820 +1724313000,SSL client,45687,63820 +1724313000,Telegram,45687,63820 +1724313000,HTTPS,53723,70618 +1724313000,SSL client,53723,70618 +1724313000,Telegram,53723,70618 +1724313000,HTTPS,5997,14128 +1724313000,SSL client,5997,14128 +1724313000,Exchange Online,2550,7327 +1724313000,Office 365,3447,6801 +1724313000,__unknown,1260,840 +1724313000,HTTPS,12460,12317 +1724313000,__unknown,56136,54353 +1724313000,Adobe Software,4750,6367 +1724313000,HTTPS,33621,85607 +1724313000,SSL client,9001,23920 +1724313000,Yandex,4251,17553 +1724313000,Zoom,4992,7982 +1724313000,__unknown,46936,21524 +1724313000,Dropbox,3342,2538 +1724313000,Google APIs,33207,15916 +1724313000,Google Translate,4306,8205 +1724313000,MSN,2863,14713 +1724313000,HTTPS,520448,2564279 +1724313000,Mozilla,2141,4771 +1724313000,Avast,1254,8768 +1724313000,SSL client,101398,162445 +1724313000,Microsoft,14528,26333 +1724313000,Mail.Ru,16218,27436 +1724313000,Yandex,15226,21909 +1724313000,Office 365,6725,22574 +1724313000,Sharepoint Online,1588,9282 +1724313000,DNS over HTTPS,5544,20658 +1724313000,__unknown,276546,220216 +1724313000,Google APIs,4397,13259 +1724313000,Google,236516,151303 +1724313000,MSN,8630,42862 +1724313000,HTTP,4301,6608 +1724313000,Microsoft Update,635,712 +1724313000,Skype,2644,8278 +1724313000,SSL,2366,6164 +1724313000,VKontakte,7068,16282 +1724313000,HTTPS,1566451,5906145 +1724313000,Apple sites,1425,7955 +1724313000,iCloud,5647,10382 +1724313000,Avast,109253,293416 +1724313000,Opera,2950,7815 +1724313000,SSL client,1088179,1556396 +1724313000,Microsoft,188766,93784 +1724313000,VeriSign,943,976 +1724313000,Mail.Ru,381217,472256 +1724313000,King.com,998,4641 +1724313000,Yandex,94493,336443 +1724313000,Microsoft CryptoAPI,2004,1840 +1724313000,Google Play,7700,16330 +1724313000,Office 365,7449,28495 +1724313000,Weborama,2768,6117 +1724313000,Firebase Crashlytics,2006,6822 +1724313000,Yandex Market,5462,9097 +1724313000,Office Mobile,14770,8948 +1724313000,Xiaomi,6278,23393 +1724313000,DNS over TLS,859,4769 +1724313000,DNS over HTTPS,5620,24866 +1724313000,Lenovo,970,4256 +1724313000,HTTPS,51317,61665 +1724313000,__unknown,3390,1710 +1724313000,Google,185723,605984 +1724313000,HTTPS,185723,605984 +1724313000,SSL client,185723,605984 +1724313000,HTTPS,16385,14583 +1724313000,__unknown,22324,38659 +1724313000,HTTPS,25760,49267 +1724313000,ICMP,328,0 +1724313000,DNS over HTTPS,5462,14838 +1724313000,__unknown,928207,4457875 +1724313000,BitTorrent,463,694 +1724313000,DHCPv6,163,0 +1724313000,Google APIs,50226,39993 +1724313000,Google Drive,6039,9959 +1724313000,Google,182365,94441 +1724313000,Google Translate,5489,5118 +1724313000,BitTorrent tracker,153,198 +1724313000,DNS,20837,0 +1724313000,Gmail,15053,24142 +1724313000,HTTP,767,851 +1724313000,NTP,24780,5280 +1724313000,STUN,372,444 +1724313000,YouTube,4224,50242 +1724313000,VKontakte,2802,6103 +1724313000,HTTPS,516336,2504464 +1724313000,WhatsApp,32345,780028 +1724313000,iCloud,8479,14275 +1724313000,SSL client,344953,876421 +1724313000,Yandex,70276,632148 +1724313000,ICMP,23969,0 +1724313000,Thin Manager TFTP,276,106 +1724313000,DNS over HTTPS,18659,50790 +1724313000,__unknown,3581627,95954531 +1724313000,Apple Update,1835,5051 +1724313000,Google APIs,7730,22235 +1724313000,Google,51045,301683 +1724313000,QQ,738,343 +1724313000,Chrome,1780,1227 +1724313000,DNS,44032,38096 +1724313000,Gmail,9757,12498 +1724313000,HTTP,77305,581261 +1724313000,Internet Explorer,738,343 +1724313000,Launchpad,3200,2216 +1724313000,Microsoft Update,1623,1336 +1724313000,NetBIOS-dgm,250,0 +1724313000,NTP,900,900 +1724313000,SSL,797,7091 +1724313000,YouTube,4481,40393 +1724313000,VKontakte,1335,4361 +1724313000,Advanced Packaging Tool,44706,548621 +1724313000,HTTPS,543818,2184291 +1724313000,Apple sites,7992,26997 +1724313000,iCloud,17201,185681 +1724313000,Avast,1530,6802 +1724313000,SSL client,166322,1149495 +1724313000,Ubuntu Update Manager,37409,543067 +1724313000,Microsoft,2114,6293 +1724313000,Mail.Ru,4049,5511 +1724313000,Yandex,45097,501825 +1724313000,Ubuntu,4947,4252 +1724313000,Microsoft CryptoAPI,6446,5433 +1724313000,Microsoft NCSI,1034,1040 +1724313000,Apple Maps,1540,5047 +1724313000,Optimizely,2082,5133 +1724313000,Google Hangouts,797,7091 +1724313000,ICMP,2413,0 +1724313000,Telegram,933,1032 +1724313000,Google Sign in,5875,4588 +1724313000,Thin Manager TFTP,196,252 +1724313000,Edge Chromium,4743,12283 +1724313000,DNS over TLS,2158,9539 +1724313000,DNS over HTTPS,14144,57712 +1724313300,Thin Manager TFTP,108,108 +1724313300,__unknown,1544575,663255 +1724313300,__unknown,158770,135533 +1724313300,ICMP,58876,0 +1724313300,HTTPS,19202,52680 +1724313300,SSL client,19202,52680 +1724313300,Yandex,19202,52680 +1724313300,HTTPS,777608,264404 +1724313300,SSL client,777608,264404 +1724313300,Mail.Ru,777608,264404 +1724313300,__unknown,1244,1838 +1724313300,HTTPS,5292,10625 +1724313300,SSL client,5292,10625 +1724313300,Yandex,5292,10625 +1724313300,Dropbox,124130,20516 +1724313300,Google APIs,5824,19018 +1724313300,HTTPS,178586,57254 +1724313300,SSL client,167588,44837 +1724313300,Dropbox Download,37634,5303 +1724313300,Google APIs,1882,11957 +1724313300,HTTPS,15847,21878 +1724313300,SSL client,1882,11957 +1724313300,__unknown,58756,43249 +1724313300,Bing,3428,6421 +1724313300,Google APIs,18093,586908 +1724313300,Google Analytics,19195,12213 +1724313300,HTTP,812,680 +1724313300,HTTPS,604345,1048311 +1724313300,Mozilla,4284,9278 +1724313300,Avast,1818,13735 +1724313300,SSL client,507188,896356 +1724313300,Microsoft,2465,9567 +1724313300,Mail.Ru,440350,220931 +1724313300,Yandex,6055,10260 +1724313300,Microsoft CryptoAPI,812,680 +1724313300,Google Play,9978,25678 +1724313300,Office 365,1522,1365 +1724313300,DNS over HTTPS,7753,28882 +1724313300,__unknown,81452,213654 +1724313300,Google APIs,2001,6686 +1724313300,Google,97489,168816 +1724313300,MSN,2166,8103 +1724313300,HTTP,253329,33956908 +1724313300,Microsoft Update,2410,5010 +1724313300,VKontakte,4795,9695 +1724313300,Steam,2579,5244 +1724313300,Advanced Packaging Tool,253329,33956908 +1724313300,HTTPS,1531989,18986217 +1724313300,Apple sites,2358,5928 +1724313300,iCloud,17478,49433 +1724313300,Avast,4590,21246 +1724313300,SSL client,591277,839925 +1724313300,Ubuntu Update Manager,252694,33956342 +1724313300,Microsoft,165427,73514 +1724313300,Mail.Ru,204668,357210 +1724313300,Yandex,28451,74693 +1724313300,Ubuntu,635,566 +1724313300,Apple Maps,4033,11888 +1724313300,Office 365,3490,15576 +1724313300,Microsoft Windows Live Services Authentication,6542,15698 +1724313300,Office Mobile,25671,17004 +1724313300,Telegram,21801,113551 +1724313300,Xiaomi,21162,6069 +1724313300,DNS over HTTPS,3269,15507 +1724313300,HTTPS,65037,28156 +1724313300,__unknown,935,12621 +1724313300,__unknown,4526,11921 +1724313300,Google,20086,19185 +1724313300,HTTPS,26993,69263 +1724313300,Spotify,2251,30111 +1724313300,Apple sites,4656,19967 +1724313300,SSL client,26993,69263 +1724313300,ICMP,12628,0 +1724313300,__unknown,185761,326734 +1724313300,HTTPS,25164,44274 +1724313300,iCloud,11866,21343 +1724313300,SSL client,11866,21343 +1724313300,ICMP,328,0 +1724313300,DNS over HTTPS,5028,13616 +1724313300,CoAP,1960,1368 +1724313300,__unknown,1094406,2700921 +1724313300,BITS,293002,14184033 +1724313300,BitTorrent,310,496 +1724313300,DHCPv6,978,0 +1724313300,Google APIs,2185,6891 +1724313300,Google,61315,311561 +1724313300,Windows Live,3663,19767 +1724313300,DNS,14957,0 +1724313300,Gmail,26290,151502 +1724313300,HTTP,293589,14184536 +1724313300,NetBIOS-dgm,243,0 +1724313300,NTP,900,900 +1724313300,STUN,11542169,678883 +1724313300,YouTube,28250,495043 +1724313300,Odnoklassniki,5222,14914 +1724313300,HTTPS,509350,3920206 +1724313300,WhatsApp,10561,203161 +1724313300,Apple sites,29765,25026 +1724313300,SSL client,235587,1071828 +1724313300,Microsoft,161281,8241983 +1724313300,Microsoft CryptoAPI,587,503 +1724313300,Google Play,76647,39237 +1724313300,ICMP,4110,780 +1724313300,Telegram,52723,92589 +1724313300,Thin Manager TFTP,276,106 +1724313300,Grammarly,2250,7887 +1724313300,DNS over HTTPS,48135,120150 +1724313300,__unknown,979669,1622687 +1724313300,Apple Update,624874,36217679 +1724313300,DHCPv6,163,0 +1724313300,Google APIs,8435,22633 +1724313300,Google,45205,114955 +1724313300,Kaspersky,543,1044 +1724313300,QQ,738,343 +1724313300,Windows Live,2442,13178 +1724313300,Apple Store,42062,435970 +1724313300,Chrome,2806,2498 +1724313300,DNS,47193,43609 +1724313300,Gmail,9971,26224 +1724313300,HTTP,191358,8090926 +1724313300,Internet Explorer,738,343 +1724313300,iTunes,6087,29427 +1724313300,Launchpad,3200,2282 +1724313300,Microsoft Update,10721,226571 +1724313300,NTP,14460,4800 +1724313300,SSL,32660,82241 +1724313300,YouTube,1151,5030 +1724313300,VKontakte,5468,17700 +1724313300,Advanced Packaging Tool,38683,364868 +1724313300,Windows Update,7131,223544 +1724313300,IMAPS,9971,26224 +1724313300,HTTPS,1325537,39594522 +1724313300,WhatsApp,5808,89796 +1724313300,Spotify,1838,4674 +1724313300,Apple sites,5823,78247 +1724313300,iCloud,22740,46162 +1724313300,Avast,4633,16990 +1724313300,SSL client,952285,37971528 +1724313300,Ubuntu Update Manager,32500,359900 +1724313300,Microsoft,114498,7458062 +1724313300,Yandex,78049,791910 +1724313300,Ubuntu,4749,4518 +1724313300,Microsoft CryptoAPI,5685,6927 +1724313300,Microsoft WNS,633,8035 +1724313300,Google Play,69539,88780 +1724313300,Google Hangouts,855,7032 +1724313300,ICMP,18480,0 +1724313300,Weborama,1338,830 +1724313300,Firebase Crashlytics,2405,6611 +1724313300,Telegram,10902,13663 +1724313300,Google Sign in,6080,3987 +1724313300,Edge Chromium,6444,17660 +1724313300,DNS over TLS,9933,38837 +1724313300,DNS over HTTPS,29072,104155 +1724313599,STUN,80156181,7300423 +1724313599,TwitchTV,1259649,60916 +1724313599,HTTPS,1259649,60916 +1724313599,SSL client,1259649,60916 +1724313599,HTTPS,102103,455137 +1724313599,SSL client,102103,455137 +1724313599,Mail.Ru,102103,455137 +1724313599,HTTPS,53379,65611 +1724313599,SSL client,53379,65611 +1724313599,Telegram,53379,65611 +1724313599,STUN,176677950,9999528 +1724313599,HTTPS,3894,4343 +1724313599,Dropbox,117687,21465 +1724313599,HTTPS,210254,137168 +1724313599,SSL client,175224,95821 +1724313599,Mail.Ru,3068,6560 +1724313599,Telegram,54469,67796 +1724313599,Google APIs,2027,7155 +1724313599,HTTPS,117056,125623 +1724313599,SSL client,46966,49821 +1724313599,Google Play,44939,42666 +1724313599,__unknown,1096,963 +1724313599,Dropbox,3052,1343 +1724313599,MSN,8718,17746 +1724313599,HTTP,1101,1360 +1724313599,Microsoft Update,133270,11710 +1724313599,Skype,3094,9820 +1724313599,Windows Update,1101,1360 +1724313599,HTTPS,292671,284673 +1724313599,Mozilla,4437,9378 +1724313599,Avast,1336,10267 +1724313599,SSL client,232190,187020 +1724313599,Microsoft,30815,52748 +1724313599,Mail.Ru,44079,59605 +1724313599,Yandex,2621,7975 +1724313599,Office 365,1869,7788 +1724313599,__unknown,78217,32226 +1724313599,Bing,77325,2123854 +1724313599,Dropbox,8016,1565 +1724313599,Google APIs,3385,7341 +1724313599,Google,124566,171479 +1724313599,MSN,21298,50897 +1724313599,Dell,1111,4305 +1724313599,HTTP,9722,302645 +1724313599,Microsoft Update,5274,176830 +1724313599,Advanced Packaging Tool,3794,125196 +1724313599,Windows Update,486,538 +1724313599,HTTPS,2175173,29473431 +1724313599,Apple sites,1796,4534 +1724313599,iCloud,49481,100810 +1724313599,Avast,3301,16960 +1724313599,SSL client,711500,3301430 +1724313599,Amazon Web Services,3457,21430 +1724313599,Ubuntu Update Manager,3794,125196 +1724313599,Microsoft,55806,133738 +1724313599,NIH,3803,13555 +1724313599,Mail.Ru,198238,211914 +1724313599,Yandex,23502,76609 +1724313599,Asus,1785,8805 +1724313599,Microsoft CryptoAPI,5442,176911 +1724313599,Pocket,1752,4156 +1724313599,Office 365,68057,170925 +1724313599,Sharepoint Online,5219,90645 +1724313599,Microsoft Windows Live Services Authentication,25811,64184 +1724313599,Weborama,6546,9924 +1724313599,Office Mobile,28997,17956 +1724313599,DNS over HTTPS,3083,15389 +1724313599,HTTPS,45687,63958 +1724313599,SSL client,45687,63958 +1724313599,Telegram,45687,63958 +1724313599,Google,60810,43443 +1724313599,HTTPS,60810,43443 +1724313599,SSL client,60810,43443 +1724313599,HTTPS,53657,70624 +1724313599,SSL client,53657,70624 +1724313599,Telegram,53657,70624 +1724313599,__unknown,215,225 +1724313599,HTTPS,10940,5510 +1724313599,__unknown,144,222 +1724313599,HTTP,563,408 +1724313599,HTTPS,9485,130216 +1724313599,ICMP,946,0 +1724313599,__unknown,6971,8468 +1724313599,Google,41405,31231 +1724313599,HTTP,846,474 +1724313599,HTTPS,52500,41119 +1724313599,SSL client,41405,31231 +1724313599,ICMP,688,0 +1724313599,__unknown,1970387,4813667 +1724313599,BitTorrent,463,1033 +1724313599,Google APIs,16623,31530 +1724313599,Google Drive,5614,29066 +1724313599,Google,171363,86666 +1724313599,Kaspersky,543,1044 +1724313599,BitTorrent tracker,153,537 +1724313599,DNS,20290,0 +1724313599,HTTP,399573,11499669 +1724313599,Microsoft Update,642,503 +1724313599,NTP,13560,3810 +1724313599,SSL,41219,66746 +1724313599,STUN,18080,36124 +1724313599,YouTube,4758,14927 +1724313599,VKontakte,86666,112455 +1724313599,Odnoklassniki,2464,6848 +1724313599,HTTPS,845662,5252636 +1724313599,APNS,15773,5470 +1724313599,Mozilla,1996,4611 +1724313599,SSL client,323219,308374 +1724313599,Microsoft,397239,11497156 +1724313599,Microsoft CryptoAPI,1791,1469 +1724313599,Google Play,15216,7700 +1724313599,Rambler,2746,9101 +1724313599,ICMP,7004,256 +1724313599,Telegram,4404,7738 +1724313599,Thin Manager TFTP,276,106 +1724313599,DNS over HTTPS,80995,226078 +1724313599,__unknown,1173096,4230646 +1724313599,Apple Update,325066,23017735 +1724313599,DHCPv6,978,0 +1724313599,Google APIs,16883,206766 +1724313599,Google,41541,143567 +1724313599,Google Translate,3664,7447 +1724313599,QQ,678,343 +1724313599,Chrome,565,484 +1724313599,DNS,48450,42393 +1724313599,Gmail,25220,22801 +1724313599,HTTP,111389,2239148 +1724313599,Internet Explorer,678,343 +1724313599,Launchpad,3200,2348 +1724313599,Microsoft Update,5188,12854 +1724313599,NTP,26940,7440 +1724313599,SSL,8317,27421 +1724313599,STUN,43296,1110 +1724313599,YouTube,38114,720592 +1724313599,VKontakte,1391,4425 +1724313599,Steam,3090,40042 +1724313599,Advanced Packaging Tool,39714,310232 +1724313599,HTTPS,1312774,29813256 +1724313599,Apple sites,29700,271507 +1724313599,iCloud,119532,1100676 +1724313599,Avast,382,391 +1724313599,SSL client,729461,27093900 +1724313599,Ubuntu Update Manager,31674,303536 +1724313599,Microsoft,23251,1814985 +1724313599,VeriSign,566,2141 +1724313599,Mail.Ru,41223,163735 +1724313599,Yandex,47488,1320746 +1724313599,Ubuntu,6115,5727 +1724313599,Microsoft CryptoAPI,14057,32828 +1724313599,Apple Maps,1844,5701 +1724313599,Google Play,6289,13979 +1724313599,Rambler,4111,16582 +1724313599,Google Hangouts,855,7033 +1724313599,ICMP,2092,0 +1724313599,Weborama,13102,28829 +1724313599,Telegram,9084,45229 +1724313599,Google Sign in,5529,8430 +1724313599,Thin Manager TFTP,196,252 +1724313599,Edge Chromium,9313,27700 +1724313599,DNS over TLS,11594,47703 +1724313599,DNS over HTTPS,16398,62626 +1724313900,Thin Manager TFTP,672,280 +1724313900,HTTPS,192307,290764 +1724313900,HTTPS,152792,230720 +1724313900,__unknown,2352,9920 +1724313900,__unknown,1221,0 +1724313900,HTTPS,106446,45574 +1724313900,__unknown,23868,20038 +1724313900,HTTPS,27399,25313 +1724313900,__unknown,554177,110512 +1724313900,VKontakte,29249,25211 +1724313900,HTTPS,54150,47809 +1724313900,SSL client,49992,43977 +1724313900,Google Play,20743,18766 +1724313900,__unknown,443373,439124 +1724313900,Bing,112769,957709 +1724313900,Google APIs,2976,9457 +1724313900,VKontakte,2834,6039 +1724313900,HTTPS,276572,1260075 +1724313900,Avast,5120,33021 +1724313900,SSL client,175360,1081814 +1724313900,Microsoft,2023,7381 +1724313900,Mail.Ru,20345,22991 +1724313900,Yandex,15535,23043 +1724313900,uTorrent,10454,13883 +1724313900,Office 365,3304,8290 +1724313900,__unknown,3406274,5698809 +1724313900,Bing,3575,6481 +1724313900,Dropbox,11184,233409 +1724313900,Google APIs,5822,14124 +1724313900,Google,111716,110325 +1724313900,HTTP,1942,4042 +1724313900,Microsoft Update,2764,7131 +1724313900,Reddit,7404,11729 +1724313900,SSL,64133,16597 +1724313900,VKontakte,4224,9294 +1724313900,HTTPS,1389258,2309980 +1724313900,APNS,19204,6603 +1724313900,Apple sites,1916,8698 +1724313900,iCloud,38130,104575 +1724313900,Avast,13496,46722 +1724313900,SSL client,864184,1377625 +1724313900,Microsoft,201978,317850 +1724313900,Mail.Ru,245603,278925 +1724313900,Yandex,53636,89864 +1724313900,Java,1942,4042 +1724313900,AMD,970,5091 +1724313900,Asus,45936,19583 +1724313900,Exchange Online,1134,8061 +1724313900,Office 365,32482,45670 +1724313900,Office Mobile,58118,35912 +1724313900,Google Inbox,4892,17578 +1724313900,DNS over HTTPS,0,21346 +1724313900,HTTPS,86640,204743 +1724313900,SSL client,86640,204743 +1724313900,Yandex,86640,204743 +1724313900,HTTPS,8582,11325 +1724313900,SSL client,8582,11325 +1724313900,DNS over HTTPS,8582,11325 +1724313900,__unknown,4176,4583 +1724313900,SSL,3458,4648 +1724313900,ICMP,1148,0 +1724313900,__unknown,30830,1918294 +1724313900,HTTPS,108767,67238 +1724313900,Spotify,2527,20637 +1724313900,SSL client,2527,20637 +1724313900,ICMP,246,0 +1724313900,__unknown,1130008,4889829 +1724313900,Apple Update,1932,14962 +1724313900,BITS,302581,11822513 +1724313900,BitTorrent,310,496 +1724313900,DHCPv6,163,0 +1724313900,Google APIs,7276,21835 +1724313900,Google Drive,93540,436913 +1724313900,Google,287362,950929 +1724313900,DNS,17818,0 +1724313900,Gmail,24011,60096 +1724313900,Google Analytics,2414,29074 +1724313900,HTTP,308279,11829974 +1724313900,NetBIOS-dgm,250,0 +1724313900,NTP,630,630 +1724313900,SSL,17926,10189 +1724313900,STUN,1178,1406 +1724313900,VKontakte,46565,93663 +1724313900,Odnoklassniki,5501,15749 +1724313900,HTTPS,757250,2910872 +1724313900,WhatsApp,17585,220863 +1724313900,APNS,16441,8797 +1724313900,SSL client,521643,1802546 +1724313900,Amazon Web Services,1862,8089 +1724313900,Microsoft,131936,6733733 +1724313900,Yandex,11710,124057 +1724313900,Microsoft CryptoAPI,5698,7461 +1724313900,Apple Maps,2879,7092 +1724313900,Google Play,12194,17587 +1724313900,Rambler,1510,5450 +1724313900,Google Hangouts,1485,1392 +1724313900,ICMP,31440,0 +1724313900,Telegram,3443,7583 +1724313900,DNS over HTTPS,12075,29618 +1724313900,__unknown,1017701,9641708 +1724313900,DHCPv6,815,0 +1724313900,Google APIs,18411,52813 +1724313900,Google,64099,175997 +1724313900,QQ,1023,2526 +1724313900,Chrome,1132,1020 +1724313900,DNS,43511,42353 +1724313900,Firefox,1398,2132 +1724313900,HTTP,242831,23106241 +1724313900,iTunes,7482,8677 +1724313900,Launchpad,2708,1918 +1724313900,Microsoft Update,154990,21046109 +1724313900,NetBIOS-dgm,243,0 +1724313900,NTP,1440,1440 +1724313900,SSL,1648,10959 +1724313900,VKontakte,4712,10548 +1724313900,Advanced Packaging Tool,31807,414983 +1724313900,HTTPS,527937,3068057 +1724313900,APNS,853,3927 +1724313900,Apple sites,12444,50775 +1724313900,iCloud,38781,100816 +1724313900,Avast,1278,1173 +1724313900,SSL client,339198,2296343 +1724313900,Ubuntu Update Manager,26226,410415 +1724313900,Microsoft,17586,1583152 +1724313900,Mail.Ru,19711,27652 +1724313900,Yandex,141593,1775429 +1724313900,GitHub,1436,6064 +1724313900,Ubuntu,4573,4490 +1724313900,Microsoft CryptoAPI,7278,6251 +1724313900,Microsoft NCSI,411,487 +1724313900,Google Play,1087,6353 +1724313900,CloudFlare,3719,5201 +1724313900,Rambler,3562,13180 +1724313900,Google Hangouts,795,7032 +1724313900,ICMP,1432,0 +1724313900,Telegram,21020,72298 +1724313900,Google Sign in,6141,3774 +1724313900,Thin Manager TFTP,276,106 +1724313900,Edge Chromium,7738,21719 +1724313900,DNS over TLS,11830,48063 +1724313900,DNS over HTTPS,33727,110813 +1724314200,DNS over HTTPS,274608,621529 +1724314200,HTTPS,45475,68861 +1724314200,SSL client,45475,68861 +1724314200,Telegram,45475,68861 +1724314200,HTTPS,5426,9576 +1724314200,__unknown,44345,24010 +1724314200,HTTPS,4203,6502 +1724314200,SSL client,4203,6502 +1724314200,Sharepoint Online,4203,6502 +1724314200,__unknown,124381,24243 +1724314200,HTTPS,56195,14568 +1724314200,SSL client,48638,7790 +1724314200,Google Play,15741,2669 +1724314200,Dropbox Download,32897,5121 +1724314200,Google,28696,19392 +1724314200,HTTPS,110667,106984 +1724314200,SSL client,31150,27988 +1724314200,Microsoft,2454,8596 +1724314200,__unknown,12866,1468 +1724314200,Dropbox,2367,6438 +1724314200,Google,57108,338641 +1724314200,Google Analytics,7569,8302 +1724314200,Skype,2799,8338 +1724314200,VKontakte,54212,540504 +1724314200,HTTPS,259341,1145726 +1724314200,iCloud,13903,32465 +1724314200,SSL client,205817,1044916 +1724314200,Microsoft,18000,40734 +1724314200,Mail.Ru,40801,53348 +1724314200,Siri,6924,6793 +1724314200,GISMETEO,2134,9353 +1724314200,__unknown,204483,266329 +1724314200,Dropbox,6115,222509 +1724314200,Google APIs,3142,10868 +1724314200,Google,381700,266123 +1724314200,HTTP,6951,166987 +1724314200,Skype,1978,6519 +1724314200,TeamViewer,1508,8838 +1724314200,Advanced Packaging Tool,3282,155999 +1724314200,HTTPS,1469676,3322364 +1724314200,Apple sites,10048,32588 +1724314200,iCloud,66488,73967 +1724314200,Mozilla,4766,12829 +1724314200,Opera,9691,5952 +1724314200,SSL client,938723,1263466 +1724314200,Amazon Web Services,3505,21542 +1724314200,CloudFront,1519,1072 +1724314200,Microsoft,48399,91130 +1724314200,Mail.Ru,246305,254001 +1724314200,Yandex,116282,167917 +1724314200,Apple Maps,1919,30705 +1724314200,Google Play,2440,6934 +1724314200,Office 365,2330,63590 +1724314200,Weborama,5013,8017 +1724314200,Office Mobile,40327,25890 +1724314200,Telegram,78,0 +1724314200,Edge Chromium,527,120 +1724314200,DNS over HTTPS,5530,23880 +1724314200,DNS over HTTPS,2235,7383 +1724314200,DNS over HTTPS,1277,5580 +1724314200,HTTPS,53503,65303 +1724314200,SSL client,53503,65303 +1724314200,Telegram,53503,65303 +1724314200,DNS over HTTPS,390,240 +1724314200,__unknown,255712,2937679 +1724314200,__unknown,24036,30474 +1724314200,Google,26850,23696 +1724314200,HTTPS,68601,67872 +1724314200,SSL client,32828,30412 +1724314200,Siri,5978,6716 +1724314200,DNS over HTTPS,10491,24349 +1724314200,CoAP,2352,1728 +1724314200,__unknown,7915,283923 +1724314200,Google,14835,19124 +1724314200,HTTP,1420,1290 +1724314200,SSL,11903,5271 +1724314200,HTTPS,82161,151354 +1724314200,Apple sites,11903,5271 +1724314200,SSL client,70313,120313 +1724314200,Yandex,43575,95918 +1724314200,ICMP,5826,0 +1724314200,Edge Chromium,1420,1290 +1724314200,DNS over HTTPS,4083,11772 +1724314200,__unknown,815348,1177866 +1724314200,BitTorrent,463,694 +1724314200,DHCPv6,163,0 +1724314200,Google APIs,16837,32590 +1724314200,Google Drive,9429,10420 +1724314200,Google,105099,475717 +1724314200,BitTorrent tracker,153,198 +1724314200,DNS,18908,0 +1724314200,HTTP,738879,105629428 +1724314200,NTP,35418,7380 +1724314200,HTTPS,214994,736569 +1724314200,Mozilla,1988,4611 +1724314200,SSL client,143626,545053 +1724314200,Weather.com,1553,5750 +1724314200,CloudFront,1117,1637 +1724314200,Microsoft,738285,105628451 +1724314200,Mail.Ru,5284,6427 +1724314200,Microsoft CryptoAPI,594,977 +1724314200,Rambler,2319,7901 +1724314200,ICMP,15060,360 +1724314200,Telegram,2458,1401 +1724314200,Thin Manager TFTP,564,540 +1724314200,DNS over HTTPS,27676,80895 +1724314200,__unknown,935108,7062600 +1724314200,Apple Update,1843,4998 +1724314200,BITS,173090,7776759 +1724314200,Google APIs,41723,28687 +1724314200,Google,22893,50683 +1724314200,QQ,678,343 +1724314200,Adobe Software,3168,5322 +1724314200,Chrome,565,484 +1724314200,DNS,55923,49655 +1724314200,Gmail,12387,50282 +1724314200,HTTP,692135,30800308 +1724314200,Internet Explorer,1184,1326 +1724314200,Launchpad,2560,1786 +1724314200,Microsoft Update,14939,345190 +1724314200,NTP,1080,990 +1724314200,SSL,797,7092 +1724314200,Advanced Packaging Tool,33701,512295 +1724314200,HTTPS,579557,3952773 +1724314200,Apple sites,18797,301236 +1724314200,iCloud,41556,88106 +1724314200,Avast,954,1374 +1724314200,SSL client,248690,2482057 +1724314200,Ubuntu Update Manager,27044,507111 +1724314200,Microsoft,178155,7789547 +1724314200,Mail.Ru,877,5475 +1724314200,Yandex,66684,1821700 +1724314200,Ubuntu,5797,5238 +1724314200,Microsoft CryptoAPI,14025,21287 +1724314200,Microsoft NCSI,411,487 +1724314200,Microsoft WNS,693,8035 +1724314200,uTorrent,4694,2862 +1724314200,Apple Maps,20983,351602 +1724314200,Google Play,5827,14047 +1724314200,Office 365,427464,22104098 +1724314200,Google Hangouts,797,7092 +1724314200,ICMP,1393,0 +1724314200,Weborama,2373,6174 +1724314200,Telegram,47414,126281 +1724314200,Google Sign in,5529,8228 +1724314200,Thin Manager TFTP,276,106 +1724314200,Edge Chromium,5971,18225 +1724314200,Grammarly,3436,14793 +1724314200,DNS over TLS,18068,76458 +1724314200,DNS over HTTPS,70322,275924 +1724314200,CoAP,588,432 +1724314500,Thin Manager TFTP,70200,127760 +1724314500,HTTPS,216657,108349 +1724314500,SSL client,8353,27504 +1724314500,Yandex,8353,27504 +1724314500,__unknown,1484,2060 +1724314500,HTTPS,12723,21024 +1724314500,SSL client,6932,11171 +1724314500,Yandex,6932,11171 +1724314500,Skype,6745,10373 +1724314500,HTTPS,12429,18397 +1724314500,SSL client,12429,18397 +1724314500,Yandex,5684,8024 +1724314500,HTTPS,21850,175483 +1724314500,SSL client,8068,125205 +1724314500,Microsoft,8068,125205 +1724314500,Google APIs,2047,6306 +1724314500,HTTPS,362388,442626 +1724314500,SSL client,323967,413773 +1724314500,Mail.Ru,192306,101008 +1724314500,Yandex,128108,300378 +1724314500,Google Play,1506,6081 +1724314500,__unknown,14686,7761 +1724314500,Google APIs,3009,9176 +1724314500,Google,6485,13543 +1724314500,HTTPS,1084007,33506853 +1724314500,iCloud,1322,6045 +1724314500,SSL client,63305,134305 +1724314500,Microsoft,5671,7526 +1724314500,Mail.Ru,23689,48856 +1724314500,Yandex,9081,14685 +1724314500,Office 365,10054,20093 +1724314500,GISMETEO,2194,9353 +1724314500,Lenovo,1800,5028 +1724314500,__unknown,100460,70134 +1724314500,Bing,7898,247231 +1724314500,Dropbox,1707,1519 +1724314500,Google APIs,1357,6134 +1724314500,Google,299736,242509 +1724314500,MSN,12941,27135 +1724314500,Apple Store,21702,361790 +1724314500,HTTP,3632,64847 +1724314500,Microsoft Update,2070,5433 +1724314500,Skype,3308,8101 +1724314500,Steam,7275,15633 +1724314500,Advanced Packaging Tool,1274,1166 +1724314500,HTTPS,1896128,57586233 +1724314500,Apple sites,1781,13366 +1724314500,iCloud,9360,28274 +1724314500,Mozilla,5057,6454 +1724314500,Avast,1254,9158 +1724314500,SSL client,905211,2173346 +1724314500,CloudFront,1509,1062 +1724314500,Ubuntu Update Manager,1274,1166 +1724314500,Microsoft,69273,100112 +1724314500,Mail.Ru,191756,206561 +1724314500,Yandex,172237,563453 +1724314500,GitHub,1652,5977 +1724314500,Exchange Online,1257,7945 +1724314500,Office 365,9937,60656 +1724314500,Microsoft Windows Live Services Authentication,34006,87402 +1724314500,Office Mobile,25247,16936 +1724314500,AnyDesk,1928,2549 +1724314500,Xiaomi,8039,32227 +1724314500,Google Inbox,9783,43874 +1724314500,DNS over TLS,1277,4903 +1724314500,Microsoft Teams,3792,69501 +1724314500,DNS over HTTPS,9609,36580 +1724314500,VKontakte,15320,27093 +1724314500,HTTPS,15320,27093 +1724314500,SSL client,15320,27093 +1724314500,ICMP,3444,0 +1724314500,__unknown,188,229 +1724314500,Gmail,5496,17157 +1724314500,IMAPS,5496,17157 +1724314500,SSL client,5496,17157 +1724314500,__unknown,480,11430 +1724314500,HTTPS,21729,248604 +1724314500,__unknown,80647,45465 +1724314500,Google APIs,27821,232433 +1724314500,Google,583180,584309 +1724314500,HTTP,528,408 +1724314500,HTTPS,724897,994695 +1724314500,SSL client,611001,816742 +1724314500,__unknown,947016000,20053046 +1724314500,Google,568431,1897019 +1724314500,HTTP,70570,22964 +1724314500,SSL,2497,6062 +1724314500,HTTPS,602430,1958534 +1724314500,SSL client,568431,1897019 +1724314500,ICMP,5704,0 +1724314500,DNS over HTTPS,15521,39448 +1724314500,__unknown,1306939,7116296 +1724314500,BITS,2643,18817 +1724314500,BitTorrent,310,434 +1724314500,Google APIs,395792,55023 +1724314500,Google Drive,675238,1523240 +1724314500,Google,127422,170609 +1724314500,Google Translate,3604,7328 +1724314500,Kaspersky,608,607 +1724314500,DNS,16381,0 +1724314500,Gmail,11883,13501 +1724314500,Google Analytics,4291,30286 +1724314500,HTTP,7062,23895 +1724314500,Microsoft Update,641,507 +1724314500,NTP,25118,5820 +1724314500,STUN,3720,6600 +1724314500,VKontakte,6006,10613 +1724314500,HTTPS,1455858,3018251 +1724314500,WhatsApp,1738,4764 +1724314500,Apple sites,6004,233985 +1724314500,Opera,1964,4960 +1724314500,SSL client,1265302,2135971 +1724314500,Yandex,5769,22180 +1724314500,Microsoft CryptoAPI,2977,3105 +1724314500,Google Play,12474,12659 +1724314500,Casale,2553,6931 +1724314500,CloudFlare,5383,30840 +1724314500,Office 365,2484,15731 +1724314500,ICMP,10357,1320 +1724314500,Demandbase,2350,7946 +1724314500,Telegram,6080,3162 +1724314500,Google Sign in,4966,7892 +1724314500,Grammarly,2560,7390 +1724314500,DNS over HTTPS,67395,168499 +1724314500,__unknown,1392754,6110785 +1724314500,DHCPv6,1141,0 +1724314500,Google APIs,19709,39481 +1724314500,Google,173882,190970 +1724314500,QQ,678,343 +1724314500,Chrome,632,543 +1724314500,DNS,47165,44939 +1724314500,HTTP,136640,1927034 +1724314500,Internet Explorer,678,343 +1724314500,iTunes,853,5875 +1724314500,Launchpad,3200,2480 +1724314500,Microsoft Update,50882,907440 +1724314500,NetBIOS-dgm,250,0 +1724314500,NTP,1620,1620 +1724314500,SSL,1844,4473 +1724314500,VKontakte,7821,33751 +1724314500,Steam,4106,47212 +1724314500,Advanced Packaging Tool,47590,917479 +1724314500,Windows Update,50241,906933 +1724314500,HTTPS,763142,4806968 +1724314500,Apple sites,1725,10927 +1724314500,iCloud,26251,88555 +1724314500,Avast,1146,1173 +1724314500,SSL client,286939,1342636 +1724314500,Taobao,2250,13427 +1724314500,Ubuntu Update Manager,38951,910157 +1724314500,VeriSign,566,2141 +1724314500,Mail.Ru,1877,10390 +1724314500,Siri,3044,5381 +1724314500,Yandex,37905,900796 +1724314500,Ubuntu,6289,5760 +1724314500,Microsoft CryptoAPI,6419,7145 +1724314500,Alibaba,1418,14012 +1724314500,Google Play,3745,8321 +1724314500,ICMP,1772,0 +1724314500,Telegram,122058,330077 +1724314500,Thin Manager TFTP,196,180 +1724314500,Edge Chromium,7271,22234 +1724314500,Stripe,853,3722 +1724314500,DNS over TLS,9025,38180 +1724314500,DNS over HTTPS,33752,112567 +1724314800,HTTPS,1157520,189439 +1724314800,SSL client,1157520,189439 +1724314800,Yandex,1157520,189439 +1724314800,HTTPS,42139,719424 +1724314800,SSL client,42139,719424 +1724314800,Yandex,42139,719424 +1724314800,HTTPS,5144,8204 +1724314800,HTTPS,54409,62036 +1724314800,SSL client,54409,62036 +1724314800,Telegram,54409,62036 +1724314800,Dropbox,145680,22827 +1724314800,HTTPS,169142,41166 +1724314800,SSL client,169142,41166 +1724314800,Google Play,23462,18339 +1724314800,HTTP,2726,55984 +1724314800,Advanced Packaging Tool,2726,55984 +1724314800,HTTPS,90009,645069 +1724314800,SSL client,54748,591104 +1724314800,Google Play,45597,34724 +1724314800,Discord,9151,556380 +1724314800,__unknown,9213,15730 +1724314800,MSN,1155,6317 +1724314800,HTTPS,202100,2238310 +1724314800,SSL client,128254,235694 +1724314800,Microsoft,23869,25887 +1724314800,Mail.Ru,19518,20153 +1724314800,Yandex,38128,62829 +1724314800,Apple Maps,4032,35587 +1724314800,Office 365,28987,47384 +1724314800,Microsoft Teams,14904,68130 +1724314800,DNS over HTTPS,22865,56553 +1724314800,Adobe Update,1693,4994 +1724314800,__unknown,202255,116194 +1724314800,Apple Update,1793,7006 +1724314800,Bing,3734,6423 +1724314800,Dropbox,1145,968 +1724314800,Google,6159,18946 +1724314800,HTTP,5488,19307 +1724314800,SSL,2120,10788 +1724314800,HTTPS,3189577,23848846 +1724314800,iCloud,152551,137495 +1724314800,SSL client,1210200,1304802 +1724314800,Microsoft,84011,113835 +1724314800,Mail.Ru,328397,579312 +1724314800,Yandex,273894,159763 +1724314800,Google Update,4400,10370 +1724314800,Microsoft WNS,573,7971 +1724314800,uTorrent,21740,38976 +1724314800,Apple Maps,2272,4766 +1724314800,Office 365,7228,29771 +1724314800,Microsoft Windows Live Services Authentication,26226,64922 +1724314800,Office Mobile,11116,7870 +1724314800,Mail.ru Attachment,4545,40905 +1724314800,Xiaomi,259906,21344 +1724314800,Grammarly,2671,7001 +1724314800,Stripe,22446,9761 +1724314800,Microsoft Teams,3726,69441 +1724314800,DNS over HTTPS,4228,20780 +1724314800,SSL,3851,10443 +1724314800,HTTPS,17961,17752 +1724314800,HTTPS,304252,841059 +1724314800,ICMP,12780,12720 +1724314800,HTTP,121013,5259 +1724314800,HTTPS,70661,127645 +1724314800,__unknown,179945,934296 +1724314800,HTTPS,12431,330302 +1724314800,Spotify,2053,8084 +1724314800,SSL client,2053,8084 +1724314800,ICMP,2870,0 +1724314800,__unknown,1336277,3543693 +1724314800,BitTorrent,463,496 +1724314800,Google APIs,130046,439311 +1724314800,Google Drive,5980,9991 +1724314800,Google,62631,154230 +1724314800,Google Translate,3664,7328 +1724314800,BitTorrent tracker,153,0 +1724314800,DNS,23444,0 +1724314800,Gmail,12814,58672 +1724314800,NetBIOS-dgm,243,0 +1724314800,NTP,12840,3090 +1724314800,STUN,35354,3448 +1724314800,VKontakte,3357,6004 +1724314800,HTTPS,479429,3007042 +1724314800,iCloud,3650,8971 +1724314800,Mozilla,5373,3451 +1724314800,SSL client,270517,1765787 +1724314800,Yandex,32372,1059749 +1724314800,ICMP,50174,1080 +1724314800,Telegram,68196,96062 +1724314800,Google Sign in,8357,10193 +1724314800,Thin Manager TFTP,472,286 +1724314800,Grammarly,2273,7887 +1724314800,DNS over HTTPS,6490,19709 +1724314800,IPv6 No Next Header,98,0 +1724314800,__unknown,1149233,8865813 +1724314800,DHCPv6,978,0 +1724314800,Google APIs,11767,35468 +1724314800,Google,55098,168081 +1724314800,QQ,678,343 +1724314800,DNS,46544,42420 +1724314800,Firefox,1363,1202 +1724314800,HTTP,100969,1751031 +1724314800,Internet Explorer,678,343 +1724314800,iTunes,1562,5949 +1724314800,Launchpad,2560,1984 +1724314800,Microsoft Update,29594,1117344 +1724314800,NTP,1260,1260 +1724314800,SSL,17338,12080 +1724314800,VKontakte,19333,29673 +1724314800,Advanced Packaging Tool,39128,606205 +1724314800,HTTPS,838818,7237496 +1724314800,WhatsApp,68529,1693104 +1724314800,APNS,15879,7592 +1724314800,Apple sites,11825,50011 +1724314800,Avast,830,848 +1724314800,SSL client,259385,2113800 +1724314800,Ubuntu Update Manager,33120,601413 +1724314800,Microsoft,2146,6293 +1724314800,Mail.Ru,1264,5221 +1724314800,Yandex,70904,1647873 +1724314800,MDNS,364,0 +1724314800,Ubuntu,5148,4648 +1724314800,Nvidia,54385,128052 +1724314800,Microsoft CryptoAPI,5110,4787 +1724314800,Apple Maps,1863,15047 +1724314800,ICMP,2735,0 +1724314800,ICMP for IPv6,70,0 +1724314800,Weborama,3180,7690 +1724314800,Telegram,80475,216245 +1724314800,Google Sign in,5947,4504 +1724314800,Thin Manager TFTP,588,612 +1724314800,Edge Chromium,2635,6824 +1724314800,DNS over TLS,3498,11922 +1724314800,DNS over HTTPS,47283,139003 +1724315099,Thin Manager TFTP,672,280 +1724315099,__unknown,333745,353752 +1724315099,HTTPS,53855,63952 +1724315099,SSL client,53855,63952 +1724315099,Telegram,53855,63952 +1724315099,Dropbox,126890,21405 +1724315099,HTTPS,138788,34986 +1724315099,SSL client,126890,21405 +1724315099,HTTPS,25239,29782 +1724315099,SSL client,5867,7643 +1724315099,Yandex,5867,7643 +1724315099,__unknown,113059,60282 +1724315099,Google,28932,710203 +1724315099,HTTP,1732,4989 +1724315099,Microsoft Update,1675,5433 +1724315099,VKontakte,21817,41562 +1724315099,HTTPS,1653669,30476798 +1724315099,SSL client,433885,1921452 +1724315099,Microsoft,21502,29678 +1724315099,Mail.Ru,29549,43349 +1724315099,Yandex,328759,1085633 +1724315099,Microsoft CryptoAPI,1732,4989 +1724315099,Office 365,2841,8925 +1724315099,DNS over HTTPS,20837,52874 +1724315099,__unknown,177138,143311 +1724315099,Bing,20518,129266 +1724315099,Dropbox,3439,3016 +1724315099,Google APIs,52098,53141 +1724315099,Google Drive,1307,5951 +1724315099,Google,857123,1006506 +1724315099,MSN,6211,25260 +1724315099,Windows Live,49942,55221 +1724315099,HTTP,6261,13413 +1724315099,Microsoft Update,1354,3522 +1724315099,VKontakte,10868,19959 +1724315099,Advanced Packaging Tool,1274,1226 +1724315099,HTTPS,2289729,10518002 +1724315099,Apple sites,7530,39529 +1724315099,iCloud,43715,102081 +1724315099,Avast,11852,42153 +1724315099,Opera,20251,6372 +1724315099,SSL client,1573919,2504408 +1724315099,Amazon Web Services,3693,21618 +1724315099,Ubuntu Update Manager,1274,1226 +1724315099,Microsoft,69120,119029 +1724315099,Mail.Ru,262260,308835 +1724315099,Yandex,68353,172045 +1724315099,Google Update,4331,10370 +1724315099,Apple Maps,3932,9942 +1724315099,Google Play,12531,12939 +1724315099,Exchange Online,16260,33182 +1724315099,Office 365,19514,59111 +1724315099,Sharepoint Online,8609,199504 +1724315099,Microsoft Windows Live Services Authentication,31546,80856 +1724315099,Office Mobile,11116,7930 +1724315099,Google Sign in,4960,3754 +1724315099,DNS over HTTPS,1601,5822 +1724315099,HTTPS,14101,10390 +1724315099,HTTPS,27221,26648 +1724315099,HTTPS,9365,13265 +1724315099,SSL client,9365,13265 +1724315099,DNS over HTTPS,9365,13265 +1724315099,__unknown,215,225 +1724315099,SSL,4554,11229 +1724315099,HTTPS,208381,83466 +1724315099,__unknown,1465,10943 +1724315099,SSL,18382,15245 +1724315099,HTTPS,90694,280263 +1724315099,ICMP,1452,0 +1724315099,__unknown,3409,22639 +1724315099,Google,63940,57150 +1724315099,HTTPS,88162,182498 +1724315099,SSL client,63940,57150 +1724315099,ICMP,6068,0 +1724315099,Telegram,253,155 +1724315099,DNS over HTTPS,25298,62550 +1724315099,__unknown,1816948,6833704 +1724315099,BITS,9274,200359 +1724315099,BitTorrent,310,496 +1724315099,DHCPv6,163,0 +1724315099,Google APIs,2617963,352567 +1724315099,Google,204485,926589 +1724315099,Android browser,782,526 +1724315099,DNS,20015,0 +1724315099,Gmail,102776,134896 +1724315099,Google Analytics,5124,7661 +1724315099,HTTP,11182,203488 +1724315099,NTP,810,810 +1724315099,YouTube,5895,33226 +1724315099,HTTPS,3792412,3735569 +1724315099,Mozilla,2369,4844 +1724315099,SSL client,3608357,2605006 +1724315099,Microsoft,9274,200359 +1724315099,VeriSign,566,2141 +1724315099,Yandex,183306,897891 +1724315099,Nvidia,450618,191117 +1724315099,Microsoft CryptoAPI,1126,2603 +1724315099,Pocket,2650,6173 +1724315099,Google Play,8700,25461 +1724315099,Rambler,18414,7522 +1724315099,ICMP,27205,120 +1724315099,ICMP for IPv6,70,0 +1724315099,Telegram,4616,1516 +1724315099,Google Sign in,4982,7984 +1724315099,Zoom,1408,6560 +1724315099,Thin Manager TFTP,6548,5866 +1724315099,Grammarly,4507,15774 +1724315099,DNS over HTTPS,21681,50980 +1724315099,IPv6 No Next Header,98,0 +1724315099,__unknown,1352140,5949358 +1724315099,Apple Update,8940,24590 +1724315099,BITS,123561,8167999 +1724315099,Google APIs,29931,94095 +1724315099,Google,81311,226346 +1724315099,Kaspersky,543,597 +1724315099,QQ,678,343 +1724315099,Adobe Software,18178,24427 +1724315099,Chrome,47980,20695 +1724315099,DNS,48911,41273 +1724315099,HTTP,521578,15363878 +1724315099,Internet Explorer,678,343 +1724315099,iTunes,23179,14420 +1724315099,Launchpad,3200,2058 +1724315099,Microsoft Update,45550,2368982 +1724315099,NTP,26490,6990 +1724315099,SSL,17944,78870 +1724315099,Odnoklassniki,2613,7492 +1724315099,Steam,156,172 +1724315099,Advanced Packaging Tool,34430,159552 +1724315099,HTTPS,1079644,11619065 +1724315099,WhatsApp,14738,345184 +1724315099,IBM,657,4161 +1724315099,Apple sites,6587,66613 +1724315099,iCloud,72597,151654 +1724315099,Avast,830,848 +1724315099,SSL client,705518,8936088 +1724315099,Ubuntu Update Manager,28247,154808 +1724315099,Microsoft,213105,12606281 +1724315099,Mail.Ru,5030,10102 +1724315099,Yandex,87333,138427 +1724315099,Ubuntu,4258,4065 +1724315099,Asus,13061,10541 +1724315099,Nvidia,4936,18766 +1724315099,Microsoft CryptoAPI,9081,21500 +1724315099,Microsoft NCSI,865,974 +1724315099,Apple Maps,23243,830962 +1724315099,Apple Music,331396,8082828 +1724315099,Google Hangouts,855,7031 +1724315099,ICMP,3715,0 +1724315099,Weborama,1336,896 +1724315099,Telegram,87104,191959 +1724315099,Edge Chromium,4156,10916 +1724315099,DNS over TLS,10417,34364 +1724315099,DNS over HTTPS,51512,178527 +1724315399,Google,1496408,622412 +1724315399,HTTPS,1496408,622412 +1724315399,SSL client,1496408,622412 +1724315399,__unknown,112626,162497 +1724315399,HTTPS,65907,67186 +1724315399,HTTPS,42260,5891 +1724315399,SSL client,42260,5891 +1724315399,Dropbox Download,42260,5891 +1724315399,Google APIs,2460,6507 +1724315399,HTTPS,7282,10198 +1724315399,SSL client,2460,6507 +1724315399,__unknown,43822,264192 +1724315399,Google APIs,6262,8745 +1724315399,MSN,8301,41381 +1724315399,HTTP,487,2679 +1724315399,HTTPS,248965,573771 +1724315399,SSL client,182006,501763 +1724315399,Microsoft,65927,104154 +1724315399,Mail.Ru,19450,19927 +1724315399,Yandex,55289,108648 +1724315399,Microsoft Azure,10326,8539 +1724315399,Microsoft CryptoAPI,487,2679 +1724315399,Google Play,8573,7446 +1724315399,Sharepoint Online,6171,196224 +1724315399,GISMETEO,2194,9378 +1724315399,__unknown,1585313,615167 +1724315399,Bing,3681,6481 +1724315399,Dropbox,2974,1344 +1724315399,Google APIs,15465,36467 +1724315399,Google,1799743,897130 +1724315399,MSN,12525,37007 +1724315399,Adobe Software,4981,7303 +1724315399,Dell,1111,4305 +1724315399,HTTP,1907,3171 +1724315399,Internet Explorer,698,425 +1724315399,iTunes,2106,6518 +1724315399,SSL,34781,6940 +1724315399,VKontakte,10913,25802 +1724315399,Advanced Packaging Tool,622,741 +1724315399,HTTPS,3120261,8424051 +1724315399,APNS,34781,6940 +1724315399,Apple sites,49989,700167 +1724315399,iCloud,63254,156111 +1724315399,SSL client,2557068,3603272 +1724315399,Amazon Web Services,3319,21430 +1724315399,Microsoft,47450,100329 +1724315399,Mail.Ru,343335,625450 +1724315399,Yandex,79838,582842 +1724315399,Apple Maps,7868,19439 +1724315399,Office 365,14149,322105 +1724315399,Office Mobile,61724,42402 +1724315399,Telegram,2145,7654 +1724315399,Google Inbox,4836,20440 +1724315399,Edge Chromium,587,2005 +1724315399,DNS over HTTPS,10706,37629 +1724315399,HTTPS,60734,42838 +1724315399,HTTPS,53066,67415 +1724315399,SSL client,53066,67415 +1724315399,Telegram,53066,67415 +1724315399,__unknown,38252,15498 +1724315399,CoAP,3332,2376 +1724315399,__unknown,12848,16223 +1724315399,HTTP,1769,1224 +1724315399,HTTPS,390801,368427 +1724315399,Telegram,489,295 +1724315399,__unknown,251631,1595909 +1724315399,Google,22800,32653 +1724315399,SSL,19697,15994 +1724315399,HTTPS,80572,648211 +1724315399,APNS,19697,15994 +1724315399,Apple sites,1817,7297 +1724315399,SSL client,51702,156106 +1724315399,Discord,7388,100162 +1724315399,__unknown,1761827,9128796 +1724315399,BitTorrent,463,694 +1724315399,Google APIs,49368,100412 +1724315399,Google Drive,25012,181610 +1724315399,Google,135663,889033 +1724315399,BitTorrent tracker,153,198 +1724315399,DNS,15394,0 +1724315399,Gmail,511799,2603003 +1724315399,HTTP,1155,3517 +1724315399,NetBIOS-dgm,250,0 +1724315399,NTP,25230,5730 +1724315399,SSL,14516,36778 +1724315399,VKontakte,37697,15599 +1724315399,HTTPS,1111779,6742937 +1724315399,WhatsApp,15174,399836 +1724315399,iCloud,10152,11960 +1724315399,SSL client,852959,4005742 +1724315399,NIH,10579,66053 +1724315399,Yandex,7765,91569 +1724315399,Microsoft CryptoAPI,1155,3517 +1724315399,Google Play,54771,24580 +1724315399,ICMP,15536,5220 +1724315399,Telegram,42811,155541 +1724315399,ScienceDirect,3394,6008 +1724315399,Google Sign in,4595,8104 +1724315399,Thin Manager TFTP,472,286 +1724315399,Grammarly,2164,7811 +1724315399,DNS over HTTPS,71917,169081 +1724315399,IPv6 No Next Header,98,0 +1724315399,__unknown,2464355,17192177 +1724315399,DHCPv6,1141,0 +1724315399,Google APIs,14765,44643 +1724315399,Google Drive,7467,10245 +1724315399,Google,97984,255874 +1724315399,Kaspersky,577,1511 +1724315399,QQ,678,343 +1724315399,Adobe Software,14484,25001 +1724315399,Android browser,2177,535 +1724315399,Chrome,632,617 +1724315399,DNS,38013,36867 +1724315399,Gmail,57732,151545 +1724315399,HTTP,110884,1973679 +1724315399,Internet Explorer,678,343 +1724315399,iTunes,2350,16574 +1724315399,Launchpad,3200,2282 +1724315399,Microsoft Update,1588,1395 +1724315399,NetBIOS-dgm,243,0 +1724315399,NTP,900,900 +1724315399,SSL,137599,532330 +1724315399,YouTube,2900,17768 +1724315399,VKontakte,6335,11634 +1724315399,Odnoklassniki,2035,6771 +1724315399,Advanced Packaging Tool,49524,657174 +1724315399,IMAPS,57732,151545 +1724315399,HTTPS,915789,10864436 +1724315399,Apple sites,5294,26485 +1724315399,iCloud,20738,32280 +1724315399,Avast,1146,1173 +1724315399,SSL client,667834,9261766 +1724315399,Ubuntu Update Manager,40897,650014 +1724315399,Microsoft,19798,1274147 +1724315399,Mail.Ru,1102,694 +1724315399,Yandex,18397,456864 +1724315399,Ubuntu,7193,6718 +1724315399,Nvidia,11121,30389 +1724315399,Microsoft CryptoAPI,5748,12687 +1724315399,Microsoft NCSI,520,553 +1724315399,Microsoft WNS,693,8034 +1724315399,Apple Maps,2379,6794 +1724315399,Rambler,3482,12269 +1724315399,Apple Music,352812,8025817 +1724315399,Adobe Analytics,6067,6639 +1724315399,Google Hangouts,1416,7911 +1724315399,ICMP,3084,0 +1724315399,Firebase Crashlytics,2262,6648 +1724315399,Telegram,452073,59687 +1724315399,Google Sign in,5720,4245 +1724315399,Xiaomi,525,1080 +1724315399,Google Inbox,6653,14703 +1724315399,Thin Manager TFTP,588,612 +1724315399,Edge Chromium,2168,6099 +1724315399,Adobe Fonts,1191,6302 +1724315399,DNS over TLS,19718,79503 +1724315399,DNS over HTTPS,62859,221381 +1724315399,_err_4655,2253,1947 +1724315399,IPv6 No Next Header,98,0 +1724315700,Thin Manager TFTP,108,108 +1724315700,HTTPS,2205507,2274870 +1724315700,HTTPS,9405,17227 +1724315700,SSL client,9405,17227 +1724315700,Yandex,9405,17227 +1724315700,Windows Live,62721,19269 +1724315700,HTTPS,62721,19269 +1724315700,SSL client,62721,19269 +1724315700,__unknown,1080,1562 +1724315700,HTTPS,9609,44913 +1724315700,SSL client,9609,44913 +1724315700,Yandex,9609,44913 +1724315700,Windows Live,19194,7287 +1724315700,HTTPS,31625,129171 +1724315700,SSL client,31625,129171 +1724315700,Microsoft,8993,114386 +1724315700,Microsoft Teams,3438,7498 +1724315700,__unknown,95740,96431 +1724315700,Dropbox,127679,21108 +1724315700,HTTPS,240706,143472 +1724315700,SSL client,206289,107410 +1724315700,Google Play,24141,18206 +1724315700,Telegram,54469,68096 +1724315700,Google APIs,9903,34376 +1724315700,HTTPS,34050,61397 +1724315700,SSL client,30797,52759 +1724315700,Google Play,20894,18383 +1724315700,__unknown,456665,688859 +1724315700,Google,43770,50797 +1724315700,MSN,4028,6028 +1724315700,HTTP,7581,832321 +1724315700,Microsoft Update,2198,6052 +1724315700,HTTPS,386778,364723 +1724315700,iCloud,6657,39421 +1724315700,Mozilla,2087,4579 +1724315700,SSL client,328220,318155 +1724315700,Microsoft,13843,847236 +1724315700,Mail.Ru,226040,151522 +1724315700,Yandex,20988,21525 +1724315700,uTorrent,14311,20394 +1724315700,GISMETEO,1879,2922 +1724315700,__unknown,24436,37626 +1724315700,Bing,13863,86767 +1724315700,Google APIs,10406,41420 +1724315700,Google,22039,53803 +1724315700,MSN,3266,9505 +1724315700,Gmail,17036,43578 +1724315700,Google Analytics,1692,5870 +1724315700,HTTP,2337,119485 +1724315700,Microsoft Update,216723,355019 +1724315700,Advanced Packaging Tool,460,2915 +1724315700,IMAPS,17036,43578 +1724315700,HTTPS,2132120,43172430 +1724315700,Apple sites,17376,1747857 +1724315700,iCloud,3613,10027 +1724315700,Mozilla,5573,6602 +1724315700,Avast,1129,9503 +1724315700,SSL client,880111,3526680 +1724315700,Ubuntu Update Manager,460,2915 +1724315700,Microsoft,69231,131974 +1724315700,Mail.Ru,334967,468874 +1724315700,Siri,3755,12404 +1724315700,Yandex,65946,110853 +1724315700,Microsoft CryptoAPI,526,443 +1724315700,Apple Maps,1790,10115 +1724315700,Google Play,19293,19424 +1724315700,Office 365,23162,216293 +1724315700,Microsoft Windows Live Services Authentication,6297,16426 +1724315700,Weborama,3443,4742 +1724315700,Office Mobile,31728,19817 +1724315700,Telegram,9542,16749 +1724315700,Microsoft Teams,7934,137034 +1724315700,DNS over HTTPS,343852,803843 +1724315700,DeepL Translator,2311,19948 +1724315700,ICMP,4386,0 +1724315700,HTTPS,16109,18110 +1724315700,HTTPS,289534,432469 +1724315700,HTTPS,8750,10029 +1724315700,ICMP,43460,0 +1724315700,__unknown,3034,19032 +1724315700,__unknown,22620,38408 +1724315700,HTTPS,44522,151215 +1724315700,SSL client,5547,15383 +1724315700,Weborama,5547,15383 +1724315700,Telegram,1516,751 +1724315700,DNS over HTTPS,7513,17513 +1724315700,__unknown,2640541,54198438 +1724315700,BitTorrent,310,496 +1724315700,Google APIs,227826,430526 +1724315700,Google Drive,12004,23747 +1724315700,Google,99927,297174 +1724315700,Adobe Software,4056,5973 +1724315700,DNS,13352,0 +1724315700,Firefox,1496,2926 +1724315700,HTTP,2069,10960 +1724315700,NTP,12480,2730 +1724315700,SSL,20141,5719 +1724315700,STUN,372,444 +1724315700,YouTube,10628,66284 +1724315700,Odnoklassniki,4981,11869 +1724315700,HTTPS,1581842,18064688 +1724315700,APNS,20141,5719 +1724315700,Apple sites,5570,61891 +1724315700,iCloud,6952,13892 +1724315700,Mozilla,2487,4745 +1724315700,SSL client,1368137,17197674 +1724315700,Microsoft,573,8034 +1724315700,Mail.Ru,2462,1394 +1724315700,Yandex,165245,472977 +1724315700,Nvidia,69781,136942 +1724315700,Microsoft WNS,573,8034 +1724315700,Apple Maps,3922,10461 +1724315700,Google Play,44384,50416 +1724315700,Criteo,2600,6641 +1724315700,Rambler,1454,5450 +1724315700,Apple Music,666381,15544400 +1724315700,ICMP,121990,0 +1724315700,ICMP for IPv6,70,0 +1724315700,Weborama,12165,26551 +1724315700,Firebase Crashlytics,4548,16053 +1724315700,Telegram,25647,33542 +1724315700,Thin Manager TFTP,196,180 +1724315700,Grammarly,2274,7889 +1724315700,Adobe Fonts,2271,7141 +1724315700,DNS over HTTPS,11479,34581 +1724315700,__unknown,4094410,4744016 +1724315700,Bing,1197,5635 +1724315700,BITS,2201,13944 +1724315700,DHCPv6,978,0 +1724315700,Google APIs,25228,65396 +1724315700,Google,73607,179513 +1724315700,Google Translate,3664,7446 +1724315700,QQ,1092,1924 +1724315700,Adobe Software,4002,6188 +1724315700,Apple Mail,14121,37961 +1724315700,Chrome,1741,1499 +1724315700,DNS,49215,45541 +1724315700,Gmail,4500,7600 +1724315700,HTTP,262819,4225537 +1724315700,Internet Explorer,1394,1061 +1724315700,Launchpad,3200,2414 +1724315700,Microsoft Update,21757,1293068 +1724315700,NTP,990,990 +1724315700,SSL,27746,19072 +1724315700,YouTube,9954,54756 +1724315700,Odnoklassniki,2613,7491 +1724315700,Advanced Packaging Tool,50272,615859 +1724315700,IMAPS,14121,37961 +1724315700,HTTPS,944378,9739298 +1724315700,WhatsApp,21245,375708 +1724315700,IBM,597,4101 +1724315700,APNS,23881,7659 +1724315700,Apple sites,10932,32060 +1724315700,iCloud,31762,42190 +1724315700,Avast,1348,1179 +1724315700,Opera,3420,4465 +1724315700,SSL client,303388,1687636 +1724315700,Ubuntu Update Manager,41801,608639 +1724315700,Microsoft,71370,2075613 +1724315700,VeriSign,566,2141 +1724315700,Mail.Ru,2742,10202 +1724315700,Yandex,39022,876459 +1724315700,Ubuntu,6624,6255 +1724315700,Nvidia,24745,54695 +1724315700,Microsoft CryptoAPI,5887,7779 +1724315700,Microsoft NCSI,925,974 +1724315700,Rambler,2913,9159 +1724315700,Office 365,2364,14217 +1724315700,Sharepoint Online,882,4415 +1724315700,ICMP,3664,0 +1724315700,Mail.ru Attachment,2806,10294 +1724315700,Telegram,51347,117488 +1724315700,Thin Manager TFTP,864,646 +1724315700,Edge Chromium,587,2010 +1724315700,Stripe,4109,173362 +1724315700,DNS over TLS,4514,19079 +1724315700,DNS over HTTPS,30919,99834 +1724315700,IPv6 No Next Header,98,0 +1724316000,HTTPS,1784375,691674 +1724316000,ICMP,45060,45000 +1724316000,HTTPS,77420,30789 +1724316000,HTTPS,45753,64030 +1724316000,SSL client,45753,64030 +1724316000,Telegram,45753,64030 +1724316000,HTTPS,8344,11061 +1724316000,SSL client,8344,11061 +1724316000,Yandex,8344,11061 +1724316000,HTTPS,7722,11006 +1724316000,SSL client,7722,11006 +1724316000,DNS over HTTPS,7722,11006 +1724316000,HTTPS,12111,12455 +1724316000,SSL client,12111,12455 +1724316000,Mail.Ru,12111,12455 +1724316000,__unknown,2000,3809 +1724316000,Dropbox,135546,20922 +1724316000,Windows Live,91978,25896 +1724316000,HTTPS,227524,46818 +1724316000,SSL client,227524,46818 +1724316000,__unknown,153402,309483 +1724316000,HTTPS,105923,89870 +1724316000,Apple sites,6254,22461 +1724316000,SSL client,6254,22461 +1724316000,__unknown,786983,8831689 +1724316000,Google APIs,3928,1332 +1724316000,Google,16912,375724 +1724316000,Gmail,3172,9808 +1724316000,TwitchTV,5595,7089 +1724316000,IMAPS,3172,9808 +1724316000,HTTPS,400336,1263258 +1724316000,Apple sites,42930,55889 +1724316000,SSL client,258384,1027164 +1724316000,Microsoft,7323,17045 +1724316000,Mail.Ru,58872,69808 +1724316000,Yandex,104721,468461 +1724316000,Google Play,12731,12338 +1724316000,GISMETEO,2200,9670 +1724316000,__unknown,519000,11675447 +1724316000,Bing,48722,209658 +1724316000,Google,15999,24357 +1724316000,MSN,1483,10660 +1724316000,Windows Live,41829,35697 +1724316000,Apple Mail,2709,7753 +1724316000,HTTP,3079,2844 +1724316000,Microsoft Update,1555,5433 +1724316000,SSL,2414,7488 +1724316000,Advanced Packaging Tool,587,530 +1724316000,IMAPS,2709,7753 +1724316000,HTTPS,1687818,6852190 +1724316000,WhatsApp,7169,73762 +1724316000,Apple sites,40939,1007687 +1724316000,iCloud,13035,24412 +1724316000,SSL client,788252,2393948 +1724316000,Samsung,26690,7994 +1724316000,CloudFront,1519,1072 +1724316000,Microsoft,88844,177258 +1724316000,Mail.Ru,187694,226975 +1724316000,Yandex,171185,315174 +1724316000,Ubuntu,587,530 +1724316000,Microsoft CryptoAPI,1127,955 +1724316000,Apple Maps,136160,3704469 +1724316000,Google Play,19281,19188 +1724316000,Exchange Online,2724,14533 +1724316000,Office 365,6613,24720 +1724316000,Microsoft Windows Live Services Authentication,93458,225556 +1724316000,Google Hangouts,2414,7488 +1724316000,Weborama,4911,7825 +1724316000,Yandex Market,8140,10734 +1724316000,Office365 Admin portal,1061,10101 +1724316000,Microsoft Teams,5439,15062 +1724316000,DNS over HTTPS,9144,31202 +1724316000,ICMP,6150,0 +1724316000,HTTPS,52788,62761 +1724316000,SSL client,52788,62761 +1724316000,Telegram,52788,62761 +1724316000,__unknown,11510,11605 +1724316000,HTTPS,7842,10945 +1724316000,SSL client,7842,10945 +1724316000,DNS over HTTPS,7842,10945 +1724316000,__unknown,0,4688 +1724316000,HTTPS,8454,11364 +1724316000,SSL client,8454,11364 +1724316000,DNS over HTTPS,8454,11364 +1724316000,__unknown,49546,71883 +1724316000,ICMP,4410,0 +1724316000,__unknown,1567725,259812 +1724316000,Google,14662,19727 +1724316000,HTTPS,69071,81763 +1724316000,SSL client,69071,81763 +1724316000,Telegram,54409,62036 +1724316000,__unknown,316495,450827 +1724316000,Google,5027,10251 +1724316000,HTTPS,87731,341483 +1724316000,SSL client,25673,26927 +1724316000,Google Sign in,20646,16676 +1724316000,__unknown,1425702,9700912 +1724316000,BitTorrent,463,496 +1724316000,DHCPv6,163,0 +1724316000,Google APIs,29170,115121 +1724316000,Google Drive,98778,755459 +1724316000,Google,135297,498502 +1724316000,Google Translate,5123,10626 +1724316000,Apple Mail,8244,20338 +1724316000,BitTorrent tracker,153,0 +1724316000,DNS,21962,0 +1724316000,Gmail,12623,16271 +1724316000,HTTP,3118,7339 +1724316000,NetBIOS-dgm,250,0 +1724316000,NTP,33110,7725 +1724316000,SSL,23819,13793 +1724316000,YouTube,32204,71293 +1724316000,VKontakte,7474,16000 +1724316000,IMAPS,8244,20338 +1724316000,HTTPS,905371,12233552 +1724316000,APNS,23819,13793 +1724316000,iCloud,3922,10157 +1724316000,SSL client,678117,8176748 +1724316000,Microsoft,6281,11838 +1724316000,Yandex,17496,203005 +1724316000,Microsoft CryptoAPI,1766,3276 +1724316000,Google Play,19735,11475 +1724316000,Apple Music,268681,6409311 +1724316000,ICMP,82646,0 +1724316000,Firebase Crashlytics,4399,13072 +1724316000,Telegram,8185,9650 +1724316000,Google Sign in,6223,4550 +1724316000,Thin Manager TFTP,196,180 +1724316000,DNS over HTTPS,10729,33491 +1724316000,__unknown,1350685,3366774 +1724316000,Google APIs,11551,37144 +1724316000,Google,60874,167336 +1724316000,QQ,678,343 +1724316000,Adobe Software,3235,5470 +1724316000,Android browser,2598,724 +1724316000,Chrome,1208,1034 +1724316000,DNS,54643,46334 +1724316000,Gmail,28066,78183 +1724316000,HTTP,317681,14629847 +1724316000,Internet Explorer,678,343 +1724316000,iTunes,8433,89371 +1724316000,Launchpad,3200,2282 +1724316000,Microsoft Update,1623,1317 +1724316000,NTP,5860,1995 +1724316000,SSL,797,7092 +1724316000,Odnoklassniki,6744,15656 +1724316000,Advanced Packaging Tool,52134,818772 +1724316000,IMAPS,21318,70286 +1724316000,HTTPS,3225771,8695841 +1724316000,Apple sites,6606,30021 +1724316000,iCloud,2479743,82764 +1724316000,Avast,764,782 +1724316000,SSL client,2872838,7098063 +1724316000,Ubuntu Update Manager,42920,811082 +1724316000,Microsoft,225381,13760072 +1724316000,Yandex,75876,2211122 +1724316000,Ubuntu,6930,6330 +1724316000,Microsoft CryptoAPI,4571,7485 +1724316000,Microsoft WNS,1206,16074 +1724316000,Rambler,2780,6513 +1724316000,Apple Music,171392,4323225 +1724316000,Google Hangouts,797,7092 +1724316000,ICMP,3118,180 +1724316000,Weborama,2855,7934 +1724316000,Telegram,26352,119181 +1724316000,Google Sign in,5956,4650 +1724316000,Thin Manager TFTP,864,718 +1724316000,Edge Chromium,8325,25017 +1724316000,DNS over TLS,10516,43671 +1724316000,DNS over HTTPS,25395,88113 +1724316000,IPv6 No Next Header,98,0 +1724316301,Thin Manager TFTP,672,280 +1724316301,HTTPS,67291,53355 +1724316301,SSL client,67291,53355 +1724316301,Yandex,67291,53355 +1724316301,HTTPS,38019,20924 +1724316301,__unknown,2980,9216 +1724316301,__unknown,56608,66135 +1724316301,VKontakte,23484,33956 +1724316301,HTTPS,23484,33956 +1724316301,SSL client,23484,33956 +1724316301,Google,42644,103861 +1724316301,HTTPS,42644,103861 +1724316301,SSL client,42644,103861 +1724316301,HTTPS,42146,5914 +1724316301,SSL client,42146,5914 +1724316301,Dropbox Download,42146,5914 +1724316301,HTTPS,67675,63476 +1724316301,SSL client,9191,6191 +1724316301,Google Play,9191,6191 +1724316301,__unknown,496809,560161 +1724316301,Dropbox,1842,1962 +1724316301,MSN,2201,11718 +1724316301,VKontakte,8282,16672 +1724316301,Steam,2112,4924 +1724316301,HTTPS,427040,30341822 +1724316301,Apple sites,8155,520795 +1724316301,iCloud,925,6749 +1724316301,SSL client,174552,751810 +1724316301,Microsoft,38188,43411 +1724316301,Mail.Ru,95577,106861 +1724316301,Yandex,10326,22026 +1724316301,Microsoft Azure,2478,9103 +1724316301,Microsoft Teams,4466,7589 +1724316301,DNS over HTTPS,4137,9120 +1724316301,__unknown,957497,15519764 +1724316301,Bing,14905,169222 +1724316301,Google APIs,2284,6842 +1724316301,Google Drive,877,6981 +1724316301,Google,45121,74425 +1724316301,MSN,18742,71294 +1724316301,Google Analytics,4804,12832 +1724316301,HTTP,1025,846 +1724316301,Skype,5473,94293 +1724316301,SSL,16873,7160 +1724316301,YouTube,5282,6388 +1724316301,TeamViewer,1448,8838 +1724316301,VKontakte,5483,14309 +1724316301,HTTPS,1735287,5919420 +1724316301,Apple sites,31955,206500 +1724316301,iCloud,42305,86314 +1724316301,SSL client,881500,2816357 +1724316301,CloudFront,1509,1062 +1724316301,Microsoft,82428,137842 +1724316301,Mail.Ru,191135,263569 +1724316301,Yandex,293197,1404301 +1724316301,Ubuntu,1821,4545 +1724316301,Microsoft CryptoAPI,1025,846 +1724316301,Apple Maps,4132,14990 +1724316301,Google Play,57712,54899 +1724316301,Sharepoint Online,986,5946 +1724316301,Microsoft Windows Live Services Authentication,64924,161134 +1724316301,Weborama,3487,7571 +1724316301,Grammarly,2633,6964 +1724316301,DNS over HTTPS,23414,93782 +1724316301,__unknown,171594,157645 +1724316301,Google,54250,40559 +1724316301,HTTPS,54250,40559 +1724316301,SSL client,54250,40559 +1724316301,HTTPS,53701,64024 +1724316301,SSL client,53701,64024 +1724316301,Telegram,53701,64024 +1724316301,__unknown,188,229 +1724316301,Gmail,982506,796583 +1724316301,HTTPS,982506,796583 +1724316301,SSL client,982506,796583 +1724316301,__unknown,53421,24062 +1724316301,Google,2864323,1210373 +1724316301,HTTPS,2868813,1234838 +1724316301,SSL client,2864323,1210373 +1724316301,CoAP,3136,2304 +1724316301,__unknown,28493,64981 +1724316301,Google,22993,21218 +1724316301,Gmail,30842,33675 +1724316301,HTTPS,93522,994218 +1724316301,SSL client,53835,54893 +1724316301,ICMP,3816,2160 +1724316301,DNS over HTTPS,10538,27449 +1724316301,__unknown,2653892,80479580 +1724316301,BitTorrent,310,496 +1724316301,DHCPv6,978,0 +1724316301,Google APIs,98111,99672 +1724316301,Google,137293,2167429 +1724316301,DNS,16425,0 +1724316301,Gmail,18498,30300 +1724316301,HTTP,2982459,169174818 +1724316301,Microsoft Update,641,502 +1724316301,NetBIOS-dgm,243,0 +1724316301,NTP,12840,3180 +1724316301,SSL,20612,18765 +1724316301,STUN,1860,3300 +1724316301,YouTube,2992,13160 +1724316301,VKontakte,2742,5858 +1724316301,Steam,3666,57975 +1724316301,HTTPS,537280,4469590 +1724316301,APNS,18884,15937 +1724316301,SSL client,316423,2364555 +1724316301,Microsoft,2922879,168983292 +1724316301,NIH,2390,7655 +1724316301,Microsoft CryptoAPI,3907,11461 +1724316301,Google Play,31591,15088 +1724316301,Office 365,619,1199 +1724316301,Google Hangouts,1728,2828 +1724316301,ICMP,11517,2160 +1724316301,Firebase Crashlytics,2194,6628 +1724316301,Telegram,730,310 +1724316301,Thin Manager TFTP,196,180 +1724316301,DNS over HTTPS,44739,94283 +1724316301,__unknown,1339317,7842868 +1724316301,DHCPv6,163,0 +1724316301,Google APIs,24712,70042 +1724316301,Google,128316,348424 +1724316301,QQ,678,343 +1724316301,Chrome,565,484 +1724316301,DNS,56584,50029 +1724316301,Gmail,6689,7543 +1724316301,HTTP,1800863,89062369 +1724316301,Internet Explorer,678,343 +1724316301,iTunes,853,5875 +1724316301,Launchpad,2560,1852 +1724316301,Microsoft Update,5517,21278 +1724316301,NTP,990,990 +1724316301,VKontakte,3030,5100 +1724316301,Odnoklassniki,2035,6771 +1724316301,Advanced Packaging Tool,44829,533653 +1724316301,HTTPS,809177,5709394 +1724316301,WhatsApp,6297,5339 +1724316301,IBM,597,4101 +1724316301,Apple sites,24461,32745 +1724316301,iCloud,3241,8775 +1724316301,Avast,1278,1173 +1724316301,SSL client,320605,3977113 +1724316301,CloudFront,2024,8059 +1724316301,Ubuntu Update Manager,38603,528513 +1724316301,Microsoft,1546585,86738332 +1724316301,Mail.Ru,1264,6427 +1724316301,Yandex,93546,3314583 +1724316301,Ubuntu,4594,4276 +1724316301,Microsoft CryptoAPI,7207,22756 +1724316301,Microsoft NCSI,411,487 +1724316301,Apple Maps,6910,4583 +1724316301,Google Play,17398,15451 +1724316301,Rambler,4410,16466 +1724316301,Sharepoint Online,1745,90831 +1724316301,Microsoft Windows Live Services Authentication,2289,16752 +1724316301,ICMP,5541,0 +1724316301,Telegram,112954,339553 +1724316301,Thin Manager TFTP,588,540 +1724316301,Edge Chromium,7798,23599 +1724316301,DNS over TLS,9017,38013 +1724316301,DNS over HTTPS,28618,104686 +1724316600,__unknown,2760,7586 +1724316600,Apple Mail,3989,9238 +1724316600,IMAPS,3989,9238 +1724316600,SSL client,3989,9238 +1724316600,DNS over HTTPS,285715,631036 +1724316600,Google,112541,101195 +1724316600,HTTPS,242210,683304 +1724316600,SSL client,242210,683304 +1724316600,Mail.Ru,129669,582109 +1724316600,__unknown,3636,2232 +1724316600,HTTPS,86498,125148 +1724316600,SSL client,22365,80297 +1724316600,Yandex,22365,80297 +1724316600,__unknown,47990,49024 +1724316600,Dropbox,114209,20122 +1724316600,HTTPS,191212,331014 +1724316600,SSL client,191212,331014 +1724316600,Microsoft,14015,230662 +1724316600,Yandex,5014,8350 +1724316600,Telegram,55079,64687 +1724316600,Microsoft Teams,2895,7193 +1724316600,Google APIs,2302,6345 +1724316600,HTTPS,17436,31891 +1724316600,SSL client,2302,6345 +1724316600,DNS over HTTPS,59374,152440 +1724316600,__unknown,144017,138086 +1724316600,Dropbox,10172,6893 +1724316600,Google,5992,102624 +1724316600,MSN,2891,7807 +1724316600,Gmail,10348,6175 +1724316600,iTunes,2977,5880 +1724316600,VKontakte,24166,1040739 +1724316600,HTTPS,1159828,6576084 +1724316600,Mozilla,2141,4698 +1724316600,SSL client,670078,1671619 +1724316600,Microsoft,17807,36365 +1724316600,Mail.Ru,52197,65035 +1724316600,Yandex,483481,279450 +1724316600,Apple Maps,2531,6749 +1724316600,Office 365,3262,19680 +1724316600,Sharepoint Online,2038,11892 +1724316600,Yandex Market,52606,84381 +1724316600,DNS over HTTPS,66,15686 +1724316600,__unknown,88747,173895 +1724316600,Apple Update,4005,11770 +1724316600,Bing,17272,221662 +1724316600,Google APIs,342307240,7861933 +1724316600,Google,189145,495129 +1724316600,MSN,5136,11939 +1724316600,HTTP,12039,46687 +1724316600,Microsoft Update,1045,1147 +1724316600,SSL,11203,19895 +1724316600,VKontakte,16469,26390 +1724316600,HTTPS,344447552,65744893 +1724316600,Apple sites,47634,365465 +1724316600,iCloud,109466,153236 +1724316600,Mozilla,7043,27955 +1724316600,Avast,1861,6020 +1724316600,Opera,4297,4213 +1724316600,SSL client,344020838,35427507 +1724316600,CloudFront,1060,6914 +1724316600,Microsoft,333539,123170 +1724316600,VeriSign,883,976 +1724316600,Mail.Ru,220158,271143 +1724316600,Yandex,549495,25157177 +1724316600,Microsoft Azure,1397,7594 +1724316600,Nvidia,8924,5771 +1724316600,Microsoft CryptoAPI,10071,38010 +1724316600,Microsoft WNS,897,8101 +1724316600,uTorrent,18036,32485 +1724316600,Apple Maps,82972,3099310 +1724316600,Google Play,20118,19608 +1724316600,Exchange Online,1512,6455 +1724316600,Office 365,36796,343391 +1724316600,Microsoft Windows Live Services Authentication,43073,113601 +1724316600,Yandex Market,53869,117677 +1724316600,Office Mobile,11116,7870 +1724316600,Sberbank of Russia,11203,19895 +1724316600,Google Inbox,4943,16581 +1724316600,Grammarly,1856,7003 +1724316600,DNS over HTTPS,2332,10787 +1724316600,HTTPS,288034,563626 +1724316600,__unknown,21177,11662 +1724316600,__unknown,131065,172552 +1724316600,ICMP,2788,0 +1724316600,__unknown,121570,49781 +1724316600,HTTPS,20914,244717 +1724316600,DNS over HTTPS,24504,67455 +1724316600,__unknown,35597,1086851 +1724316600,HTTPS,4742,10839 +1724316600,SSL client,4742,10839 +1724316600,Nvidia,4742,10839 +1724316600,__unknown,11083,91095 +1724316600,HTTPS,235882,3197618 +1724316600,WhatsApp,30325,491773 +1724316600,SSL client,31085,20885 +1724316600,Google Play,28871,14489 +1724316600,ICMP,656,0 +1724316600,Telegram,1630,694 +1724316600,DNS over HTTPS,2214,6396 +1724316600,__unknown,1060954,3454238 +1724316600,BitTorrent,463,434 +1724316600,Google APIs,164218,265526 +1724316600,Google Drive,5836,8492 +1724316600,Google,71280,273819 +1724316600,Kaspersky,1216,1214 +1724316600,BitTorrent tracker,153,0 +1724316600,Chrome,749,1521 +1724316600,DNS,21571,0 +1724316600,Gmail,9677,6955 +1724316600,HTTP,59186,155775 +1724316600,Microsoft Update,1317,1131 +1724316600,NTP,13740,3990 +1724316600,YouTube,8582,39739 +1724316600,VKontakte,10285,16187 +1724316600,Odnoklassniki,2549,7374 +1724316600,HTTPS,1578915,2051325 +1724316600,SSL client,289863,678847 +1724316600,Yandex,3480,27538 +1724316600,Microsoft CryptoAPI,1317,1131 +1724316600,Google Play,6474,10995 +1724316600,Rambler,1298,947 +1724316600,ICMP,14978,1500 +1724316600,Firebase Crashlytics,3892,13389 +1724316600,Thin Manager TFTP,472,286 +1724316600,Grammarly,2292,7886 +1724316600,DNS over HTTPS,6192,18016 +1724316600,IPv6 No Next Header,98,0 +1724316600,CoAP,1372,1008 +1724316600,__unknown,1864291,22619876 +1724316600,BITS,4552,31811 +1724316600,DHCPv6,978,0 +1724316600,Google APIs,34323,52631 +1724316600,Google Drive,9981,131095 +1724316600,Google,158524,246035 +1724316600,Kaspersky,1151,2118 +1724316600,QQ,678,343 +1724316600,Chrome,2988,2195 +1724316600,DNS,71833,64590 +1724316600,Firefox,1614,2106 +1724316600,Gmail,9641,12514 +1724316600,HTTP,1532025,74573532 +1724316600,Internet Explorer,678,343 +1724316600,Launchpad,3126,2282 +1724316600,Microsoft Update,32188,1148067 +1724316600,NetBIOS-dgm,250,0 +1724316600,NTP,14370,4620 +1724316600,SSL,1784,827 +1724316600,VKontakte,3534,4968 +1724316600,RuTube,36946,196035 +1724316600,Odnoklassniki,2283,6764 +1724316600,Advanced Packaging Tool,45891,641689 +1724316600,HTTPS,1235730,5799597 +1724316600,WhatsApp,1784,827 +1724316600,Apple sites,9044,43478 +1724316600,iCloud,27228,42785 +1724316600,Avast,1319,4855 +1724316600,SSL client,421294,2735156 +1724316600,Ubuntu Update Manager,37973,635095 +1724316600,Microsoft,1211777,72524816 +1724316600,VeriSign,764,2141 +1724316600,Mail.Ru,10202,25903 +1724316600,Yandex,50177,1343537 +1724316600,Ubuntu,5217,4773 +1724316600,Nvidia,5059,9490 +1724316600,Microsoft CryptoAPI,12215,16640 +1724316600,Microsoft NCSI,1965,2080 +1724316600,Microsoft WNS,573,8037 +1724316600,uTorrent,7583,4509 +1724316600,Apple Maps,5849,16341 +1724316600,Google Play,23094,14261 +1724316600,Rambler,5129,5205 +1724316600,Garmin,2352,5586 +1724316600,ICMP,6110,0 +1724316600,Telegram,48765,79368 +1724316600,TikTok,23180,577726 +1724316600,Google Sign in,7085,10396 +1724316600,Zoom,7930,15059 +1724316600,Thin Manager TFTP,980,972 +1724316600,Edge Chromium,6217,19504 +1724316600,Grammarly,1882,7406 +1724316600,DNS over TLS,5867,24247 +1724316600,DNS over HTTPS,52865,167192 +1724316900,Thin Manager TFTP,108,108 +1724316900,HTTPS,111388,86958 +1724316900,__unknown,1244,1838 +1724316900,HTTPS,4645,8735 +1724316900,SSL client,4645,8735 +1724316900,Yandex,4645,8735 +1724316900,Google,41565,46542 +1724316900,HTTPS,1790995,1491495 +1724316900,SSL client,45568,54092 +1724316900,Microsoft,4003,7550 +1724316900,Telegram,1745427,1437403 +1724316900,Windows Live,34397,10247 +1724316900,HTTPS,164926,88381 +1724316900,SSL client,34397,10247 +1724316900,__unknown,9855,58980 +1724316900,HTTPS,636754,1339919 +1724316900,SSL client,599924,1241212 +1724316900,Yandex,147665,1178930 +1724316900,Google Play,442170,49610 +1724316900,Rambler,10089,12672 +1724316900,__unknown,466787,3561054 +1724316900,Dropbox,1786,5626 +1724316900,Google APIs,4724,12581 +1724316900,Google,1193,4797 +1724316900,MSN,4413,8469 +1724316900,Windows Live,61070,23763 +1724316900,HTTP,1384,1355 +1724316900,TeamViewer,2969,17694 +1724316900,HTTPS,675228,4963874 +1724316900,Apple sites,14804,310574 +1724316900,Mozilla,10996,36263 +1724316900,SSL client,525700,4595092 +1724316900,Microsoft,50854,173103 +1724316900,Mail.Ru,22461,48029 +1724316900,Yandex,116850,3418088 +1724316900,Microsoft CryptoAPI,1384,1355 +1724316900,uTorrent,11072,19482 +1724316900,Apple Maps,5155,11447 +1724316900,Google Play,7471,16952 +1724316900,Office 365,5610,18100 +1724316900,Sharepoint Online,3156,94291 +1724316900,Firebase Crashlytics,2038,6730 +1724316900,Yandex Market,200780,369030 +1724316900,Sberbank of Russia,3453,11520 +1724316900,__unknown,464308,599980 +1724316900,Apple Update,2027,4965 +1724316900,Bing,5316,15725 +1724316900,Dropbox,11160,225504 +1724316900,Google APIs,20363,42693 +1724316900,Google,61003,144052 +1724316900,Google Translate,3664,7446 +1724316900,Adobe Software,729,425 +1724316900,Apple Store,26414,230563 +1724316900,HTTP,4141,10381 +1724316900,Internet Explorer,729,425 +1724316900,iTunes,91058,583509 +1724316900,Microsoft Update,1346,3427 +1724316900,SSL,116304,889484 +1724316900,Steam,2111,4924 +1724316900,HTTPS,2144942,32741132 +1724316900,WhatsApp,3164,6566 +1724316900,Spotify,2607,8213 +1724316900,APNS,5778,7461 +1724316900,Apple sites,82567,203547 +1724316900,iCloud,32064,75174 +1724316900,Avast,57751,119133 +1724316900,SSL client,1392361,12889740 +1724316900,Microsoft,157161,458964 +1724316900,Mail.Ru,325766,874945 +1724316900,Yandex,314421,9117019 +1724316900,Game Center,3190,7815 +1724316900,Microsoft CryptoAPI,2247,5808 +1724316900,uTorrent,7307,13007 +1724316900,Google Play,36769,28950 +1724316900,Office 365,28916,203369 +1724316900,Sharepoint Online,8942,276919 +1724316900,Microsoft Windows Live Services Authentication,40174,96273 +1724316900,Weborama,5046,8145 +1724316900,Yandex Market,36064,66950 +1724316900,Office Mobile,11116,7870 +1724316900,Telegram,43053,787348 +1724316900,Sberbank of Russia,1490,14567 +1724316900,Google Inbox,4745,13491 +1724316900,DNS over TLS,3760,18924 +1724316900,DNS over HTTPS,122841,332815 +1724316900,HTTPS,294818,497658 +1724316900,__unknown,215,225 +1724316900,Google,65227,45549 +1724316900,SSL,6191,28130 +1724316900,HTTPS,65227,45549 +1724316900,SSL client,71418,73679 +1724316900,Google Hangouts,6191,28130 +1724316900,SSL,3559,10361 +1724316900,HTTPS,13027,150862 +1724316900,__unknown,6801,85531 +1724316900,ICMP,430,0 +1724316900,__unknown,33006,165646 +1724316900,Google APIs,5613,306180 +1724316900,Google,43361,37040 +1724316900,HTTPS,364804,514439 +1724316900,SSL client,84855,368750 +1724316900,ICMP,4324,3420 +1724316900,Telegram,1584,694 +1724316900,Google Sign in,35881,25530 +1724316900,__unknown,2506515,37832459 +1724316900,BitTorrent,10306,9799 +1724316900,DHCPv6,163,0 +1724316900,Google APIs,171267,204492 +1724316900,Google Drive,77225,154731 +1724316900,Google,193565,1955062 +1724316900,Android browser,465,333 +1724316900,Blogger,5657,60077 +1724316900,DNS,14305,0 +1724316900,Gmail,253827,117776 +1724316900,HTTP,55618,1645935 +1724316900,NetBIOS-dgm,243,0 +1724316900,NTP,1440,1440 +1724316900,YouTube,6870,30945 +1724316900,VKontakte,2623,5724 +1724316900,RuTube,16506,16723 +1724316900,Odnoklassniki,2549,7319 +1724316900,HTTPS,1233597,4604221 +1724316900,WhatsApp,15821,123943 +1724316900,SSL client,795666,3404634 +1724316900,CloudFront,2645,10040 +1724316900,Microsoft,52615,1641389 +1724316900,NIH,4989,16654 +1724316900,Yandex,22046,781542 +1724316900,Microsoft CryptoAPI,2538,4213 +1724316900,Google Play,3755,2591 +1724316900,Apple Music,19057,19500 +1724316900,ICMP,5136,1980 +1724316900,Telegram,4706,8400 +1724316900,Thin Manager TFTP,472,286 +1724316900,DNS over HTTPS,72265,176830 +1724316900,Google Meet,4545,12145 +1724316900,IPv6 No Next Header,98,0 +1724316900,__unknown,1896791,33748148 +1724316900,BitTorrent,2563,0 +1724316900,DHCPv6,978,0 +1724316900,Google APIs,83626,89059 +1724316900,Google,80523,215836 +1724316900,Google Translate,3664,7326 +1724316900,QQ,678,343 +1724316900,BitTorrent tracker,331,0 +1724316900,Chrome,565,484 +1724316900,DNS,48042,45676 +1724316900,HTTP,278689,6272507 +1724316900,Internet Explorer,1500,841 +1724316900,Launchpad,3200,2282 +1724316900,Microsoft Update,3384,24363 +1724316900,NTP,4680,4590 +1724316900,SSL,4227,17288 +1724316900,VKontakte,18079,36309 +1724316900,RuTube,6907,12133 +1724316900,Odnoklassniki,2283,6679 +1724316900,Steam,2094,22762 +1724316900,Advanced Packaging Tool,42690,510647 +1724316900,HTTPS,2191675,8689155 +1724316900,WhatsApp,86817,5559516 +1724316900,IBM,597,4101 +1724316900,Apple sites,1575,7068 +1724316900,iCloud,835088,87964 +1724316900,Avast,1858,1564 +1724316900,SSL client,1069151,601029 +1724316900,Amazon Web Services,2466,16881 +1724316900,Ubuntu Update Manager,34602,503981 +1724316900,Microsoft,178436,5659074 +1724316900,Mail.Ru,4960,9923 +1724316900,Yandex,15870,39227 +1724316900,Ubuntu,7013,6681 +1724316900,Microsoft CryptoAPI,5941,29637 +1724316900,Microsoft NCSI,1856,2014 +1724316900,Microsoft WNS,693,8035 +1724316900,Apple Maps,3880,5060 +1724316900,WeChat,2281,1570 +1724316900,Google Hangouts,1465,8072 +1724316900,ICMP,2460,0 +1724316900,Weborama,2721,6624 +1724316900,Telegram,87245,593497 +1724316900,Thin Manager TFTP,588,540 +1724316900,Edge Chromium,4109,14054 +1724316900,Grammarly,1776,7392 +1724316900,DNS over TLS,12111,57898 +1724316900,DNS over HTTPS,36288,146471 +1724316900,Lenovo,1045,7525 +1724317200,VKontakte,634496,127780 +1724317200,HTTPS,634496,127780 +1724317200,SSL client,634496,127780 +1724317200,HTTPS,29952,26475 +1724317200,Google,12998,23779 +1724317200,HTTPS,2002065,35511018 +1724317200,SSL client,12998,23779 +1724317200,HTTPS,259070,4979894 +1724317200,Google,36318,47096 +1724317200,HTTPS,36318,47096 +1724317200,SSL client,36318,47096 +1724317200,HTTPS,8832,66666 +1724317200,SSL client,8832,66666 +1724317200,Yandex,8832,66666 +1724317200,HTTPS,95026,11698 +1724317200,SSL client,95026,11698 +1724317200,Yandex,95026,11698 +1724317200,__unknown,7625,12817 +1724317200,Dropbox,120041,19433 +1724317200,HTTPS,171257,27074 +1724317200,SSL client,171257,27074 +1724317200,Dropbox Download,51216,7641 +1724317200,Google APIs,2027,7230 +1724317200,HTTPS,95167,138316 +1724317200,SSL client,45922,62373 +1724317200,Yandex Market,43895,55143 +1724317200,__unknown,97743,18567 +1724317200,Dropbox,2151,6015 +1724317200,Google APIs,8154,16794 +1724317200,MSN,1145,6319 +1724317200,Gmail,10248,5890 +1724317200,schuelerVZ,3517,4157 +1724317200,Skype,2973,9801 +1724317200,SSL,481422,564583 +1724317200,HTTPS,902765,6976451 +1724317200,APNS,21107,6392 +1724317200,Apple sites,1749,6198 +1724317200,Mozilla,4437,9498 +1724317200,SSL client,457587,862831 +1724317200,Microsoft,24792,46880 +1724317200,Mail.Ru,43010,61876 +1724317200,Yandex,35823,217778 +1724317200,Google Play,25182,8091 +1724317200,Office 365,5792,16982 +1724317200,Yandex Market,243560,410896 +1724317200,Grammarly,4628,14070 +1724317200,Stripe,19319,15194 +1724317200,DNS over HTTPS,9962,28735 +1724317200,__unknown,245775,15182664 +1724317200,Apple Update,16309,550675 +1724317200,Bing,8018,13647 +1724317200,Google APIs,2750,6840 +1724317200,Google,123996,71850 +1724317200,MSN,15007,26449 +1724317200,Dell,1051,4365 +1724317200,HTTP,5396,7944 +1724317200,iTunes,31118,21174 +1724317200,Microsoft Update,1626,1782 +1724317200,SSL,48298,20504 +1724317200,YouTube,3873,21760 +1724317200,VKontakte,20326,69658 +1724317200,Steam,13372,24041 +1724317200,HTTPS,3255037,19549380 +1724317200,APNS,44234,11719 +1724317200,Apple sites,58549,597983 +1724317200,iCloud,53006,104897 +1724317200,Avast,54237,108775 +1724317200,SSL client,2442453,11409327 +1724317200,Amazon Web Services,1429,8618 +1724317200,CloudFront,5467,7780 +1724317200,Microsoft,94045,492808 +1724317200,Mail.Ru,303413,321418 +1724317200,Yandex,1436274,8563652 +1724317200,Microsoft CryptoAPI,2244,4193 +1724317200,Apple Maps,3014,5378 +1724317200,Google Play,32420,32585 +1724317200,Office 365,78457,192281 +1724317200,Sharepoint Online,1046,5945 +1724317200,Microsoft Windows Live Services Authentication,8736,27511 +1724317200,Office Mobile,17393,31554 +1724317200,Mail.ru Attachment,4380,81064 +1724317200,AnyDesk,2266,2678 +1724317200,Edge Chromium,587,2010 +1724317200,Grammarly,12622,10165 +1724317200,DNS over HTTPS,28822,104970 +1724317200,HTTPS,1404,657 +1724317200,__unknown,0,1390 +1724317200,__unknown,1852,720 +1724317200,Google,21970,31830 +1724317200,HTTPS,21970,31830 +1724317200,SSL client,21970,31830 +1724317200,__unknown,463,180 +1724317200,Adobe Software,11817,17849 +1724317200,HTTPS,49466,1186439 +1724317200,SSL client,11817,17849 +1724317200,__unknown,173252,260461 +1724317200,HTTPS,28704,676177 +1724317200,__unknown,132883,1533143 +1724317200,SSL,2645,9190 +1724317200,HTTPS,53752,62036 +1724317200,SSL client,53752,62036 +1724317200,Telegram,53752,62036 +1724317200,__unknown,1990,5473 +1724317200,Google,87835,145956 +1724317200,HTTPS,87835,145956 +1724317200,SSL client,87835,145956 +1724317200,__unknown,28692,34416 +1724317200,HTTPS,53941,166376 +1724317200,SSL client,10434,24191 +1724317200,Nvidia,10434,24191 +1724317200,ICMP,5374,4860 +1724317200,CoAP,1764,1296 +1724317200,__unknown,7260258,26705978 +1724317200,BitTorrent,649,1033 +1724317200,DHCPv6,163,0 +1724317200,Google APIs,77803,91019 +1724317200,Google Drive,20469,44451 +1724317200,Google,87989,196978 +1724317200,Windows Live,5004,26356 +1724317200,BitTorrent tracker,153,537 +1724317200,DNS,20098,0 +1724317200,Gmail,32016,79143 +1724317200,HTTP,4463,4417 +1724317200,Microsoft Update,642,508 +1724317200,NetBIOS-dgm,243,0 +1724317200,NTP,13020,3270 +1724317200,SSL,6865,10352 +1724317200,STUN,1860,3300 +1724317200,Steam,920,924 +1724317200,HTTPS,619458,4755479 +1724317200,Apple sites,1717,6213 +1724317200,Mozilla,1996,4611 +1724317200,SSL client,273395,538311 +1724317200,CloudFront,1189,906 +1724317200,Microsoft,1407,9940 +1724317200,Mail.Ru,4944,15773 +1724317200,Yandex,1669,16474 +1724317200,Microsoft CryptoAPI,2020,1711 +1724317200,Google Play,20870,2972 +1724317200,CloudFlare,2104,4326 +1724317200,Office 365,834,1366 +1724317200,ICMP,11084,1560 +1724317200,Telegram,7350,15344 +1724317200,TikTok,4728,18130 +1724317200,Google Sign in,8154,19457 +1724317200,Thin Manager TFTP,472,286 +1724317200,DNS over HTTPS,11329,29630 +1724317200,_err_4655,1336,1562 +1724317200,IPv6 No Next Header,98,0 +1724317200,CoAP,311,220 +1724317200,__unknown,1304476,3589851 +1724317200,Bing,5443,7595 +1724317200,BITS,66438,8151363 +1724317200,BitTorrent,2914,0 +1724317200,Google APIs,24529,66072 +1724317200,Google,79164,240522 +1724317200,QQ,678,343 +1724317200,Adobe Software,3404,5472 +1724317200,Chrome,2894,2597 +1724317200,DNS,57166,52660 +1724317200,Gmail,6978,4070 +1724317200,Google Analytics,4004,7926 +1724317200,HTTP,1608524,72272878 +1724317200,Internet Explorer,678,343 +1724317200,Launchpad,3200,2282 +1724317200,Microsoft Update,4289,3458 +1724317200,NTP,13200,3450 +1724317200,SSL,10904,18502 +1724317200,VKontakte,8628,22084 +1724317200,RuTube,9331,20049 +1724317200,Odnoklassniki,1969,6264 +1724317200,Advanced Packaging Tool,54903,906946 +1724317200,HTTPS,1558157,5729518 +1724317200,WhatsApp,26715,432703 +1724317200,Apple sites,10956,100458 +1724317200,iCloud,165225,124362 +1724317200,SSL client,463421,1105421 +1724317200,CloudFront,1934,7543 +1724317200,Ubuntu Update Manager,46276,899786 +1724317200,Microsoft,1521046,71336115 +1724317200,NIH,6325,19427 +1724317200,Mail.Ru,2228,10296 +1724317200,Yandex,70710,301788 +1724317200,Ubuntu,7127,6714 +1724317200,Nvidia,20539,43088 +1724317200,Microsoft CryptoAPI,8039,8320 +1724317200,Microsoft NCSI,2422,2493 +1724317200,Microsoft WNS,1338,16010 +1724317200,Apple Maps,5019,16856 +1724317200,Pocket,2703,3166 +1724317200,Google Play,11252,16077 +1724317200,Microsoft Windows Live Services Authentication,1126,22784 +1724317200,ICMP,4703,0 +1724317200,Telegram,3211,7772 +1724317200,Google Sign in,5821,4532 +1724317200,Thin Manager TFTP,588,612 +1724317200,Edge Chromium,2695,7462 +1724317200,Grammarly,2109,15881 +1724317200,DNS over TLS,10306,42680 +1724317200,DNS over HTTPS,49414,163849 +1724317200,Lenovo,1197,7525 +1724317500,Thin Manager TFTP,672,280 +1724317500,HTTPS,11846,17830 +1724317500,SSL client,11846,17830 +1724317500,Yandex,11846,17830 +1724317500,HTTPS,58954,88054 +1724317500,SSL client,58954,88054 +1724317500,Yandex,5780,17436 +1724317500,Telegram,53174,70618 +1724317500,HTTPS,3641,2305 +1724317500,Dropbox,141368,21656 +1724317500,Google APIs,5893,8576 +1724317500,HTTPS,369851,52406 +1724317500,SSL client,369851,52406 +1724317500,Yandex,222590,22174 +1724317500,__unknown,3670,8190 +1724317500,Windows Live,17713,8329 +1724317500,HTTPS,1476292,963836 +1724317500,SSL client,1428908,256124 +1724317500,Google Play,1365753,182200 +1724317500,Rambler,8081,11270 +1724317500,Yandex Market,37361,54325 +1724317500,__unknown,9308,33320 +1724317500,Apple Update,2321,13485 +1724317500,Dropbox,5779,222524 +1724317500,Google APIs,13527,424830 +1724317500,Google Drive,23419,376775 +1724317500,HTTP,633,8035 +1724317500,iTunes,14906,19745 +1724317500,Skype,11649,17680 +1724317500,STUN,64228518,25133049 +1724317500,HTTPS,1208037,3163953 +1724317500,Apple sites,3937,13904 +1724317500,SSL client,797116,1731445 +1724317500,Microsoft,21288,46087 +1724317500,Mail.Ru,26594,38133 +1724317500,Yandex,509692,407494 +1724317500,Microsoft WNS,633,8035 +1724317500,uTorrent,14278,20453 +1724317500,Google Play,3120,1902 +1724317500,Rambler,5085,18636 +1724317500,Office 365,138785,102019 +1724317500,ICMP,9116,0 +1724317500,GISMETEO,2194,9374 +1724317500,Discord,1175,6439 +1724317500,__unknown,5796849,4847824 +1724317500,Apple Update,1909,5753 +1724317500,Bing,1923,9326 +1724317500,Dropbox,3467,2538 +1724317500,Google APIs,17236,47064 +1724317500,Google,106252,2500303 +1724317500,MSN,4213,6282 +1724317500,QQ,618,283 +1724317500,Android browser,2111,535 +1724317500,Chrome,566,206 +1724317500,Gmail,8622,15061 +1724317500,HTTP,9836,139025 +1724317500,Internet Explorer,618,283 +1724317500,iTunes,33404,294638 +1724317500,Launchpad,574,430 +1724317500,Microsoft Update,95624,137522 +1724317500,Skype,3261,9435 +1724317500,YouTube,757,4910 +1724317500,TeamViewer,1417,8778 +1724317500,VKontakte,115324,133810 +1724317500,Advanced Packaging Tool,2702,2594 +1724317500,HTTPS,3129976,24125632 +1724317500,WhatsApp,8016,103258 +1724317500,Apple sites,20613,109546 +1724317500,iCloud,29724,55187 +1724317500,Bing Maps,1982,10313 +1724317500,Avast,1557,3770 +1724317500,SSL client,1518360,5472392 +1724317500,Amazon Web Services,2196,8109 +1724317500,Ubuntu Update Manager,2128,2164 +1724317500,Microsoft,268358,499870 +1724317500,Mail.Ru,250999,371301 +1724317500,Yandex,430052,941241 +1724317500,Apple Maps,1790,10179 +1724317500,Google Play,13434,12750 +1724317500,Office 365,33461,180404 +1724317500,Sharepoint Online,986,7082 +1724317500,Microsoft Windows Live Services Authentication,25732,66488 +1724317500,Office Mobile,45987,28806 +1724317500,Telegram,27887,37500 +1724317500,Edge Chromium,461,186 +1724317500,DNS over HTTPS,24573,96343 +1724317500,Lenovo,731,4256 +1724317500,HTTPS,53657,68272 +1724317500,SSL client,53657,68272 +1724317500,Telegram,53657,68272 +1724317500,__unknown,135811,60014 +1724317500,HTTPS,8454,11543 +1724317500,SSL client,8454,11543 +1724317500,DNS over HTTPS,8454,11543 +1724317500,SSL,1883,15764 +1724317500,SSL client,1883,15764 +1724317500,Google Hangouts,1883,15764 +1724317500,HTTPS,11574,14148 +1724317500,DNS over HTTPS,7621,18362 +1724317500,__unknown,78002,175652 +1724317500,SSL,2679,9117 +1724317500,HTTPS,25063,10858 +1724317500,ICMP,1376,0 +1724317500,__unknown,171691,669746 +1724317500,HTTPS,71292,1071062 +1724317500,Apple sites,8187,178838 +1724317500,SSL client,8187,178838 +1724317500,ICMP,6788,5640 +1724317500,DNS over HTTPS,12185,30530 +1724317500,__unknown,2279383,11003084 +1724317500,BitTorrent,1054,496 +1724317500,Google APIs,31831,184323 +1724317500,Google,55344,482810 +1724317500,Chrome,4033,371838 +1724317500,DNS,25913,0 +1724317500,Gmail,18113,63359 +1724317500,HTTP,34517,1701795 +1724317500,Microsoft Update,26220,1303588 +1724317500,NetBIOS-dgm,250,0 +1724317500,NTP,13560,3810 +1724317500,SSL,13481,5506 +1724317500,STUN,35006,1254 +1724317500,YouTube,18823,36170 +1724317500,VKontakte,36669,808718 +1724317500,HTTPS,717678,5635027 +1724317500,APNS,13481,5506 +1724317500,SSL client,296319,3859711 +1724317500,Microsoft,2234,6545 +1724317500,Microsoft CryptoAPI,2743,2348 +1724317500,Google Play,61486,29186 +1724317500,CloudFlare,2626,12640 +1724317500,ICMP,35736,2328 +1724317500,Telegram,4161,8082 +1724317500,TikTok,4391,32361 +1724317500,Sberbank of Russia,51740,2561673 +1724317500,Google Inbox,3614,8258 +1724317500,Thin Manager TFTP,196,180 +1724317500,DNS over HTTPS,33561,85292 +1724317500,IPv6 No Next Header,98,0 +1724317500,__unknown,1945203,17172502 +1724317500,Apple Update,3761,9624 +1724317500,BITS,1650,14509 +1724317500,BitTorrent,558,0 +1724317500,DHCPv6,1141,0 +1724317500,Google APIs,32381,62599 +1724317500,Google,109035,449684 +1724317500,QQ,1485,1285 +1724317500,Chrome,1197,1027 +1724317500,DNS,47678,43790 +1724317500,Gmail,4375,12170 +1724317500,HTTP,332703,10688383 +1724317500,Internet Explorer,678,343 +1724317500,iTunes,2934,16200 +1724317500,Launchpad,3496,2414 +1724317500,Microsoft Update,2841,10669 +1724317500,NTP,2610,2610 +1724317500,SSL,2975,9115 +1724317500,YouTube,4330,10720 +1724317500,VKontakte,30908,65621 +1724317500,Odnoklassniki,2095,6754 +1724317500,Advanced Packaging Tool,42258,506579 +1724317500,IMAPS,4375,12170 +1724317500,HTTPS,1146906,8975760 +1724317500,WhatsApp,62411,1927468 +1724317500,Apple sites,10603,52211 +1724317500,iCloud,1057,6552 +1724317500,Mozilla,3518,9112 +1724317500,Avast,1660,1564 +1724317500,SSL client,399483,4028844 +1724317500,Ubuntu Update Manager,32796,498793 +1724317500,Microsoft,131688,9639586 +1724317500,NIH,10653,90760 +1724317500,Mail.Ru,5337,9966 +1724317500,Yandex,84859,2932531 +1724317500,Ubuntu,8660,8192 +1724317500,Microsoft CryptoAPI,8954,20849 +1724317500,Microsoft NCSI,411,793 +1724317500,Apple Maps,2249,4307 +1724317500,Google Play,42807,28525 +1724317500,Office 365,3078,16663 +1724317500,ICMP,8766,0 +1724317500,Weborama,5643,13717 +1724317500,Clip2Net,1202,3640 +1724317500,Telegram,12101,8179 +1724317500,TikTok,11143,152181 +1724317500,Google Sign in,11910,8783 +1724317500,Thin Manager TFTP,1452,1186 +1724317500,Edge Chromium,3689,9553 +1724317500,DNS over TLS,16076,75776 +1724317500,DNS over HTTPS,42101,163398 +1724317500,IPv6 No Next Header,98,0 +1724317800,ICMP,24940,0 +1724317800,Google,711381,563410 +1724317800,HTTPS,711381,563410 +1724317800,SSL client,711381,563410 +1724317800,DNS over HTTPS,248419,553220 +1724317800,HTTPS,32081,12963 +1724317800,HTTPS,58029,65403 +1724317800,SSL client,54469,61545 +1724317800,Telegram,54469,61545 +1724317800,HTTPS,151081,376708 +1724317800,__unknown,45313,45170 +1724317800,HTTPS,207987,1951073 +1724317800,SSL client,50611,216668 +1724317800,Yandex,50611,216668 +1724317800,Telegram,5806,10164 +1724317800,__unknown,116796,1183489 +1724317800,Dropbox,1663,1397 +1724317800,Google APIs,16022,103301 +1724317800,Google,5715,20845 +1724317800,MSN,1924,7786 +1724317800,HTTP,774,810 +1724317800,HTTPS,275112,1176027 +1724317800,SSL client,142128,572365 +1724317800,Amazon Web Services,2186,8020 +1724317800,CloudFront,1542,1946 +1724317800,Microsoft,9828,60790 +1724317800,Mail.Ru,30874,36188 +1724317800,Yandex,25816,26809 +1724317800,Google Play,30410,5414 +1724317800,Office 365,3168,4875 +1724317800,Sharepoint Online,4400,139340 +1724317800,Stripe,8580,155654 +1724317800,DNS over HTTPS,61148,160997 +1724317800,__unknown,2635816,3412787 +1724317800,Bing,4962,14948 +1724317800,Google APIs,16102,15734 +1724317800,Google,357095,400955 +1724317800,MSN,7030,17798 +1724317800,Windows Live,4897,7991 +1724317800,HTTP,18271,14888 +1724317800,SSL,101706,58972 +1724317800,Advanced Packaging Tool,3033,2883 +1724317800,HTTPS,2996488,32753120 +1724317800,WhatsApp,2005,7865 +1724317800,APNS,12061,5674 +1724317800,Apple sites,182152,853067 +1724317800,iCloud,149960,328952 +1724317800,Avast,6984,25664 +1724317800,SSL client,1845810,3605811 +1724317800,Ad Nexus,2543,6085 +1724317800,Amazon Web Services,2054,8052 +1724317800,CloudFront,3772,973 +1724317800,Ubuntu Update Manager,2506,2353 +1724317800,Microsoft,256307,434705 +1724317800,Mail.Ru,205376,250462 +1724317800,Yandex,290963,717052 +1724317800,Ubuntu,527,530 +1724317800,Apple Maps,644865,20848564 +1724317800,Google Play,26044,33673 +1724317800,CloudFlare,935,3485 +1724317800,Apple Music,3538,11102 +1724317800,Office 365,138063,226010 +1724317800,Microsoft Windows Live Services Authentication,64939,172591 +1724317800,smpnameres,41123,19606 +1724317800,Office Mobile,99785,61913 +1724317800,Telegram,4973,15763 +1724317800,Edge Chromium,1114,4015 +1724317800,Grammarly,12275,14251 +1724317800,DNS over HTTPS,45353,161236 +1724317800,Google,800180,541485 +1724317800,HTTPS,800180,541485 +1724317800,SSL client,800180,541485 +1724317800,__unknown,508306,2481337 +1724317800,HTTPS,279352,645143 +1724317800,__unknown,62627,1387766 +1724317800,SSL,2972,9190 +1724317800,HTTPS,8657,33342 +1724317800,Spotify,2147,25666 +1724317800,SSL client,8657,33342 +1724317800,Siri,6510,7676 +1724317800,__unknown,188,4260 +1724317800,__unknown,117804,85302 +1724317800,HTTPS,31794,27857 +1724317800,__unknown,157842,1380502 +1724317800,VKontakte,19103,25369 +1724317800,HTTPS,22470,30769 +1724317800,SSL client,19103,25369 +1724317800,__unknown,92225,38758 +1724317800,Google,18417,26733 +1724317800,Odnoklassniki,4043,9876 +1724317800,HTTPS,115820,482452 +1724317800,WhatsApp,8768,10011 +1724317800,iCloud,4238,12060 +1724317800,SSL client,38665,66924 +1724317800,Microsoft,3199,8244 +1724317800,ICMP,2100,2100 +1724317800,DNS over HTTPS,0,1390 +1724317800,CoAP,1960,1368 +1724317800,__unknown,2978907,7286409 +1724317800,BitTorrent,649,694 +1724317800,Google APIs,39723,429440 +1724317800,Google Drive,47082,37995 +1724317800,Google,103704,360233 +1724317800,Google Translate,140771,344819 +1724317800,BitTorrent tracker,153,198 +1724317800,DNS,19456,0 +1724317800,Gmail,6260,9676 +1724317800,Google Analytics,5020,8299 +1724317800,HTTP,2954,3766 +1724317800,LiveJournal,2757,7667 +1724317800,Microsoft Update,642,501 +1724317800,NTP,37170,7920 +1724317800,SSL,7348,26527 +1724317800,STUN,2008,3520 +1724317800,VKontakte,95269,1462260 +1724317800,HTTPS,714513,3742753 +1724317800,WhatsApp,17768,359429 +1724317800,iCloud,51806,15010 +1724317800,Mozilla,1547,4605 +1724317800,SSL client,548016,2787598 +1724317800,Microsoft,1841,14855 +1724317800,Yandex,5696,28077 +1724317800,Microsoft CryptoAPI,2954,3766 +1724317800,Google Play,29652,20898 +1724317800,Rambler,2308,7272 +1724317800,Microsoft Windows Live Services Authentication,478,4306 +1724317800,Google Hangouts,1843,8030 +1724317800,ICMP,13836,3060 +1724317800,Telegram,10424,61022 +1724317800,Google Sign in,10266,16346 +1724317800,Thin Manager TFTP,392,360 +1724317800,Grammarly,1993,7810 +1724317800,DNS over HTTPS,34186,96514 +1724317800,__unknown,1331963,14912133 +1724317800,BitTorrent,744,0 +1724317800,DHCPv6,978,0 +1724317800,Google APIs,5314,20810 +1724317800,Google,58696,182874 +1724317800,QQ,678,343 +1724317800,Adobe Software,228911,8963747 +1724317800,Apple Store,853,4025 +1724317800,Chrome,42675,19103 +1724317800,DNS,60282,48072 +1724317800,Firefox,2932,4092 +1724317800,Gmail,29669,42639 +1724317800,HTTP,415201,8694572 +1724317800,Internet Explorer,7043,2293 +1724317800,iTunes,6144,15245 +1724317800,Launchpad,3200,2124 +1724317800,Microsoft Update,144488,4315607 +1724317800,NetBIOS-dgm,243,0 +1724317800,NTP,13740,3990 +1724317800,SSL,8041,25433 +1724317800,STUN,148,220 +1724317800,VKontakte,1335,4296 +1724317800,Odnoklassniki,10411,29929 +1724317800,Steam,2054,43952 +1724317800,Advanced Packaging Tool,51567,807175 +1724317800,Windows Update,88864,2022301 +1724317800,IMAPS,4104,8940 +1724317800,HTTPS,17980643,16278002 +1724317800,WhatsApp,1779,1009 +1724317800,Spotify,1838,4674 +1724317800,Apple sites,22345,77666 +1724317800,iCloud,28980,58196 +1724317800,Mozilla,24346,13030 +1724317800,SSL client,543461,12563372 +1724317800,CloudFront,2000,7543 +1724317800,Ubuntu Update Manager,46019,802931 +1724317800,Microsoft,28781,3319757 +1724317800,VeriSign,566,2141 +1724317800,Mail.Ru,1433,5101 +1724317800,Yandex,90911,3060644 +1724317800,Ubuntu,2773,2581 +1724317800,Microsoft CryptoAPI,28703,98788 +1724317800,Microsoft NCSI,2278,2501 +1724317800,Microsoft WNS,771,8037 +1724317800,Apple Maps,23276,714377 +1724317800,Google Play,5008,8396 +1724317800,Adobe Analytics,7044,10054 +1724317800,Google Hangouts,2440,7136 +1724317800,ICMP,4798,420 +1724317800,Weborama,4664,11139 +1724317800,Telegram,11080,63912 +1724317800,Google Sign in,9451,10700 +1724317800,Thin Manager TFTP,1452,1258 +1724317800,Edge Chromium,7870,24138 +1724317800,Adobe Fonts,1390,7376 +1724317800,DNS over TLS,6936,28618 +1724317800,DNS over HTTPS,56153,184875 +1724317800,DeepL Translator,2245,7774 +1724318100,Thin Manager TFTP,108,108 +1724318100,__unknown,1484,2060 +1724318100,ICMP,21648,0 +1724318100,HTTPS,205683,1336966 +1724318100,HTTPS,7440444,551173 +1724318100,SSL client,7440444,551173 +1724318100,Yandex,7440444,551173 +1724318100,HTTPS,20209,21870 +1724318100,SSL client,17034,17975 +1724318100,Mail.Ru,6147,8099 +1724318100,Yandex,10887,9876 +1724318100,Dropbox,120990,18487 +1724318100,HTTPS,161150,24135 +1724318100,SSL client,161150,24135 +1724318100,Dropbox Download,40160,5648 +1724318100,__unknown,5725,64707 +1724318100,Google,40031,43043 +1724318100,HTTPS,311356,233943 +1724318100,SSL client,286978,208841 +1724318100,Google Play,45763,34770 +1724318100,Office 365,198644,126357 +1724318100,Xiaomi,2540,4671 +1724318100,__unknown,21457,25632 +1724318100,Bing,214899,2068063 +1724318100,BITS,1175,792 +1724318100,Google,248396,134575 +1724318100,McAfee,9998,410311 +1724318100,HTTP,1175,792 +1724318100,Microsoft Update,1735,5433 +1724318100,SSL,909405,9332627 +1724318100,VKontakte,1670,4758 +1724318100,HTTPS,893626,5433234 +1724318100,Apple sites,6356,253673 +1724318100,SSL client,652910,3234312 +1724318100,Pubmatic,2554,6106 +1724318100,Microsoft,78434,54865 +1724318100,Mail.Ru,15091,19669 +1724318100,Yandex,24741,111759 +1724318100,Apple Maps,2140,4762 +1724318100,Rambler,3030,6327 +1724318100,Apple Music,9891,13173 +1724318100,Office 365,35150,136726 +1724318100,smpnameres,138922,130415 +1724318100,GISMETEO,2140,9666 +1724318100,DNS over HTTPS,2951,9298 +1724318100,__unknown,31303398,5361362 +1724318100,Apple Update,1863,4344 +1724318100,Bing,2106,9390 +1724318100,Google APIs,100232,44508 +1724318100,Google,3520989,1906406 +1724318100,MSN,5510,9556 +1724318100,HTTP,7722,7627 +1724318100,iTunes,3838,17977 +1724318100,Microsoft Update,127910,283244 +1724318100,Skype,9056,24158 +1724318100,SSL,465065,5219758 +1724318100,VKontakte,10765,19352 +1724318100,Windows Update,492,1126 +1724318100,HTTPS,8173423,175353525 +1724318100,WhatsApp,28606,986927 +1724318100,APNS,34253,11208 +1724318100,Apple sites,21589,56538 +1724318100,iCloud,83851,1799430 +1724318100,Mozilla,2421,4799 +1724318100,SSL client,6391225,129855836 +1724318100,Microsoft,94714,181152 +1724318100,Mail.Ru,270539,377040 +1724318100,Yandex,1852512,123847293 +1724318100,Aliexpress,30104,750606 +1724318100,GitHub,1526,5977 +1724318100,Microsoft CryptoAPI,4800,4014 +1724318100,Apple Maps,10444,31567 +1724318100,Alibaba,2517,14601 +1724318100,Google Play,20184,19686 +1724318100,Exchange Online,33084,53863 +1724318100,Office 365,56771,227538 +1724318100,Microsoft Windows Live Services Authentication,49467,126531 +1724318100,smpnameres,122523,1828450 +1724318100,Office Mobile,31658,19810 +1724318100,Telegram,5554,10619 +1724318100,Xiaomi,3706,19639 +1724318100,Grammarly,23588,21857 +1724318100,DNS over HTTPS,9659,42552 +1724318100,__unknown,941371,226069 +1724318100,SSL,12723,34178 +1724318100,TeamViewer,39471,51837 +1724318100,SSL client,12723,34178 +1724318100,Google Hangouts,12723,34178 +1724318100,ICMP,1204,0 +1724318100,DNS over HTTPS,11555,26470 +1724318100,__unknown,178271,99615 +1724318100,HTTP,1054,555 +1724318100,HTTPS,10634,15914 +1724318100,Apple Maps,2792,7009 +1724318100,__unknown,110318,441869 +1724318100,Google,16858,17866 +1724318100,HTTP,9934,412120 +1724318100,Advanced Packaging Tool,8246,401244 +1724318100,HTTPS,86041,703572 +1724318100,WhatsApp,1908,7920 +1724318100,SSL client,19789,24372 +1724318100,ICMP,64918,0 +1724318100,Weborama,2931,6506 +1724318100,DNS over HTTPS,22986,71429 +1724318100,__unknown,2721952,61005216 +1724318100,BitTorrent,310,496 +1724318100,DHCPv6,163,0 +1724318100,Google APIs,110056,147120 +1724318100,Google Drive,4167,12069 +1724318100,Google,160908,1187012 +1724318100,Google Translate,4399,8182 +1724318100,Kaspersky,608,607 +1724318100,Chrome,1106,906 +1724318100,DNS,16213,0 +1724318100,Gmail,51144,321578 +1724318100,HTTP,10233,12032 +1724318100,Microsoft Update,2608,2134 +1724318100,NTP,450,450 +1724318100,SSL,5154,17806 +1724318100,STUN,2008,3520 +1724318100,HTTPS,541796,3658204 +1724318100,Spotify,2213,8240 +1724318100,SSL client,376632,1729618 +1724318100,Samsung,1158,2979 +1724318100,CloudFront,2119,7928 +1724318100,Mail.Ru,1337,5155 +1724318100,Yandex,1933,16285 +1724318100,Microsoft CryptoAPI,6281,5546 +1724318100,Google Play,36389,7954 +1724318100,Google Hangouts,1967,8095 +1724318100,ICMP,29173,0 +1724318100,Telegram,15547,31935 +1724318100,Thin Manager TFTP,196,180 +1724318100,DNS over HTTPS,24001,67756 +1724318100,CoAP,980,720 +1724318100,__unknown,1949261,14436295 +1724318100,BITS,91834,5931299 +1724318100,Google APIs,133520,102922 +1724318100,Google,68592,205566 +1724318100,Kaspersky,608,607 +1724318100,MSN,577,501 +1724318100,QQ,678,343 +1724318100,Chrome,2264,2172 +1724318100,DNS,57039,51829 +1724318100,Firefox,822,1130 +1724318100,HTTP,309845,6514245 +1724318100,Internet Explorer,678,343 +1724318100,iTunes,4145,30630 +1724318100,Launchpad,3200,2348 +1724318100,Microsoft Update,5320,4268 +1724318100,NetBIOS-dgm,250,0 +1724318100,NTP,24600,5100 +1724318100,SSL,8188,14437 +1724318100,STUN,1866,1952 +1724318100,YouTube,3392,12351 +1724318100,VKontakte,9633,14926 +1724318100,Odnoklassniki,1848,1187 +1724318100,Advanced Packaging Tool,39091,412993 +1724318100,HTTPS,768526,2519061 +1724318100,WhatsApp,9234,8355 +1724318100,IBM,597,4101 +1724318100,Apple sites,7537,83643 +1724318100,iCloud,24321,155474 +1724318100,Mozilla,10078,11021 +1724318100,Avast,1656,1560 +1724318100,SSL client,335590,986126 +1724318100,Amazon Web Services,2996,204165 +1724318100,Ubuntu Update Manager,30560,405839 +1724318100,Microsoft,84206,5492954 +1724318100,Mail.Ru,8309,13261 +1724318100,Siri,4301,6529 +1724318100,Yandex,19179,51824 +1724318100,Ubuntu,6259,5790 +1724318100,Microsoft CryptoAPI,11585,9894 +1724318100,Microsoft WNS,1270,8540 +1724318100,Apple Maps,5981,4564 +1724318100,Google Play,7800,17031 +1724318100,Google Hangouts,797,7091 +1724318100,ICMP,6003,0 +1724318100,Telegram,16878,38115 +1724318100,Google Sign in,6085,4430 +1724318100,Thin Manager TFTP,392,360 +1724318100,Edge Chromium,4109,14115 +1724318100,DNS over TLS,9909,42927 +1724318100,DNS over HTTPS,30427,109674 +1724318400,HTTPS,41938,59021 +1724318400,HTTPS,45001,63886 +1724318400,SSL client,45001,63886 +1724318400,Telegram,45001,63886 +1724318400,HTTPS,3236,10029 +1724318400,SSL client,3236,10029 +1724318400,Yandex,3236,10029 +1724318400,HTTPS,79285,363947 +1724318400,SSL client,73969,355736 +1724318400,Mail.Ru,68946,298874 +1724318400,Yandex,5023,56862 +1724318400,__unknown,16683,12603 +1724318400,Dropbox,121296,21362 +1724318400,SSL,12679,7110 +1724318400,HTTPS,199460,220912 +1724318400,APNS,12679,7110 +1724318400,SSL client,143058,146227 +1724318400,Microsoft,9083,117755 +1724318400,Google APIs,3878,2450 +1724318400,HTTPS,120075,133402 +1724318400,SSL client,95894,100233 +1724318400,Mail.Ru,80609,81811 +1724318400,Yandex,9961,9976 +1724318400,Google Play,1446,5996 +1724318400,__unknown,113860,131396 +1724318400,Google APIs,2742,9230 +1724318400,Google,79683,51901 +1724318400,Google Analytics,16065,11453 +1724318400,HTTP,2742,9230 +1724318400,YouTube,7316,10372 +1724318400,TeamViewer,1518,8847 +1724318400,HTTPS,404943,1045260 +1724318400,Apple sites,1978,8146 +1724318400,iCloud,52970,106357 +1724318400,Mozilla,2365,4857 +1724318400,SSL client,272617,636837 +1724318400,Microsoft,10363,21953 +1724318400,Mail.Ru,19906,42577 +1724318400,Yandex,11736,18593 +1724318400,Rambler,4318,7583 +1724318400,Office 365,62143,335653 +1724318400,Instructure,2256,8545 +1724318400,DNS over HTTPS,15421,36459 +1724318400,__unknown,320675,234217 +1724318400,Apple Update,121921,5459732 +1724318400,Bing,7907,10445 +1724318400,Google APIs,94190,27839 +1724318400,Google,61387,101072 +1724318400,MSN,8047,15673 +1724318400,Apple Mail,9061,186826 +1724318400,Gmail,2221,11449 +1724318400,HTTP,1842238,46599246 +1724318400,iTunes,3244,12498 +1724318400,Microsoft Update,1302,768 +1724318400,Skype,7380,14440 +1724318400,VKontakte,6818,15547 +1724318400,Steam,21865,33546 +1724318400,Advanced Packaging Tool,5225,128570 +1724318400,IMAPS,9061,186826 +1724318400,HTTPS,4560799,81707410 +1724318400,Apple sites,187387,5610986 +1724318400,iCloud,63114,133482 +1724318400,Mozilla,2573,3870 +1724318400,Opera,3172,8230 +1724318400,SSL client,2620392,40778533 +1724318400,Ubuntu Update Manager,4656,128004 +1724318400,Microsoft,185436,440545 +1724318400,Mail.Ru,246823,338250 +1724318400,Yandex,603021,23780592 +1724318400,Aliexpress,14745,15509 +1724318400,GitHub,2556,6389 +1724318400,Ubuntu,1225,1161 +1724318400,Nvidia,782317,4275764 +1724318400,Google Update,4341,10310 +1724318400,Microsoft CryptoAPI,1302,768 +1724318400,Microsoft WNS,513,8036 +1724318400,uTorrent,10872,19370 +1724318400,Apple Maps,6663,19141 +1724318400,Google Play,43363,4647 +1724318400,Rambler,1445,5507 +1724318400,Office 365,20400,35605 +1724318400,Microsoft Windows Live Services Authentication,42701,122673 +1724318400,Weborama,18244,23977 +1724318400,Office Mobile,28504,18082 +1724318400,Telegram,2814,1028 +1724318400,Google Inbox,3446,7220 +1724318400,Grammarly,9104,7358 +1724318400,Stripe,3931,5267 +1724318400,Microsoft Teams,2856,29342 +1724318400,DNS over HTTPS,19278,63500 +1724318400,Lenovo,4026,13067 +1724318400,HTTPS,43997,63455 +1724318400,SSL client,43997,63455 +1724318400,Telegram,43997,63455 +1724318400,__unknown,3451,13559 +1724318400,__unknown,3084,1822 +1724318400,Google,101310,64514 +1724318400,HTTPS,118789,185857 +1724318400,SSL client,112844,172441 +1724318400,Discord,11534,107927 +1724318400,__unknown,83162,4747 +1724318400,HTTPS,359224,503232 +1724318400,ICMP,1558,0 +1724318400,__unknown,152007,46094 +1724318400,VKontakte,59680,68321 +1724318400,HTTPS,59680,68321 +1724318400,SSL client,59680,68321 +1724318400,__unknown,84203,1616448 +1724318400,Google,52418,74076 +1724318400,YouTube,218843,575036 +1724318400,HTTPS,295506,1239871 +1724318400,SSL client,271261,649112 +1724318400,ICMP,35160,0 +1724318400,DNS over HTTPS,5076,12106 +1724318400,__unknown,1730489,11655622 +1724318400,BitTorrent,463,496 +1724318400,DHCPv6,978,0 +1724318400,Google APIs,32325,136893 +1724318400,Google Drive,14738,264321 +1724318400,Google,157702,457220 +1724318400,Kaspersky,1141,1210 +1724318400,Android browser,459,333 +1724318400,BitTorrent tracker,153,0 +1724318400,DNS,19246,0 +1724318400,Gmail,13911,60176 +1724318400,Google Analytics,7075,9463 +1724318400,HTTP,10985,17328 +1724318400,Microsoft Update,1372,1443 +1724318400,NTP,1350,1350 +1724318400,STUN,148,220 +1724318400,YouTube,3985,6814 +1724318400,VKontakte,11531,33168 +1724318400,HTTPS,480286,2754406 +1724318400,WhatsApp,16957,302742 +1724318400,iCloud,5167,29349 +1724318400,Mozilla,5373,3451 +1724318400,SSL client,266672,1036098 +1724318400,GoDaddy,582,2992 +1724318400,Yandex,4622,20071 +1724318400,Microsoft CryptoAPI,6023,11980 +1724318400,Apple Maps,12571,436971 +1724318400,ICMP,123047,240 +1724318400,Telegram,3965,8016 diff --git a/logs/supervisor.log b/logs/supervisor.log new file mode 100644 index 0000000..f0b402b --- /dev/null +++ b/logs/supervisor.log @@ -0,0 +1,4442 @@ +-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 229-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 228-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxR-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxR-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxR-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_full + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4238 0 4238 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4238 + text rules: 4238 + option chains: 4238 + chain headers: 318 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 147 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 147 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxR-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 225-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 228-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 225-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 225-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 226-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227-------------------------------------------------- +o")~ Snort++ 3.3.2.0 +-------------------------------------------------- +Loading /usr/local/etc/snort/snort.lua: +Loading snort_defaults.lua: +Finished snort_defaults.lua: + ssh + host_cache + pop + so_proxy + stream_tcp + mms + smtp + gtp_inspect + packets + dce_http_proxy + alert_json + alert_fast + alert_csv + ips + stream_icmp + hosts + normalizer + binder + wizard + appid + js_norm + file_id + http2_inspect + http_inspect + stream_udp + ftp_data + ftp_server + search_engine + port_scan + dce_http_server + dce_tcp + dce_smb + iec104 + cip + telnet + ssl + sip + rpc_decode + netflow + modbus + host_tracker + stream_user + stream_ip + trace + back_orifice + classifications + dnp3 + active + process + ftp_client + daq + decode + alerts + stream + references + arp_spoof + output + network + dns + dce_udp + imap + file_policy + s7commplus + stream_file +Finished /usr/local/etc/snort/snort.lua: +Loading file_id.rules_file: +Loading file_magic.rules: +Finished file_magic.rules: +Finished file_id.rules_file: +Loading ips.rules: +Loading ../rules/snort3-community-rules/snort3-community.rules: +Finished ../rules/snort3-community-rules/snort3-community.rules: +Loading ../rules/local.rules: +Finished ../rules/local.rules: +Finished ips.rules: +-------------------------------------------------- +ips policies rule stats + id loaded shared enabled file + 0 4239 0 4239 /usr/local/etc/snort/snort.lua +-------------------------------------------------- +rule counts + total rules loaded: 4239 + text rules: 4239 + option chains: 4239 + chain headers: 325 + flowbits: 48 + flowbits not checked: 23 +-------------------------------------------------- +port rule counts + tcp udp icmp ip + any 472 58 148 22 + src 170 15 0 0 + dst 775 150 0 0 + both 6 11 0 0 + total 1423 234 148 22 +-------------------------------------------------- +service rule counts to-srv to-cli + dcerpc: 72 20 + dhcp: 2 2 + dns: 28 7 + file_id: 219 219 + ftp: 90 4 + ftp-data: 1 96 + http: 2084 255 + http2: 2084 255 + http3: 2084 255 + imap: 35 117 + irc: 5 2 + kerberos: 3 0 + ldap: 0 1 + mysql: 3 0 + netbios-dgm: 1 1 + netbios-ns: 4 3 + netbios-ssn: 69 17 + nntp: 2 0 + pop3: 23 117 + rdp: 5 0 + sip: 5 5 + smtp: 129 2 + snmp: 18 7 + ssdp: 3 0 + ssl: 20 42 + sunrpc: 68 4 + telnet: 12 6 + tftp: 1 0 + wins: 1 0 + total: 7071 1437 +-------------------------------------------------- +fast pattern groups + src: 114 + dst: 312 + any: 8 + to_server: 69 + to_client: 49 +-------------------------------------------------- +search engine (ac_bnfa) + instances: 335 + patterns: 10790 + pattern chars: 175259 + num states: 123288 + num match states: 10510 + memory scale: MB + total memory: 3.68362 + pattern memory: 0.578426 + match list memory: 1.33591 + transition memory: 1.72839 + fast pattern only: 7096 +appid: MaxRss diff: 227 \ No newline at end of file diff --git a/entrypoint.sh b/scripts/entrypoint.sh similarity index 83% rename from entrypoint.sh rename to scripts/entrypoint.sh index d8da168..a4f91f8 100644 --- a/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -4,5 +4,6 @@ ip route del default ip add sh $interface ip route add default dev $interface ip link set dev $interface promisc on +ethtool -K $interface gro off lro off /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf \ No newline at end of file diff --git a/healthcheck.sh b/scripts/healthcheck.sh similarity index 100% rename from healthcheck.sh rename to scripts/healthcheck.sh diff --git a/snort.rules b/snort.rules deleted file mode 100644 index 1fb71cd..0000000 --- a/snort.rules +++ /dev/null @@ -1 +0,0 @@ -alert icmp any any -> $HOME_NET any (msg:"ICMP connection test"; sid:1000001; rev:1;) \ No newline at end of file diff --git a/appid-rules.tar.gz b/tars/appid-rules.tar.gz similarity index 100% rename from appid-rules.tar.gz rename to tars/appid-rules.tar.gz diff --git a/emerging-rules.tar.gz b/tars/emerging-rules.tar.gz similarity index 100% rename from emerging-rules.tar.gz rename to tars/emerging-rules.tar.gz diff --git a/feodotracker.tar.gz b/tars/feodotracker.tar.gz similarity index 100% rename from feodotracker.tar.gz rename to tars/feodotracker.tar.gz diff --git a/snort-openappid.tar.gz b/tars/snort-openappid.tar.gz similarity index 100% rename from snort-openappid.tar.gz rename to tars/snort-openappid.tar.gz diff --git a/snort3-community-rules.tar.gz b/tars/snort3-community-rules.tar.gz similarity index 100% rename from snort3-community-rules.tar.gz rename to tars/snort3-community-rules.tar.gz